Bitcoin Forum
June 16, 2024, 03:45:25 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 [4] 5 6 7 8 »  All
  Print  
Author Topic: Directory.io - Now with balances!  (Read 27343 times)
Enzyme
Sr. Member
****
Offline Offline

Activity: 420
Merit: 250


View Profile
July 26, 2015, 02:08:08 AM
 #61

Well, I gave up on the third try.

GG.
Jude Austin (OP)
Legendary
*
Offline Offline

Activity: 1140
Merit: 1000


The Real Jude Austin


View Profile WWW
July 26, 2015, 02:41:23 AM
 #62

Well, I gave up on the third try.

GG.

You'll be back, haha.


Buy or sell $100 of Crypto and get $10!
Jude Austin (OP)
Legendary
*
Offline Offline

Activity: 1140
Merit: 1000


The Real Jude Austin


View Profile WWW
July 26, 2015, 02:45:18 AM
 #63

Hello,

I made a clone of Directory.io but I added the ability to show the balance of the addresses when CORS is enabled in Chrome;

http://btcdirectory.azurewebsites.net/


To enable CORS in Chrome I use this extension:
https://chrome.google.com/webstore/detail/allow-control-allow-origi/nlfbmbojpeacfghkpbjhddihlkkiljbi?utm_source=chrome-app-launcher-info-dialog



This is purely for fun, your odds shouldn't even be called odds.

But just in case you happen to stumble on an address with a balance, DON'T STEAL.



Great novelty game. LOL 
How can I set it up to get the information from another location. I have a setup that allows me to get the information from, which is accessible via the browser and I would like to point the 'http://blockchain.info' CORS request there (while keeping the address in link) for retrieval instead of blockchain.info  ( http://replace_this_part_to_my_local/q/address/#keep_this_the_same)

I can make you a console application with your specific URL, it will be much faster than through a browser.

When I was running it with my own insight server I was doing about 1000 address per second 2000 if you count the compressed keys.


Buy or sell $100 of Crypto and get $10!
tyz
Legendary
*
Offline Offline

Activity: 3360
Merit: 1533



View Profile
July 26, 2015, 09:18:03 AM
 #64

Yes, i did enable CORS on my chrome browser. Balances still does not appear  Undecided

edit: now it is shown!

"Directory.io - Now with balances!"  Huh I can not see any balance on the site. Did you remove it again?

Did you enable CORS in your browser?

It will only show with CORS enabled.
tres_commas
Newbie
*
Offline Offline

Activity: 6
Merit: 0


View Profile
July 29, 2015, 02:33:42 AM
 #65

What do you guys think about this.

Using Python 
I'm gathering a list of private and public addresses into two separate files. 
I keep the private and public addresses mapped together throughout the whole process btw. 
Sort the list of public addresses. 
Convert the addresses into an integer, rebase into regular base 10.
Compare how close the public addresses are numerically. 

The goal is to get enough public addresses that are close enough together , or similar distances apart, to see if there is a pattern in numerical difference in private keys.  I.e. - every priv addrs resorted by pub_addrs is some integer/pattern apart
Finding an approximate step distance, assuming that the it wraps around. 
For instance. 

step 3 starting at 0
0 1 2 3 4 5 6 7 8 9 A B C D E F 

0 3 6 9 C F 2 5 8 B E 1 4 7 A D 0

Obviously pattern could come as more in depth like first step 3 the step 5, repeat. But the only way figure that out is to get enough public address neighbors in different regions of the address space. 

Then when I think I have a pattern that may work, create a test address pair, proceed as if I don't know the private address. 
Determine my test ranges of private addresses based on the public address. 
Decode my base58 guess range addresses into long integers. 
Integer // 128 + 1 for page number of these "Directory.io" like sites and scrub in either direction looking for the public address to match. 



Code:
codestring = list('123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz')
...
place_holder = 0
for value in pub_address[::-1]:
        long_int += codestring.index(value) * 58 ** place_holder
        place_holder += 1
...

The problem really comes down to that I periodically get a shorter number, unless, that's a key to the pattern.  Check it out. 

Quote
1C1rEtR7thtETfacM7zSAr5K3z5TmDBYH
51078483646279294236952535710672081744668370430130160350

1C1rFtVdGd2QjyYGUTrfbwCb4VTtzUDmEQ
2962553431846907081444274408269607242597151315247731067433

1C1tVsw7hNrAuHQepw4UBMiPs2oXb7bGam
2962732625605733070539107364803282557057598475989994440498
Jude Austin (OP)
Legendary
*
Offline Offline

Activity: 1140
Merit: 1000


The Real Jude Austin


View Profile WWW
July 31, 2015, 02:15:53 AM
 #66

What do you guys think about this.

Using Python 
I'm gathering a list of private and public addresses into two separate files. 
I keep the private and public addresses mapped together throughout the whole process btw. 
Sort the list of public addresses. 
Convert the addresses into an integer, rebase into regular base 10.
Compare how close the public addresses are numerically. 

The goal is to get enough public addresses that are close enough together , or similar distances apart, to see if there is a pattern in numerical difference in private keys.  I.e. - every priv addrs resorted by pub_addrs is some integer/pattern apart
Finding an approximate step distance, assuming that the it wraps around. 
For instance. 

step 3 starting at 0
0 1 2 3 4 5 6 7 8 9 A B C D E F 

0 3 6 9 C F 2 5 8 B E 1 4 7 A D 0

Obviously pattern could come as more in depth like first step 3 the step 5, repeat. But the only way figure that out is to get enough public address neighbors in different regions of the address space. 

Then when I think I have a pattern that may work, create a test address pair, proceed as if I don't know the private address. 
Determine my test ranges of private addresses based on the public address. 
Decode my base58 guess range addresses into long integers. 
Integer // 128 + 1 for page number of these "Directory.io" like sites and scrub in either direction looking for the public address to match. 



Code:
codestring = list('123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz')
...
place_holder = 0
for value in pub_address[::-1]:
        long_int += codestring.index(value) * 58 ** place_holder
        place_holder += 1
...

The problem really comes down to that I periodically get a shorter number, unless, that's a key to the pattern.  Check it out. 

Quote
1C1rEtR7thtETfacM7zSAr5K3z5TmDBYH
51078483646279294236952535710672081744668370430130160350

1C1rFtVdGd2QjyYGUTrfbwCb4VTtzUDmEQ
2962553431846907081444274408269607242597151315247731067433

1C1tVsw7hNrAuHQepw4UBMiPs2oXb7bGam
2962732625605733070539107364803282557057598475989994440498


Good luck finding a pattern out of 10^38 possible combinations.


Buy or sell $100 of Crypto and get $10!
Panadacoin
Sr. Member
****
Offline Offline

Activity: 296
Merit: 251


View Profile
July 31, 2015, 05:41:38 AM
 #67

So this is like all the addresses that exist?  I wonder if anyone has found something and just kept quiet about it? This is pretty crazy.
Jude Austin (OP)
Legendary
*
Offline Offline

Activity: 1140
Merit: 1000


The Real Jude Austin


View Profile WWW
July 31, 2015, 11:00:32 PM
 #68

So this is like all the addresses that exist?  I wonder if anyone has found something and just kept quiet about it? This is pretty crazy.

If they did they should buy some lottery tickets, lol.

I've been searching for a collision for years, haven't found shittttt.

Buy or sell $100 of Crypto and get $10!
favdesu
Legendary
*
Offline Offline

Activity: 1764
Merit: 1000



View Profile WWW
August 01, 2015, 07:31:30 AM
 #69

So this is like all the addresses that exist?  I wonder if anyone has found something and just kept quiet about it? This is pretty crazy.

that's what I wonder too... are there addresses with a balance? does this site snipe them before posting them?

McOussKing
Newbie
*
Offline Offline

Activity: 2
Merit: 0


View Profile
August 13, 2015, 02:06:53 AM
 #70

http://s24.postimg.org/ga4j2tny9/Capture.jpg

i have created an account to just reply this awesome Thread
[/b]

after a months of Brute-force using Command Prompt and manual checking balances.
This is my first Bitcoin Successful manually Brute-force ! (of course it take long time too but the balances are shown in real-time without going to Blockchain.info !)

I have Found 87540 Satoshi.
a simple calculation
87540 Satoshi = 0.0008754 BTC = 0.23 US Dollar.

Hmm.. Low Amount & Bad Luck Sad
but it's better than the 0 that i get everytime Cheesy !
McOussKing
Newbie
*
Offline Offline

Activity: 2
Merit: 0


View Profile
August 13, 2015, 02:08:39 AM
 #71

So this is like all the addresses that exist?  I wonder if anyone has found something and just kept quiet about it? This is pretty crazy.

that's what I wonder too... are there addresses with a balance? does this site snipe them before posting them?

they doesn't check or snipe any address because the address are not even stored in any database, they are generated in the server-side with a simple calculation when the page is loading..  it's On-The-Fly generated address. and yes, there are some addresses with balances but it's not easy to get it, you need to search in a billions of billions of Bitcoins Empty addresses.

i have collected a lot of informations about how Bitcoin work technically in my last research about the Cryptography and the Digital Currencies
tres_commas
Newbie
*
Offline Offline

Activity: 6
Merit: 0


View Profile
August 13, 2015, 04:26:45 PM
Last edit: August 13, 2015, 06:25:45 PM by tres_commas
 #72

http://s24.postimg.org/ga4j2tny9/Capture.jpg

i have created an account to just reply this awesome Thread
[/b]

after a months of Brute-force using Command Prompt and manual checking balances.
This is my first Bitcoin Successful manually Brute-force ! (of course it take long time too but the balances are shown in real-time without going to Blockchain.info !)

I have Found 87540 Satoshi.
a simple calculation
87540 Satoshi = 0.0008754 BTC = 0.23 US Dollar.

Hmm.. Low Amount & Bad Luck Sad
but it's better than the 0 that i get everytime Cheesy !

You fibber you. The compressed address leads to the same wallet and it's still a red zero, you just changed the source of the page.  
My proof.  
http://directory.io/61426087740424605227689896346135129414548009642951912170648466395300309182#5Hwwc74Mz8gKoRiQMJkRDDL2izyHpWpDbbuB6zhrq3yUZh2Q7iN  
Jude Austin (OP)
Legendary
*
Offline Offline

Activity: 1140
Merit: 1000


The Real Jude Austin


View Profile WWW
August 21, 2015, 01:30:08 AM
 #73

I wish I still had the source code for this.

My dumb ass obfuscated the code in the site and accidentally deleted the copy on my computer.

I wanted to add sentfromaddress to the query that way you could see if it was at least used before.

Buy or sell $100 of Crypto and get $10!
babylon99
Newbie
*
Offline Offline

Activity: 42
Merit: 0


View Profile
November 15, 2015, 05:14:35 AM
 #74

Very nice!
How to find a correct page with some amount of balances ?
shorena
Copper Member
Legendary
*
Offline Offline

Activity: 1498
Merit: 1520


No I dont escrow anymore.


View Profile WWW
November 15, 2015, 11:50:21 AM
 #75

Very nice!
How to find a correct page with some amount of balances ?

Stupid question. because If somebody knows it, never share it with us.
I have another question :
How much is the Ratio of total addresses in directory.io respect to total possible bitcoin addresses ?
I asked it, because i want to know, is it any worth for looking correct pages.

1:1 the site lists all possible addresses.

Im not really here, its just your imagination.
shorena
Copper Member
Legendary
*
Offline Offline

Activity: 1498
Merit: 1520


No I dont escrow anymore.


View Profile WWW
November 18, 2015, 10:27:45 AM
 #76

-snip-
How is it possible ? this means, the owner has all possible privkeys & he/she is the owner of all bitcoins .

They dont "own" the keys. A private key needs 32 byte storrage, there are 2256 private keys. Thats ~3*1054 yobibyte, way more than can be storred currently. They just generated the private keys and corresponding addresses on the fly. Thus you the person selecting the page are the random number generator for the page, which "selects" the private keys. That way they dont need to store any data and can still display all prviate keys and addresses.

Im not really here, its just your imagination.
hamdi369
Jr. Member
*
Offline Offline

Activity: 51
Merit: 2


View Profile
December 24, 2015, 07:02:23 AM
 #77

hi

just a question please?

How to install directory.io on a web server? (assuming it's a Linux Apache Php server) ?
sbtctalk
Sr. Member
****
Offline Offline

Activity: 266
Merit: 250


View Profile
December 24, 2015, 09:06:06 AM
 #78

Since the Privkeys can be calculated,then are our bitcoins safe? Is it time to move on to multisig addressess and token wallets?

13Sk3gsQ1ogrzmyt3xMVvByxcUvZr98kKN
sbtctalk
Sr. Member
****
Offline Offline

Activity: 266
Merit: 250


View Profile
December 24, 2015, 09:11:18 AM
 #79

Okay. My fears are unfounded:

http://www.coindesk.com/bitcoin-protocol-hack-joke/


13Sk3gsQ1ogrzmyt3xMVvByxcUvZr98kKN
hamdi369
Jr. Member
*
Offline Offline

Activity: 51
Merit: 2


View Profile
December 24, 2015, 03:56:19 PM
 #80

I want to use directory.io for producing random crypt key (not for a bitcoin project)
It's a good tool for produce complex cryptkey
Pages: « 1 2 3 [4] 5 6 7 8 »  All
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!