-
Notifications
You must be signed in to change notification settings - Fork 0
/
xd.js
70 lines (57 loc) · 2.47 KB
/
xd.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
const fs = require('fs');
const { Worker, isMainThread, parentPort, workerData } = require('worker_threads');
const { request } = require('undici');
const HttpsProxyAgent = require('https-proxy-agent');
// Proxy listesi dosyasının yolu
const proxyFile = 'proxylist.txt';
// Eğer ana thread'deysek, işçileri (workers) başlat
if (isMainThread) {
console.log('Ana thread başlatıldı, proxy dosyası okunuyor...');
fs.readFile(proxyFile, 'utf8', (err, data) => {
if (err) {
console.error('Proxy dosyası okunamadı:', err);
return;
}
// Proxy listesini satırlara ayır
const proxies = data.split('\n').map(line => line.trim()).filter(Boolean);
if (proxies.length === 0) {
console.error('Proxy listesi boş veya geçersiz.');
return;
}
console.log(`${proxies.length} proxy bulundu. İşçiler başlatılıyor...`);
// 1000 işçi başlatmak için
for (let i = 0; i < 1000; i++) {
const proxy = proxies[i % proxies.length]; // Proxy rotasyonu
console.log(`Proxy ${proxy} için işçi başlatılıyor (İşçi #${i + 1})...`);
const worker = new Worker(__filename, { workerData: proxy }); // Her proxy için işçi başlat
worker.on('message', msg => console.log(msg)); // İşçi başarı mesajı
worker.on('error', err => console.error(`İşçi hatası (Proxy: ${proxy}):`, err)); // İşçi hatası
worker.on('exit', code => {
if (code !== 0) {
console.error(`İşçi beklenmeyen bir şekilde sonlandı (Exit code: ${code}, Proxy: ${proxy})`);
}
});
}
});
} else {
// İşçi thread'inde isek proxy ile HTTP isteği gönder
const proxy = workerData;
const agent = new HttpsProxyAgent(`http://${proxy}`);
console.log(`İşçi ${proxy} için HTTP isteği gönderiliyor...`);
// İstek gönderen fonksiyon
const sendRequest = async () => {
try {
const { statusCode } = await request('https://phiso.online', {
dispatcher: agent, // undici ile proxy kullanımı
});
if (statusCode === 200) {
parentPort.postMessage(`Proxy ${proxy} ile başarılı bağlantı! Durum kodu: ${statusCode}`);
} else {
parentPort.postMessage(`Proxy ${proxy} bağlandı fakat durum kodu: ${statusCode}`);
}
} catch (error) {
parentPort.postMessage(`Proxy ${proxy} ile bağlantı kurulamadı: ${error.message}`);
}
};
sendRequest();
}