Pages:
Author

Topic: Base 64 characters? Bitcoin docx file (Read 435 times)

full member
Activity: 217
Merit: 109
April 05, 2021, 05:18:06 PM
#28
As part of an attempt to retrieve a Bitcoin wallet/private key from an old hard drive I have found a docx file labeled Bitcoin. It consists of 3 blocks of characters A-Z, a-z, numbers 1-9 and+/. Each block is about 70 characters long and about 50 lines deep.
Do the 3 blocks all start with the characters "U2F"? Huh

If not, do the 3 blocks all start with the same couple of characters... and if so, what are those characters? Huh

https://imgur.com/s23eGUj This is the majority of the first block of text. There are another 4 of about the same size plus a smaller block. I have to open it in Word with the get text from any file facility as it won't open otherwise. The file is labelled bitcoin_ addresses.docx. There is another one just called bitcoin addresses and when i open that it just has the address i am interested in, in plain text. So i'm a bit stumped on what, if anything i can get from these files.
full member
Activity: 217
Merit: 109
April 05, 2021, 06:06:30 PM
#22
https://imgur.com/s23eGUj This is the majority of the first block of text.
It certainly looks like Base64 with the +'s and /'s... but it's possible that it is encrypted text/data that has been Base64 encoded... And, obviously, without knowing the details of the encryption method used, if you Base64 decode it, you're just going to get the encrypted data which will look like gibberish Undecided
Someone mentioned that it could be a pgp file?
HCP
legendary
Activity: 2086
Merit: 4316
April 05, 2021, 05:58:16 PM
#21
https://imgur.com/s23eGUj This is the majority of the first block of text.
It certainly looks like Base64 with the +'s and /'s... but it's possible that it is encrypted text/data that has been Base64 encoded... And, obviously, without knowing the details of the encryption method used, if you Base64 decode it, you're just going to get the encrypted data which will look like gibberish Undecided
HCP
legendary
Activity: 2086
Merit: 4316
April 05, 2021, 04:38:27 PM
#20
As part of an attempt to retrieve a Bitcoin wallet/private key from an old hard drive I have found a docx file labeled Bitcoin. It consists of 3 blocks of characters A-Z, a-z, numbers 1-9 and+/. Each block is about 70 characters long and about 50 lines deep.
Do the 3 blocks all start with the characters "U2F"? Huh

If not, do the 3 blocks all start with the same couple of characters... and if so, what are those characters? Huh
legendary
Activity: 2394
Merit: 5531
Self-proclaimed Genius
April 04, 2021, 08:11:02 AM
#19
Could it be a Blockchain wallet in json format?
Does it look like this? (some lines omitted):
Code:
........"auth_type":0,"real_auth_type":0,"payload":"{\"pbkdf2_iterations\":5000,\"version\":3,\"payload\":\"gTMWA+Y8XtvNqndEaxLGat5vtVvx8..............LONG_BASE64_STRING................kpdRLGwhkrK5xRFuTMj1WMsBUVH7\/zgz0GDkzwq9wSNucrLjag==\"}","symbol_local":{"symbol":"$","code":"USD","symbolAppearsAfter":false,"name":"U.S. dollar","local":true,"conversion":0},"guid":"xxx","payload_checksum":"xxx","war_checksum":"xxxx","language":"en","symbol_btc":{"symbol":"BTC","code":"BTC","symbolAppearsAfter":true,"name":"Bitcoin","local":false,"conversion":100000000.00000000},"sync_pubkeys":false}
An unformatted JSON with long base64 string at the middle part.

If so, you can try to paste it to a .txt file and rename the file into wallet.aes.json including the extension, from ".txt" to ".json" then import it to their recovery page: https://login.blockchain.com/wallet/import-wallet (password required).
legendary
Activity: 1568
Merit: 6660
bitcoincleanup.com / bitmixlist.org
April 02, 2021, 06:11:39 AM
#18
I have found a docx file labeled Bitcoin.

Something hit me after reading this again - a human had to have pasted the stuff in this file. .docx file format is actually a ZIP archive with various other files inside  (open it inside 7-zip or any archiving program if you don't believe me), so there is no way this could have been computer generated by a recovery tool.

Do you remember if you were the one who created this file, or if you have any idea where you pasted the data from? It doesn't look like something you'll find in Bitcoin-Qt.

What is the date of the file's creation? This'll help narrow down the potential sources to software that existed at the time.
sr. member
Activity: 924
Merit: 452
Check your coin privilege
March 29, 2021, 06:00:28 PM
#17
You can safely test if you have Base64 input and what it encodes by running the following Python code in your local interpreter.

Code:
import base64
string = input("Input base64 here: ")
string_decode = base64.decodestring(string)
print("Decoded string:")
print(string_decode)

I would avoid using online base64 decoders if you think you might have a private key, since you have no idea if the data is logged server-side.

I assume you already have python installed based on your previous support questions about pywallet.
I might have to send the file to someone trusted to have a look at as I'm not sure what I'm doing. I have got python 2.7 installed but it is a lot of text to enter in a command line. Thanks for your time.

Could you please just provide more clarification on what the text is? I still have no idea how the text looks. Is it 70 character blocks? Or is it 70x50 blocks? Is there a new line after each 70 characters? Did you copy paste these files from somewhere or do you remember if you gnerated them yourself the first time?
full member
Activity: 217
Merit: 109
March 29, 2021, 04:18:11 PM
#16
You can safely test if you have Base64 input and what it encodes by running the following Python code in your local interpreter.

Code:
import base64
string = input("Input base64 here: ")
string_decode = base64.decodestring(string)
print("Decoded string:")
print(string_decode)

I would avoid using online base64 decoders if you think you might have a private key, since you have no idea if the data is logged server-side.

I assume you already have python installed based on your previous support questions about pywallet.
I might have to send the file to someone trusted to have a look at as I'm not sure what I'm doing. I have got python 2.7 installed but it is a lot of text to enter in a command line. Thanks for your time.
legendary
Activity: 1568
Merit: 6660
bitcoincleanup.com / bitmixlist.org
March 29, 2021, 09:47:15 AM
#15
You can safely test if you have Base64 input and what it encodes by running the following Python code in your local interpreter.

Code:
import base64
string = input("Input base64 here: ")
string_decode = base64.decodestring(string)
print("Decoded string:")
print(string_decode)

I would avoid using online base64 decoders if you think you might have a private key, since you have no idea if the data is logged server-side.

I assume you already have python installed based on your previous support questions about pywallet.
legendary
Activity: 3472
Merit: 10611
March 29, 2021, 12:45:33 AM
#14
Take a look at this:
https://blog.cryptohack.org/twitter-secrets
Maybe you have PEM
Interesting, thanks for that. Wish I had the knowledge to apply it.
If you indeed have a PGP key then it has nothing to do with bitcoin, specially if it is very long that would indicate it is possibly an RSA key then it definitely has nothing to do with bitcoin since we don't use RSA anywhere in bitcoin.
I also have never heard of any wallet that has ever used the DER encoding from ASN.1 standard to encode its private keys which is what that link is describing.
sr. member
Activity: 924
Merit: 452
Check your coin privilege
March 28, 2021, 06:12:48 PM
#13
Each block is about 70 characters long and about 50 lines deep.

What?
full member
Activity: 217
Merit: 109
March 28, 2021, 05:20:17 PM
#12
Take a look at this:
https://blog.cryptohack.org/twitter-secrets
Maybe you have PEM
Interesting, thanks for that. Wish I had the knowledge to apply it.
member
Activity: 170
Merit: 58
March 28, 2021, 04:14:27 PM
#11
Take a look at this:
https://blog.cryptohack.org/twitter-secrets
Maybe you have PEM
legendary
Activity: 4354
Merit: 3260
March 27, 2021, 04:23:00 AM
#10
A base-64 encoding with 50 lines of 70 characters sounds a lot like a PGP key.
legendary
Activity: 1512
Merit: 4795
Leading Crypto Sports Betting & Casino Platform
March 26, 2021, 08:42:44 AM
#9
With assumption bitcoin private key length is 256-bit, i can't think it's usual Bitcoin private key. With 70 characters long and each character roughly represent 6 bit, it'll produce about 420 bit character.
With 256 bits, the type of private key will be in hexadecimal format. It consists of 64 characters, each character consists of 4 bits, which makes it to be 256 bits.

But the hexadecimal format is the one in 64 characters and it is the original which is used to derive other private key. Adding 01 to it as a suffix to the end of the hexadecimal format will make the private key to be converted from uncompressed to compressed.

Uncompressed bse58Check (WIF) format consists of 51 characters.
Compressed bse58Check (WIF) format consists of 52 characters.

But, in this case, it is about private key base64 (44 characters), while the OP one consist of 70 characters, this makes it not to be bitcoin private key like you commented, no bitcoin private key also have 70 characters.
legendary
Activity: 1512
Merit: 4795
Leading Crypto Sports Betting & Casino Platform
March 26, 2021, 07:04:51 AM
#8
You can look up the same quote here to see that it does indeed say + and / - https://www.oreilly.com/library/view/mastering-bitcoin-2nd/9781491954379/ch04.html
That is true, I have checked it.

Quote
Even more compact, Base64 representation uses 26 lowercase letters, 26 capital letters, 10 numerals, and 2 more characters such as “+” and “/” to transmit binary data over text-based media such as email.

This is what I found out at the other site I mentioned earlier.
https://www.garykessler.net/library/base64.html

But, this is clearly understandable now.
legendary
Activity: 2268
Merit: 18588
March 26, 2021, 06:55:14 AM
#7
Which means on master bitcoin, it is indicated that base64 can contain any of these characters along  “``” and "/" , but on another site, I saw only /+=
It seems either the copy of Mastering Bitcoin you are reading or maybe your browser has an error. ” is the HTML code for the right quotation mark symbol. It does not mean that Base64 can contain &, #, or ;.

You can look up the same quote here to see that it does indeed say + and / - https://www.oreilly.com/library/view/mastering-bitcoin-2nd/9781491954379/ch04.html
legendary
Activity: 1512
Merit: 4795
Leading Crypto Sports Betting & Casino Platform
March 26, 2021, 06:38:08 AM
#6
<...>
I appreciate the correction, but one more thing. I found something that makes me confused on mastering bitcoin which I did not input yet.

Quote
Even more compact, Base64 representation uses 26 lowercase letters, 26 capital letters, 10 numerals, and 2 more characters such as “``” and "/" to transmit binary data over text-based media such as email.

Which means on master bitcoin, it is indicated that base64 can contain any of these characters along  “``” and "/" , but on another site, I saw only /+=
legendary
Activity: 2268
Merit: 18588
March 26, 2021, 06:24:33 AM
#5
two other characters like /, =, + (but / and = for bitcoin base 64 private key)
No. Base64 private keys, like all Base64 numbers, can contain both + and /, and have = at the end as described by DannyHamilton above. Here is an example private key:
Code:
5J2V9K6xMBRTmK3Jn1XL6gz1esXUydS8oAR6SSYu6NBiHKYDBuz
Which in Base64 is:
Code:
G7M7qL+t8Kr8JtZDUctOAfH0gYK34GL4jYFDrS/SDC0=



OP, do the strings start with "U2FsdGVkX1" by any chance?
legendary
Activity: 1512
Merit: 4795
Leading Crypto Sports Betting & Casino Platform
March 25, 2021, 09:02:25 PM
#4
Charles-Tim is incorrect about it not being base64, though he might be correct about it not being a private key.
I did not mean that, what I meant is that it is not a bitcoin private key. All base 64 bitcoin private keys have base 64 representation, but not all base 64 representation are base 64 bitcoin private key.

Base 64 representation can contain:
  • any of the 26 uppercase
  • any of the 26 lowercase
  • any of the 10 numerals (0-9)
  • two other characters like /, =, + (but / and = for bitcoin base 64 private key)

Sounds like it probably is base64, but perhaps not a private key.
Exactly what I meant. It is not base 64 bitcoin private key.
Pages:
Jump to: