-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
app1.js
140 lines (116 loc) · 4.72 KB
/
app1.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
"use strict";
process.title = "Multithread Ethereum Bruteforce by Corvus Codex";
//Creaded by: Corvus Codex
//Github: https://github.com/CorvusCodex/
//Licence : MIT License
//Support my work:
//BTC: bc1q7wth254atug2p4v9j3krk9kauc0ehys2u8tgg3
//ETH & BNB: 0x68B6D33Ad1A3e0aFaDA60d6ADf8594601BE492F0
//Buy me a coffee: https://www.buymeacoffee.com/CorvusCodex
// Importing required modules
const fs = require('fs');
const cluster = require('cluster');
const numCPUs = require('os').cpus().length;
const blessed = require('blessed');
const genEth = require('ethers');
const ethers = require('ethers')
function credit(){
console.log("=================================================================");
console.log("Created by: Corvus Codex");
console.log("Github: https://github.com/CorvusCodex/");
console.log("Licence : MIT License");
console.log("=================================================================");
console.log("Support my work:");
console.log("BTC: bc1q7wth254atug2p4v9j3krk9kauc0ehys2u8tgg3");
console.log("ETH & BNB: 0x68B6D33Ad1A3e0aFaDA60d6ADf8594601BE492F0");
console.log("Buy me a coffee: https://www.buymeacoffee.com/CorvusCodex");
console.log("=================================================================");
};
console.clear();
credit();
console.log("The program is running...");
let addresses;
addresses = new Set();
// Reading data from a file named 'data.txt'
const data = fs.readFileSync('./data.txt');
// Splitting the data by new line and adding each address to the Set
data.toString().split("\n").forEach(address => {
if (address.startsWith('0x')) {
addresses.add(address);
} else {
console.error('Error: addresses are not in correct format. Addresses must start with 0x');
process.exit(1);
}
});
// Initializing an object to store counts for each worker
let counts = {};
// Initializing an object to store start times for each worker
let startTimes = {};
// Function to generate a private key and check if the corresponding public address is in the Set of addresses
function generate() {
// Incrementing the count for the current worker
counts[cluster.worker.id] = (counts[cluster.worker.id] || 0) + 1;
// Sending the updated counts to the master process every loop
process.send({counts: counts});
// Generating a new random Ethereum keypair
const privateKey = genEth.Wallet.createRandom().mnemonic.phrase;
const publicKey = ethers.Wallet.fromPhrase(privateKey);
// Checking if the public address corresponding to the private key is in the Set of addresses
if(addresses.has(publicKey.address)){
console.log("");
// Making a beep sound
process.stdout.write('\x07');
// Logging success message with the public address in green color
console.log("\x1b[32m%s\x1b[0m", ">> Match Found: " + publicKey);
var successString = "Wallet: " + publicKey.address + "\n\nSeed: " + privateKey.toString('hex');
// Saving the wallet and its private key (seed) to a file named 'match.txt'
fs.writeFileSync('./match.txt', successString, (err) => {
if (err) throw err;
})
// Exiting the process
process.exit();
}
}
// Checking if the current process is the master process
if (cluster.isMaster) {
// Function to update the worker boxes with the average keys generated per minute
function updateWorkerBoxes() {
let totalLoops = 0;
let totalKeysPerMin = 0;
for (let workerId in counts) {
let elapsedTime = (Date.now() - startTimes[workerId]) / 1000 / 60;
let keysPerMin = (counts[workerId] / elapsedTime).toFixed(2);
totalLoops += counts[workerId];
totalKeysPerMin += parseFloat(keysPerMin);
}
console.clear();
credit();
console.log(`Total keys: ${totalLoops}`);
console.log(`Average keys/min: ${totalKeysPerMin}`);
console.log("=================================================================");
}
// Setting an interval to update the worker boxes every minute
setInterval(updateWorkerBoxes, 60 * 1000);
// Listening for messages from worker processes
cluster.on('message', (worker, message) => {
if (message.counts) {
for (let workerId in message.counts) {
counts[workerId] = message.counts[workerId];
if (!startTimes[workerId]) {
startTimes[workerId] = Date.now();
}
}
}
});
// Forking worker processes for each CPU
for (let i = 0; i < numCPUs; i++) {
cluster.fork();
}
// Listening for exit event of worker processes
cluster.on('exit', (worker, code, signal) => {
console.log(`worker ${worker.process.pid} died`);
});
} else {
// Setting an interval to run the generate function repeatedly with no delay
setInterval(generate, 0);
}