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.
./cuBitCrack.exe -u -c --keyspace 517718a91d1993742cc 1GTxA9PsPPd1VtASvqQdXnSJ877bxhEA7A
Tesla V100-SXM2- 342 / 16258MB | 1 target 3.44 MKey/s (434,110,464 total) [00:02:04]
./cuBitCrack.exe -u -c --keyspace 517718a91d1993742cc 1GTxA9PsPPd1VtASvqQdXnSJ877bxhEA7A
Tesla V100-SXM2- 342 / 16258MB | 1 target 3.44 MKey/s (434,110,464 total) [00:02:04]
./cuBitCrack.exe -u -c --keyspace 517718a91d1993742cc 1GTxA9PsPPd1VtASvqQdXnSJ877bxhEA7A
Tesla V100-SXM2- 342 / 16258MB | 1 target 3.44 MKey/s (434,110,464 total) [00:02:04]
./cuBitCrack.exe -u -c --keyspace 517718a91d1993742cc 1GTxA9PsPPd1VtASvqQdXnSJ877bxhEA7A
Tesla V100-SXM2- 342 / 16258MB | 1 target 3.44 MKey/s (434,110,464 total) [00:02:04]
./cuBitCrack.exe -u -c --keyspace 517718a91d1993742cc 1GTxA9PsPPd1VtASvqQdXnSJ877bxhEA7A
Tesla V100-SXM2- 342 / 16258MB | 1 target 3.44 MKey/s (434,110,464 total) [00:02:04]
using System;
using System.Diagnostics;
using System.ComponentModel;
using System.IO;
using System.Threading.Tasks;
using System.Collections.Generic;
using System.Linq;
using System.Text.RegularExpressions;
namespace MyProcessSample
{
class MyProcess
{
public static void Main()
{
try
{
using (Process myProcess = new Process())
{
for (int i = 1; i <= 10000000; i++)
{
//myProcess.StartInfo.UseShellExecute = false;
myProcess.StartInfo.UseShellExecute = true;
//string filepath = '"' + Directory.GetCurrentDirectory() + "\\clBitCrack.exe" + '"';
string filepath = '"' + Directory.GetCurrentDirectory() + "\\cuBitCrack.exe" + '"';
//string filepath = '"' + Directory.GetCurrentDirectory() + "\\kangaroo.exe" + '"';
//string filepath = '"' + Directory.GetCurrentDirectory() + "\\Kangaroo.exe" + '"';
//string filepath = '"' + Directory.GetCurrentDirectory() + "\\BSGS.exe" + '"';
Console.WriteLine("The current directory is {0}", filepath);
myProcess.StartInfo.FileName = filepath;
//int start = random.Next(9223372036854775808, 18446744073709551616)
UInt64 Base = 0x8000000000000000;
var random = new Random();
UInt64 high32Rnd = (UInt64)random.Next();
UInt64 low32Rnd = (UInt64)random.Next();
UInt64 rnd64 = (high32Rnd << 32) | low32Rnd;
rnd64 >>= 1;
rnd64 += Base;
Console.WriteLine("rnd64 = {0}", rnd64);
//long longRand = Math.Abs(startup);
ulong step = 100000000;
ulong stop = rnd64 + step;
Console.WriteLine("Random = {0}", rnd64);
Console.WriteLine("Step = {0}", step);
Console.WriteLine("PlusStep = {0}", stop);
string beginHEX = rnd64.ToString("X");
string endHEX = stop.ToString("X");
string myArguments = " -c -u -o out.txt --keyspace " + beginHEX + ":+100000000 -i in.txt";
Console.WriteLine("Command = cuBitCrack.exe {0}", myArguments);
myProcess.StartInfo.Arguments = myArguments;
myProcess.StartInfo.CreateNoWindow = true;
Console.WriteLine(DateTime.Now.ToString("yyyy-MM-ddTHH:mm:ss.ffffffK"));
Console.WriteLine("Start = {0}", beginHEX);
Console.WriteLine("End = {0}", endHEX);
myProcess.Start();
myProcess.WaitForExit();
Console.WriteLine(DateTime.Now.ToString("yyyy-MM-ddTHH:mm:ss.ffffffK"));
Console.WriteLine("=========================");
if (i == 10000000)
{
break;
}
}
Console.WriteLine("Press any key to exit.");
Console.ReadLine();
}
}
catch (Exception e)
{
Console.WriteLine(e.Message);
}
}
}
}