mirror of
https://github.com/pezkuwichain/phishing.git
synced 2026-05-09 18:47:55 +00:00
Harden addrcheck
This commit is contained in:
@@ -35,10 +35,13 @@ async function checkGetWallet (ours: Record<string, string[]>, site: string): Pr
|
||||
|
||||
for (let i = 0; i < 25; i++) {
|
||||
const result = await (await fetch(`https://${site}/get_wallet.php`)).json() as Record<string, string>;
|
||||
const wallet = result.wallet.replace('\r', '');
|
||||
|
||||
if (!found.includes(wallet)) {
|
||||
found.push(wallet);
|
||||
if (result && result.wallet) {
|
||||
const wallet = result.wallet.replace('\r', '');
|
||||
|
||||
if (!found.includes(wallet)) {
|
||||
found.push(wallet);
|
||||
}
|
||||
}
|
||||
|
||||
await delayLoop();
|
||||
|
||||
Reference in New Issue
Block a user