-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
28 lines (28 loc) · 1.49 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Ethereum Public Key to Private Key Brute Force</title>à
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<h2>Ethereum Public Key to Private Key<br/>Brute Force</h2>
<input type="text" id="publicKeyInput" placeholder="Enter public key x-coordinate">
Min Range <input type="text" id="minRangeInput" placeholder="Enter min range">
Max Range <input type="text" id="maxRangeInput" placeholder="Enter max range">
<button onclick="startBruteForce()" id="bruteForceButton">Brute Force</button>
<button onclick="stopBruteForce()">Stop</button>
<input type="text" id="privateKeyOutput" readonly placeholder="Private key">
<div class="progress">
<div class="progress-bar" id="progressBar"></div>
<div class="progress-percentage" id="progressPercentage">0.000000%</div>
</div>
<div id="currentAttempt">Current Attempt: None</div>
<div class="log" id="log"></div>
<div><a href="https://github.com/jadehamel/ETHPublicKeyBruteForce" target="_blank">Source on Github</a></div>
<div><br/><b>* DISCLAIMER: </b>This application is intended for educational purposes only. Unauthorized use of this software to brute force private keys from public keys without permission is illegal and unethical. The author of this application is not responsible for any misuse of the code.</div>
</div>
<script src="script.js"></script>
</body>
</html>