Bitcoin Forum
May 25, 2024, 10:58:48 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Bitcoin / Bitcoin Technical Support / Re: Help with python code on: October 05, 2023, 11:31:28 AM
ok if this is not an API Then against what I need to launch the code?

First, find out what type of wallet you are trying to brute force if you haven't already. I have a suspicion that you are not so sure exactly what type of wallet you have.

Once you find the wallet format, see if it has a Python package that can programmatically open & read it, and then build a script around that (potentially using ChatGPT if it is one of the more well known packages, but you should at least make an effort to learn just enough Python to write one yourself).

My wallet is a safepal, the address that I have is a legacy
2  Bitcoin / Bitcoin Technical Support / Re: Help with python code on: October 05, 2023, 11:15:20 AM
Unfortunately FinderOuter is not working for me I will try with btcrecover, yes I know that the AI do unrelated code and that is what I changed, I don't know how to program well but I understand what the code is saying

First of all, put your code in code tags, like this:

Code:

This makes your code easier to read.

Second, you cannot brute force anything using a network request because this is limited by your network speed, your ping, the server's rate-limited network speed, and did I mention they can throttle you or just completely block requests from your IP addresses? In other words, it is extremely slow. Nobody does this.

3rd, the network resource you're hitting does not exist, that's why it's returning 404.


ok if this is not an API Then against what I need to launch the code?
3  Bitcoin / Bitcoin Technical Support / Re: Help with python code on: October 05, 2023, 11:05:07 AM
I don't post my seed at anyplace I have it on paper writed by hand, I'm totally noob programing I do it correcting what a AI do for me.

I already told you recently from your previous thread you can use the FinderOuter tool to brute-force your seed phrase it doesn't require programming skill.
And take note don't use AI to generate a script to brute-force your seed it generates sometimes unrelated codes that you can't use in brute-forcing a seed or it might generate a code that can leak your seed phrase.

Unfortunately FinderOuter is not working for me I will try with btcrecover, yes I know that the AI do unrelated code and that is what I changed, I don't know how to program well but I understand what the code is saying
4  Bitcoin / Bitcoin Technical Support / Re: SAFEPAL SEED on: October 05, 2023, 10:54:46 AM

Not only that, but this may be a phishing link real link https://safepal.com/en/
this link is isafepal


Imagine that even I, that I am very suspicious, didn't notice that.

OP, you must be extremely careful and please, use the software that the other users suggested.

FindOuter is not working for me... idk why I'm checking the other
5  Bitcoin / Bitcoin Technical Support / Re: SAFEPAL SEED on: October 05, 2023, 09:26:43 AM
I try all the words that start with the same letter that I have written in my copy, I will try btccreover

You just make things complicated and wasting time to make Python code to work.
FinderOuter is ready to use you don't need to make any Python code just to brute-force a one word from your seed.
Look at this sample


Source: https://bitcointalk.org/index.php?topic=5214021.msg62454836#msg62454836

Isn't that easy?

Yes I will try some of this two tools btcrecover or FinderOuter
6  Bitcoin / Bitcoin Technical Support / Re: SAFEPAL SEED on: October 05, 2023, 09:18:12 AM

response = requests.post("https://ep.isafepal.com", json={"phrase": corrected_seed})


Oh my god! I just saw this. Did you send a post request with your seed words to this website?

Safepal is a cryptocurrency company. Just remember you must NEVER share your seed phrase with ANYONE, not even your closest relatives or friends. And you just created a script to send the words to a random website.

If you have done this, change wallet ASAP.

of course I don't do it, I have my seed only in a paper writted by hand
7  Bitcoin / Bitcoin Technical Support / Re: SAFEPAL SEED on: October 04, 2023, 09:07:59 PM
You can easily brute force the word using https://btcrecover.readthedocs.io/en/latest/

These are all the BIP39 word, they are just 2048 in total:

https://github.com/bitcoin/bips/blob/master/bip-0039/english.txt

The reason I give you the word list is if you have some letters that start the sixth word, the better to choose form the suggested letters as few letters will be left. But if you are not able to recover it easily as you do not know any letter that the word starts from at all, then use Btcrecover.

I try all the words that start with the same letter that I have written in my copy, I will try btccreover
8  Bitcoin / Bitcoin Technical Support / Re: Help with python code on: October 04, 2023, 08:58:21 PM
This is extremely bad idea. I just read brute_force_seed. Why are you even requesting a POST with safepal, submitting your seed phrase (!!!) to them? This is not secure. Also, why isn't there indentation in your python code?

Please use either FinderOuter which comes with a friendly user interface, or btcrecover. Open-source means that every problem has to only be solved once.

I don't post my seed at anyplace I have it on paper writed by hand, I'm totally noob programing I do it correcting what a AI do for me.
9  Bitcoin / Bitcoin Technical Support / Re: Help with python code on: October 04, 2023, 08:48:17 PM
I do a new post because here I'm asking about the code directly but if this is a problem I can delete one, in the other post I ask for possibilites to solve my problem
10  Bitcoin / Bitcoin Technical Support / Help with python code on: October 04, 2023, 04:51:04 PM
Hello I made a huge mistake, I have one word wrong of my recovery seed copy, I know that this is the word number 6 because my safepal S1 doesn't give me the option to use the word that I have written on my recovery copy. I made a python code to brute force this word with the words of the bip-0039 document

The problem is that I don't know the API to run my python code. can someone help with this?

this is the complete code:

import requests

def clean_word(word):
return word.strip().lower()

def brute_force_seed(seed, word_number):
word_index = word_number
while word_index < len(seed.split()):
for word in english_words:
print("Checking word", word)
corrected_seed = seed.split()
corrected_seed[word_index] = clean_word(word)
corrected_seed = " ".join(corrected_seed)
response = requests.post("https://ep.isafepal.com", json={"phrase": corrected_seed})
if response.status_code == 200:
return corrected_seed

word_index += 1
return None

with open(r"C:\Users\kkk\OneDrive\desktop\rescue\bip0039.txt", "r") as file:
english_words = [clean_word(line.strip()) for line in file]

seed = "word1 word2 word3 word4 word5 word6 word7 word8 word9 word10 word11 word12 word13 word14 word15 word16 word17 word18 word19 word20 word21 word22 word23 word24"
word_number = 5

corrected_seed = brute_force_seed(seed, word_number)

if corrected_seed is not None:
print("The corrected phrase is:", corrected_seed)
else:
print("No match found.")
11  Bitcoin / Bitcoin Technical Support / Re: SAFEPAL SEED on: October 04, 2023, 04:39:44 PM
Thank U guys, this can help me, however I write a python code maybe someone can help me with it


The problem is that I don't know the API to run my python code. can someone help with this?

this is the complete code:

import requests

def clean_word(word):
return word.strip().lower()

def brute_force_seed(seed, word_number):
word_index = word_number
while word_index < len(seed.split()):
for word in english_words:
print("Checking word", word)
corrected_seed = seed.split()
corrected_seed[word_index] = clean_word(word)
corrected_seed = " ".join(corrected_seed)
response = requests.post("https://ep.isafepal.com", json={"phrase": corrected_seed})
if response.status_code == 200:
return corrected_seed

word_index += 1
return None

with open(r"C:\Users\kkk\OneDrive\desktop\rescue\bip0039.txt", "r") as file:
english_words = [clean_word(line.strip()) for line in file]

seed = "word1 word2 word3 word4 word5 word6 word7 word8 word9 word10 word11 word12 word13 word14 word15 word16 word17 word18 word19 word20 word21 word22 word23 word24"
word_number = 5

corrected_seed = brute_force_seed(seed, word_number)

if corrected_seed is not None:
print("The corrected phrase is:", corrected_seed)
else:
print("No match found.")
12  Bitcoin / Bitcoin Technical Support / SAFEPAL SEED on: October 01, 2023, 10:25:38 AM
I have a problem with a seed on my safepal, I have only one word wrong, I know that is the word number 6, is there any software to bruteforce only this word?
Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!