클라우드플레어 이미지 추적기 워커
A stealthy image redirector + telemetry logger using Cloudflare Workers.
Cloudflare Workers를 이용한 이미지 리디렉션 및 정보 로깅 추적기입니다.
alpha, beta, gamma)ctx.waitUntil)Clone this repo
이 저장소를 클론하세요
Deploy via Cloudflare Dashboard
https://dash.cloudflare.com/ 에서 배포하세요
Bind route to *.workers.dev
*.workers.dev에 라우팅 설정
Update values in src/worker.js:
아래 값을 수정하세요:
const WEBHOOKS = {
alpha: "https://discord.com/api/webhooks/your_alpha_webhook",
beta: "https://discord.com/api/webhooks/your_beta_webhook",
gamma: "https://discord.com/api/webhooks/your_gamma_webhook",
};
const IMAGE_URLS = {
alpha: "https://example.com/image-a.jpg",
beta: "https://example.com/image-b.gif",
gamma: "https://example.com/image-c.png",
};
// Replace with your own Geoapify key
const GEOAPIFY_KEY = "your_geoapify_api_key";
Basic usage
기본 사용:
https://your-worker.workers.dev/alpha
https://your-worker.workers.dev/beta
https://your-worker.workers.dev/gamma
Optional query params / 선택 쿼리 파라미터:
?z=NoteLabel → Shows note in Discord log?r=https://example.com/img.jpg → Override image URL?dl=1 → Force image downloadDiscord webhook will show:
디스코드에서는 다음과 같이 표시됩니다:
This project is licensed under the GNU General Public License v3.0 (GPLv3).
이 프로젝트는 GPLv3 라이선스 하에 배포됩니다.
See LICENSE for more info.