Pages:
Author

Topic: ... (Read 1453 times)

legendary
Activity: 1792
Merit: 1008
/dev/null
...
January 25, 2013, 04:56:21 PM
#23
interested in a rainbow table with 46953865 addresses? lol
Wouldn't that require that you have the 46953865 private keys?
i said keypair, so yes . . .
No, you didn't.  But now you did.  Grin

. . . i found keypairs owned by others who used silly password in combination with a brainwallet too, altough i didnt touch them . . .
I suspect they didn't have any bitcoins at those addresses.  You can't have been the only person to have done this.
with "i didnt touch them" i was referencing to "i didnt withdraw the BTC" and yes for sure im not the only one who did this.
sry about the keypair thingy Wink
legendary
Activity: 3472
Merit: 4801
January 25, 2013, 04:51:03 PM
#22
interested in a rainbow table with 46953865 addresses? lol
Wouldn't that require that you have the 46953865 private keys?
i said keypair, so yes . . .
No, you didn't.  But now you did.  Grin

. . . i found keypairs owned by others who used silly password in combination with a brainwallet too, altough i didnt touch them . . .
I suspect they didn't have any bitcoins at those addresses.  You can't have been the only person to have done this.
legendary
Activity: 1792
Merit: 1008
/dev/null
January 25, 2013, 04:23:05 PM
#21
interested in a rainbow table with 46953865 addresses? lol
Wouldn't that require that you have the 46953865 private keys?

That can easily be stored on modern hard disks.
Certainly, but wouldn't you first need to figure out what they are?

Guys, that are probably all addresses that have been used yet, and they are already stored on your hard drive, the file is called blk000x.dat
no, they have been generated from a huge wordlist made by myself of stolen pws i found around the net Wink
legendary
Activity: 1232
Merit: 1001
January 25, 2013, 04:21:25 PM
#20
interested in a rainbow table with 46953865 addresses? lol
Wouldn't that require that you have the 46953865 private keys?

That can easily be stored on modern hard disks.
Certainly, but wouldn't you first need to figure out what they are?

Guys, that are probably all addresses that have been used yet, and they are already stored on your hard drive, the file is called blk000x.dat
legendary
Activity: 1792
Merit: 1008
/dev/null
January 25, 2013, 04:19:30 PM
#19
interested in a rainbow table with 46953865 addresses? lol
Wouldn't that require that you have the 46953865 private keys?
i said keypair, so yes.
created a simple rainbow table for a friend to show him how insecure brainwallets are with easy passwords... he was like wtf Cheesy

EDIT: i found keypairs owned by others who used silly password in combination with a brainwallet too, altough i didnt touch them. it was just a proof of concept if anyone wonders.
legendary
Activity: 3472
Merit: 4801
January 25, 2013, 04:17:29 PM
#18
interested in a rainbow table with 46953865 addresses? lol
Wouldn't that require that you have the 46953865 private keys?

That can easily be stored on modern hard disks.
Certainly, but wouldn't you first need to figure out what they are?
legendary
Activity: 1246
Merit: 1077
January 25, 2013, 04:16:27 PM
#17
interested in a rainbow table with 46953865 addresses? lol
Wouldn't that require that you have the 46953865 private keys?

That can easily be stored on modern hard disks.
legendary
Activity: 3472
Merit: 4801
January 25, 2013, 04:14:19 PM
#16
interested in a rainbow table with 46953865 addresses? lol
Wouldn't that require that you have the 46953865 private keys?
legendary
Activity: 1792
Merit: 1008
/dev/null
January 25, 2013, 04:11:38 PM
#15
interested in a rainbow table with 46953865 addresses? lol

EDIT: in case someone ask me for the rainbow table, no i wont sell it since this would make me a thief and im a honest guy Wink
legendary
Activity: 3472
Merit: 4801
January 25, 2013, 04:05:51 PM
#14
If you are looking for something a bit less manual and want to keep it updated on a regular basis, the following should work on any system that has curl and sed:
Code:
curl "https://blockchain.info/tags?filter=2" 2>/dev/null |sed -n -e 's:[ ^I]*<[^>]*>\(.*\)<[^>]*>[ ^I]*:"\1",:p' -e 's:.*.*:#:p' |tr '\n' ' ' |tr '#' '\n' |sed -e 's:^ *::' -e 's:, *$::' >myfile.csv
Schedule it with a crontab and you should have a regularly updated csv with the information from blockchain.info
I'm going to contact you next time I want to web-crawl.  My last solution involved PHP and cURL, but the one before that involved Excel, VBA, and IE.  Neither were pretty.
This wasn't pretty either.  It was just thrown together quickly.  I add too many commas and spaces have to run through two extra substitutions at the end to strip them back out.  It isn't flexible and if blockchain.info changes the output at all (adding or removing newlines, changing the tags to upper case, etc.) then it won't work. But it's a good starting point.
legendary
Activity: 1400
Merit: 1005
January 25, 2013, 03:44:09 PM
#13
Mark all --> Copy --> Paste in Excel --> Save as CSV

and that's my non developer solution.

Edit: Ohh, what the... I mailed you the csv

If you are looking for something a bit less manual and want to keep it updated on a regular basis, the following should work on any system that has curl and sed:

Code:
curl "https://blockchain.info/tags?filter=2" 2>/dev/null |sed -n -e 's:[ ^I]*<[^>]*>\(.*\)<[^>]*>[ ^I]*:"\1",:p' -e 's:.*.*:#:p' |tr '\n' ' ' |tr '#' '\n' |sed -e 's:^ *::' -e 's:, *$::' >myfile.csv

Schedule it with a crontab and you should have a regularly updated csv with the information from blockchain.info
I'm going to contact you next time I want to web-crawl.  My last solution involved PHP and cURL, but the one before that involved Excel, VBA, and IE.  Neither were pretty.
legendary
Activity: 3472
Merit: 4801
January 25, 2013, 01:34:40 PM
#12
Mark all --> Copy --> Paste in Excel --> Save as CSV

and that's my non developer solution.

Edit: Ohh, what the... I mailed you the csv

If you are looking for something a bit less manual and want to keep it updated on a regular basis, the following should work on any system that has curl and sed:

Code:
curl "https://blockchain.info/tags?filter=2" 2>/dev/null |sed -n -e 's:[ ^I]*<[^>]*>\(.*\)<[^>]*>[ ^I]*:"\1",:p' -e 's:.*.*:#:p' |tr '\n' ' ' |tr '#' '\n' |sed -e 's:^ *::' -e 's:, *$::' >myfile.csv

Schedule it with a crontab and you should have a regularly updated csv with the information from blockchain.info
legendary
Activity: 3472
Merit: 4801
January 25, 2013, 12:26:12 PM
#11
. . . all bitcointalk.org users and their respective bitcoin address . . .
I have a few thousand addresses.  How many of them do you want?
Note, that since I never re-use an address, no addresses that I've used before or am currently using will ever be used again in the future.  Do you want me to come back here and update the list every time I send or receive any bitcoins in the future?  That seems like quite a hassle.  I'm not sure I want to make that sort of effort unless you are going to compensate me for the inconvenience.
legendary
Activity: 1232
Merit: 1001
January 25, 2013, 12:12:42 PM
#10
Thanks, I appreciate your help.
Does your solution update automatically whenever a new entry is added?

Yes, when ever you reaped my solution, you end up with a updated list  Grin
legendary
Activity: 1232
Merit: 1001
January 25, 2013, 11:53:01 AM
#9
I knew about that, but, is there any way to export the list?

Quote

 Huh

When I said 'any way to export the list', I meant a nice and round button to click and download a file, or, a JSON response.
If not, well, I'll go ahead and code a script for this task.

And since I don't need the list for at-least the next 2 weeks, I though about asking that and save some time.

Mark all --> Copy --> Paste in Excel --> Save as CSV

and that's my non developer solution.

Edit: Ohh, what the... I mailed you the csv
legendary
Activity: 1764
Merit: 1007
January 25, 2013, 11:36:07 AM
#8
I knew about that, but, is there any way to export the list?

Quote

 Huh
full member
Activity: 130
Merit: 100
newbie
Activity: 28
Merit: 0
January 25, 2013, 10:38:59 AM
#6
sr. member
Activity: 392
Merit: 250
January 25, 2013, 10:38:40 AM
#5
If everyone just puts it in their sig, you can just look up their profile and find it.  That requires no centralized maintenance.
newbie
Activity: 28
Merit: 0
January 25, 2013, 10:37:43 AM
#4

Why? Future reference.


Normally I would post a address if I was asked, but now I want more Information first.

What do you need it for?

I agree, whats the purpose of this?
Pages:
Jump to: