It was the Bitcointalk forum that inspired us to create Bitcointalksearch.org - Bitcointalk is an excellent site that should be the default page for anybody dealing in cryptocurrency, since it is a virtual gold-mine of data. However, our experience and user feedback led us create our site; Bitcointalk's search is slow, and difficult to get the results you need, because you need to log in first to find anything useful - furthermore, there are rate limiters for their search functionality.
The aim of our project is to create a faster website that yields more results and faster without having to create an account and eliminate the need to log in - your personal data, therefore, will never be in jeopardy since we are not asking for any of your data and you don't need to provide them to use our site with all of its capabilities.
We created this website with the sole purpose of users being able to search quickly and efficiently in the field of cryptocurrency so they will have access to the latest and most accurate information and thereby assisting the crypto-community at large.
Q: What if I want to check a specific range on directory.io?
A: Each page on directory.io lists 128 private keys and the
corresponding uncompressed and compressed addresses. The LBC checks
in blocks/pages of 20bit size (1048576 PKs) and is therefore like
checking 8192 pages on directory.io
Say you would like to use LBC to check all that is on the pages
569716666483 to 569716830323 on directory.io, you would call
LBC -p 69545491-69545512 -c 0
because 69545491 = int(569716666483/8192) and
69545512 = int(569716830323/8192) + 1
Takes a little over 2 minutes on a modern notebook and in fact
you have checked a bigger range 569716662272-569716834304
(172032 pages) on directory.io
lbc_from = int(directory.io_from/8192)
lbc_to = int(directory.io_to/8192) + 1
and then just start LBC with
LBC -p lbc_from-lbc_to -c
perl LBC -c 1 -t 1
Q: Is this software secure?
A: If you have a genuine version - yes. To make sure, never download
anything that claims to be LBC from any other source than
http://lbc.cryptoguru.org:5000/download
If you want to be extra-sure, check the md5sums at
http://lbc.cryptoguru.org:5000/downloads/LBC-client/md5sums
for the MD5 sums of all relevant files. On your command line,
verify the files by doing
> md5sum "filename"
Q: No, I mean can I trust *you*?
A: Send me 100BTC and I will send them back to you. After this, answer
the question for yourself. The LBC is compiled Perl source - it's
scattered, but ultimately you can look at it in the text
editor. The generate binary is a derivative of
https://github.com/saracen/bitcoin-all-key-generator
with just added command line parsing for block offsets.
Other than that, observe the LBC thread(s) on bitcointalk.org
for any complaints. If in doubt, don't use the software.