iceland2k14 / ETH_Hunt

Collison with Ethereum Address
MIT License
40 stars 18 forks source link

Error when print privatekey #12

Open AsicPrince opened 2 years ago

AsicPrince commented 2 years ago

Sometimes i see your tool generated addresses start with 0x00 so i wanna show their privatekey. but whatever i add to line 110 like hex(key_int), current_pvk... even new addresses genarated it always show the same privatekey as based keys at beginning.

what's wrong here and what do i need to edit in line 110 to show privatekey for each address exactly?

image image
AsicPrince commented 2 years ago

Private Key(hex): 0xe88b9d9f43630238b25782d7707144de62c2615ca14888349e8a7b8dd97c79b4 PrivateKey(wif): 5Kahe8VkVCCvokmCLjoq8FR5Vjd6urtYvLRNHvQSAAzj1Lr6dY8 ETH Address: 0x000bcae491a1711e863c7fadef93e45d4efead54

but when import to trustwallet it show this address 0xB76C63Ce422B278b88649f16b641D66947f03271

albertobsd commented 2 years ago

What file are you editing, i don't see that line?

albertobsd commented 2 years ago

The variable that you are you using "privateKey" doesn't exist in the context of the function that are you editing

AsicPrince commented 2 years ago

The variable that you are you using "privateKey" doesn't exist in the context of the function that are you editing

how about the wrong prvk showed for address?? why does finding ETH address use "wif_key" calculating??

iceland2k14 commented 2 years ago

image

AsicPrince commented 2 years ago

image

problem is your code give this result Private Key(hex): 0xe88b9d9f43630238b25782d7707144de62c2615ca14888349e8a7b8dd97c79b4 PrivateKey(wif): 5Kahe8VkVCCvokmCLjoq8FR5Vjd6urtYvLRNHvQSAAzj1Lr6dY8 ETH Address: 0x000bcae491a1711e863c7fadef93e45d4efead54

let try another result image Private Key(hex): 0xabd15e017898439d098547f2406e0f3bd5c52596724bc3fdce4349ee573ecc5c PrivateKey(wif): 5K7xSLVTjR5Wd7Ay5E2iRDJ4XpM9V9zFy9ADfjjh674joqbeRCw ETH Address: 0x0000b34863de645971184a102621d72f18411cfc True address is 0x904FC93FCcc637D56F91172dd199eB81B01BF036

AsicPrince commented 2 years ago

the point is something wrong in how your code calculate address from privatekey. try yourself for some prvk generated by this code to see. I wondering why do you use WIF key for ETH address while just need generate random privatekey from 0123456789abcdef then check addresses generated with address list

seega commented 1 year ago

the point is something wrong in how your code calculate address from privatekey. try yourself for some prvk generated by this code to see. I wondering why do you use WIF key for ETH address while just need generate random privatekey from 0123456789abcdef then check addresses generated with address list

You just broke the original code, I tested it on low ranges and it works without errors, you need to carefully study the code before editing, it is written with interesting logic.

[+] Starting.........Wait.....
Starting thread: 0 base:  0x100a3459
[+] Total Keys Checked : 36000000  [ Speed : 153593.95 Keys/s ]  Current ETH: 0xf51d445c0fb3d7e80b17ce7bcdda55fdf7493928
Private Key(hex): 0x12345678
Private Key(wif): 5HpHagT65TZzG1PH3CSu63k8DbpvD8s5ip4nEB3kHvTnTqEtKJp
ETH Address:      0xb5c512488c5beef74af78ffd087b034b724e9d4c
[+] Starting.........Wait.....
Starting thread: 0 base:  0x9f2a007
Starting thread: 1 base:  0xbd3644d
Starting thread: 2 base:  0x345c4be1
Starting thread: 3 base:  0x23a24836
[+] Total Keys Checked : 184000000  [ Speed : 501029.65 Keys/s ]  Current ETH: 0x34eeceebfdf90859a497d919227ff890e3adbbb5
Private Key(hex): 0x37173167
Private Key(wif): 5HpHagT65TZzG1PH3CSu63k8DbpvD8s5ip4nEB3kQ6JcayjJDDP
ETH Address:      0x6002138eb51b1a6d92f7031b62dcca799c9964eb
kaanalican commented 1 year ago

No matter what I did I couldn't find the right PrivateKEy.

Can you show me a way to test it?