-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathapp2.js
193 lines (160 loc) · 5.97 KB
/
app2.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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
"use strict";
process.title = "Multithread Bitcoin Brute Force by Corvus Codex";
//Created 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 CoinKey = require('coinkey');
const fs = require('fs');
const crypto = require('crypto');
const cluster = require('cluster');
const numCPUs = require('os').cpus().length;
const blessed = require('blessed');
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("SOL: FsX3CsTFkRjzne2KiD8gjw3PEW2bYqezKfydAP55BVj7");
console.log("Buy me a coffee: https://www.buymeacoffee.com/CorvusCodex");
console.log("Buy standalone Windows app: https://ko-fi.com/s/e059759b3b");
console.log("=================================================================");
};
console.clear();
credit();
// Initializing a Set to store addresses
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('1')) {
addresses.add(address);
} else {
console.error('Error: Addresses are not in correct format. Legacy Bitcoin Addresses must start with 1');
process.exit(1);
}
});
// Initializing an object to store counts for each worker
let counts = {};
let recentKeys = [];
let startTime = Date.now();
let lastRecentKeysUpdate = Date.now();
// 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
process.send({counts: counts});
// Generating a random private key in hexadecimal format
let privateKeyHex = crypto.randomBytes(32).toString('hex');
// Creating a CoinKey object using the private key
let ck = new CoinKey(Buffer.from(privateKeyHex, 'hex'));
// Setting the compressed property of the CoinKey object to false
ck.compressed = false;
// Checking if the public address corresponding to the private key is in the Set of addresses
if(addresses.has(ck.publicAddress)){
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: " + ck.publicAddress);
var successString = "Wallet: " + ck.publicAddress + "\n\nSeed: " + ck.privateWif + "\n\nDon't forget to donate : Bitcoin: bc1q7wth254atug2p4v9j3krk9kauc0ehys2u8tgg3";
// 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) {
let screen = blessed.screen({
smartCSR: true,
top: '100%',
width: '100%'
});
let boxes = [];
let infoBox = blessed.box({
top: '0%',
left: 0,
width: '100%',
height: '30%',
content: `//Created 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`,
border: {
type: 'line'
},
style: {
fg: 'green',
border: {
fg: 'green'
}
}
});
for (let i = 0; i < numCPUs; i++) {
let fontSize = Math.max(10 - numCPUs, 1); // decrease font size as number of cores
let box = blessed.box({
top: `${30 + i * 50/numCPUs}%`,
left: 0,
width: '100%',
height: `${40/numCPUs}%`,
content: `Worker ${i+1} Keys generated: 0 Speed: 0 keys/min`,
border: {
type: 'line'
},
style: {
fg: 'green',
border: {
fg: 'green'
},
font: `monospace ${fontSize}` // set font size
}
});
screen.append(infoBox);
screen.append(box);
boxes.push(box);
}
cluster.on('message', (worker, message) => {
if (message.counts) {
for (let workerId in message.counts) {
let elapsedTimeInMinutes = (Date.now() - startTime) / 60000;
let speedPerMinute = message.counts[workerId] / elapsedTimeInMinutes;
boxes[workerId-1].setContent(`Worker ${workerId} Keys generated: ${message.counts[workerId]} Speed: ${speedPerMinute.toFixed(2)} keys/min`);
}
screen.render();
}
if (message.recentKeys) {
let content = `Recent keys:\n`;
message.recentKeys.forEach(key => {
content += `Address: ${key.address} Private key:${key.privateKey}\n`;
});
recentKeysBox.setContent(content);
screen.render();
}
});
// Fork workers.
for (let i = 0; i < numCPUs; i++) {
cluster.fork();
}
cluster.on('exit', (worker, code, signal) => {
console.log(`worker ${worker.process.pid} died`);
});
} else {
setInterval(generate, 0);
}