Browse Source

Merge pull request #89 from wipedlifepotato/master

Vain ressurect.
pull/94/head
orignal 10 months ago committed by GitHub
parent
commit
3b6a3cbabe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 7
      Makefile
  2. 140
      vain.cpp

7
Makefile

@ -43,8 +43,9 @@ else
LDFLAGS += -s -static LDFLAGS += -s -static
endif endif
all: $(I2PD_LIB) keygen keyinfo famtool routerinfo regaddr regaddr_3ld i2pbase64 offlinekeys b33address regaddralias x25519 verifyhost all: $(I2PD_LIB) vain keygen keyinfo famtool routerinfo regaddr regaddr_3ld i2pbase64 offlinekeys b33address regaddralias x25519 verifyhost
vain: vain.o $(I2PD_LIB)
$(CXX) -o vain $(LDFLAGS) vain.o $(LDLIBS)
routerinfo: routerinfo.o $(I2PD_LIB) routerinfo: routerinfo.o $(I2PD_LIB)
$(CXX) -o routerinfo $(LDFLAGS) routerinfo.o $(LDLIBS) $(CXX) -o routerinfo $(LDFLAGS) routerinfo.o $(LDLIBS)
@ -100,7 +101,7 @@ clean-obj:
rm -f $(wildcard *.o) rm -f $(wildcard *.o)
clean-bin: clean-bin:
rm -f b33address famtool i2pbase64 keygen keyinfo offlinekeys regaddr regaddr_3ld regaddralias routerinfo x25519 verifyhost rm -f b33address famtool i2pbase64 keygen keyinfo offlinekeys regaddr regaddr_3ld regaddralias routerinfo x25519 verifyhost vain
clean: clean-i2pd clean-obj clean-bin clean: clean-i2pd clean-obj clean-bin

140
vain.cpp

@ -1,6 +1,10 @@
#include "vanity.hpp" #include "vanity.hpp"
#include<regex> #include<regex>
#include<getopt.h> #include<getopt.h>
#include<string>
#include<boost/filesystem.hpp>
//#include<format> // is not supports for me
/// Crypto InitCrypto. TODO: to makefile/another place get the macro /// Crypto InitCrypto. TODO: to makefile/another place get the macro
#ifndef PRECOMPUTATION_CRYPTO #ifndef PRECOMPUTATION_CRYPTO
#define PRECOMPUTATION_CRYPTO false #define PRECOMPUTATION_CRYPTO false
@ -15,6 +19,8 @@
#define FORCE_CRYPTO false #define FORCE_CRYPTO false
#endif #endif
#define DEF_OUT_FILE "private.dat"
static struct{ static struct{
bool reg=false; bool reg=false;
int threads=-1; int threads=-1;
@ -156,10 +162,10 @@ Orignal is sensei of crypto ;)
uint32_t ll[8]; uint32_t ll[8];
} hash; } hash;
*/ */
uint8_t b[391]; uint8_t b[391]; // b length is 391.
uint32_t hash[8]; uint32_t hash[8];
memcpy (b, buf, 391); memcpy (b, buf, 391); // we copy in b our buf, that we give in function.
auto len = strlen (prefix); auto len = strlen (prefix);
// precalculate first 5 blocks (320 bytes) // precalculate first 5 blocks (320 bytes)
@ -174,7 +180,7 @@ Orignal is sensei of crypto ;)
uint32_t lastW[64]; uint32_t lastW[64];
CalculateW (lastBlock, lastW); CalculateW (lastBlock, lastW);
uint32_t * nonce = (uint32_t *)(b+320); uint32_t * nonce = (uint32_t *)(b+320); // our nonce is place in memory, where is b after 320 bytes (characters)
(*nonce) += id_thread*throughput; (*nonce) += id_thread*throughput;
char addr[53]; char addr[53];
@ -204,13 +210,14 @@ Orignal is sensei of crypto ;)
FoundNonce=*nonce; FoundNonce=*nonce;
// free(hash); // free(hash);
// free(b); // free(b);
// From there place we get a nonce, for some one a byte.
return true; return true;
} }
(*nonce)++; (*nonce)++;
hashescounter++; hashescounter++;
if (found) if (found) // for another threads
{ {
// free(hash); // free(hash);
// free(b); // free(b);
@ -225,14 +232,14 @@ Orignal is sensei of crypto ;)
void usage(void){ void usage(void){
const constexpr char * help="vain pattern [options]\n" constexpr auto help="vain pattern [options]\n"
"-h --help help menu\n" "-h --help help menu\n"
"-r --reg regexp instead just text pattern\n" "-r --reg regexp instead just text pattern\n"
"--threads -t (default count of system)\n" "--threads -t (default count of system)\n"
"--signature -s (signature type)\n" //"--signature -s (signature type)\n"
"-o --output output file(default private.dat)\n" "-o --output output file(default " DEF_OUT_FILE ")\n"
"--usage usage\n" //"--usage usage\n"
//"--prefix -p\n" //"--prefix -p\n"
""; "";
puts(help); puts(help);
} }
@ -246,18 +253,18 @@ void parsing(int argc, char ** args){
{"threads", required_argument, 0, 't'}, {"threads", required_argument, 0, 't'},
{"signature", required_argument,0,'s'}, {"signature", required_argument,0,'s'},
{"output", required_argument,0,'o'}, {"output", required_argument,0,'o'},
{"usage", no_argument,0,0}, //{"usage", no_argument,0,0},
{0,0,0,0} {0,0,0,0}
}; };
int c; int c;
while( (c=getopt_long(argc,args, "hrt:s:o:", long_options, &option_index))!=-1){ while( (c=getopt_long(argc,args, "hrt:s:o:", long_options, &option_index))!=-1){
switch(c){ switch(c){
case 0: //case 0:
if ( std::string(long_options[option_index].name) == std::string("usage") ){ // if ( std::string(long_options[option_index].name) == std::string("usage") ){
usage(); // usage();
exit(1); // exit(1);
} // }
case 'h': case 'h':
usage(); usage();
exit(0); exit(0);
@ -277,7 +284,7 @@ void parsing(int argc, char ** args){
case '?': case '?':
std::cerr << "Undefined argument" << std::endl; std::cerr << "Undefined argument" << std::endl;
default: default:
std::cerr << args[0] << " --usage / --help" << std::endl; std::cerr << args[0] << "--help" << std::endl;
exit(1); exit(1);
break; break;
} }
@ -295,7 +302,9 @@ int main (int argc, char * argv[])
usage(); usage();
return 0; return 0;
} }
parsing( argc > 2 ? argc-1 : argc, argc > 2 ? argv+1 : argv); parsing( argc > 2 ? argc-1 : argc, argc > 2 ? argv+1 : argv); // parsing is was there.
// if argc size more than 2. nameprogram is 1. and 2 is prefix. if not there is will be flags like regex
// TODO: ?
// //
if(!options.reg && !check_prefix( argv[1] )) if(!options.reg && !check_prefix( argv[1] ))
{ {
@ -323,9 +332,49 @@ int main (int argc, char * argv[])
return 0; return 0;
} }
/////////////// ///////////////
// if threads less than 0, then we get from system count of CPUs cores
if(options.threads <= 0)
{
options.threads = std::thread::hardware_concurrency(); // thx for acetone. lol
//
//#if defined(WIN32)
// SYSTEM_INFO siSysInfo;
// GetSystemInfo(&siSysInfo);
// options.threads = siSysInfo.dwNumberOfProcessors;
//#elif defined(_SC_NPROCESSORS_CONF)
// options.threads = sysconf(_SC_NPROCESSORS_CONF);
//#elif defined(HW_NCPU)
// int req[] = { CTL_HW, HW_NCPU };
// size_t len = sizeof(options.threads);
// v = sysctl(req, 2, &options.threads, &len, NULL, 0);
//#else
// options.threads = 1;
//#endif
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Isntead proccess flipper?
if ( !std::regex_match( std::string(argv[1]), std::regex("[a-zA-Z0-9\\.]{1,}")) ) {
std::cerr << "Please, change the outputfile name" << std::endl;
}
auto keys = i2p::data::PrivateKeys::CreateRandomKeys (options.signature); auto keys = i2p::data::PrivateKeys::CreateRandomKeys (options.signature);
// IDK type, and don't want to check. so...
auto createDumpFile = [/*keys*/](std::string outFile, i2p::data::PrivateKeys keys){
std::cout <<" Create a outFile " << outFile << std::endl;
std::ofstream f(outFile, std::ofstream::binary | std::ofstream:: out);
if (!f) {
std::cerr << "Can't to create a dump file before search address" << std::endl;
exit(1);
}
size_t len = keys.GetFullLen ();
uint8_t * buf = new uint8_t[len];
len = keys.ToBuffer (buf, len);
f.write ((char *)buf, len);
delete[] buf;
}; // is double of code. we can found simillar in keygen.cpp. WE would to create a library like
// libi2pdtools
// TODO: create libi2pd_tools
// If file not exists we create a dump file. (a bug was found in issues)
switch(options.signature) switch(options.signature)
{ {
case i2p::data::SIGNING_KEY_TYPE_DSA_SHA1: case i2p::data::SIGNING_KEY_TYPE_DSA_SHA1:
@ -360,59 +409,64 @@ int main (int argc, char * argv[])
case i2p::data::SIGNING_KEY_TYPE_GOSTR3410_CRYPTO_PRO_A_GOSTR3411_256: case i2p::data::SIGNING_KEY_TYPE_GOSTR3410_CRYPTO_PRO_A_GOSTR3411_256:
break; break;
} }
// there we gen key to buffer. That we mem allocate...
KeyBuf = new uint8_t[keys.GetFullLen()]; KeyBuf = new uint8_t[keys.GetFullLen()];
keys.ToBuffer (KeyBuf, keys.GetFullLen ()); keys.ToBuffer (KeyBuf, keys.GetFullLen ());
/// there was some things for cpu 665% usage, but is not helpful even
if(options.threads <= 0)
{
#if defined(WIN32)
SYSTEM_INFO siSysInfo;
GetSystemInfo(&siSysInfo);
options.threads = siSysInfo.dwNumberOfProcessors;
#elif defined(_SC_NPROCESSORS_CONF)
options.threads = sysconf(_SC_NPROCESSORS_CONF);
#elif defined(HW_NCPU)
int req[] = { CTL_HW, HW_NCPU };
size_t len = sizeof(options.threads);
v = sysctl(req, 2, &options.threads, &len, NULL, 0);
#else
options.threads = 1;
#endif
}
std::cout << "Start vanity generator in " << options.threads << " threads" << std::endl; std::cout << "Start vanity generator in " << options.threads << " threads" << std::endl;
// there we start to change byte in our private key. we can change another bytes too
unsigned short attempts = 0; // but we just change 1 byte in all key. So. TODO: change all bytes not one?
unsigned short attempts = 0;// it can be disabled, it's just for a statistic. For CPU this is a trash?
while(!found) while(!found)
{//while {//while
{//stack(for destructors(vector/thread)) {//stack(for destructors(vector/thread))
std::vector<std::thread> threads(options.threads); std::vector<std::thread> threads(options.threads);
unsigned long long thoughtput = 0x4F4B5A37; unsigned long long thoughtput = 0x4F4B5A37; // is a magic number.
for ( unsigned int j = options.threads;j--;) for ( unsigned int j = options.threads;j--;)
{ {
// our buf is our key, but in uint8 type, unsigned integ... another argument
// is our prefix that we search in address
// and j is magic number, is thread id.
// thoughtput is our magic number that we increment on 1000 everytime
// so we just change a one a byte in key and convert private key to address
// after we check it.
threads[j] = std::thread(thread_find,KeyBuf,argv[1],j,thoughtput); threads[j] = std::thread(thread_find,KeyBuf,argv[1],j,thoughtput);
thoughtput+=1000; thoughtput+=1000;
}//for }//for
//There will be proccessFlipper by accetone
// if I correctly understand it's drop a payload things in a prefix/search data
// or simmilar. We can just use regex. I would to use regex
// So I put it ^^^
for(unsigned int j = 0; j < (unsigned int)options.threads;j++) for(unsigned int j = 0; j < (unsigned int)options.threads;j++)
threads[j].join(); threads[j].join();
if(FoundNonce == 0) if(FoundNonce == 0)
{ {
RAND_bytes( KeyBuf+MutateByte , 90 ); RAND_bytes( KeyBuf+MutateByte , 90 ); // FoundNonce is
std::cout << "Attempts #" << ++attempts << std::endl; std::cout << "Attempts #" << ++attempts << std::endl;
} }
}//stack }//stack
}//while }//while
// before we write result we would to create private.dat a file. dump file. we can use for it keygen
// so.
memcpy (KeyBuf + MutateByte, &FoundNonce, 4); memcpy (KeyBuf + MutateByte, &FoundNonce, 4);
std::cout << "Hashes: " << hashescounter << std::endl; std::cout << "Hashes: " << hashescounter << std::endl;
if(options.outputpath.size() == 0) options.outputpath="private.dat"; // IDK. what for acetone change this line to if (options.output...empty() ... assign
// cplusplus.com/reference/string/string/assign yes we can. but I would don't change this
//if(options.outputpath.size() == 0) options.outputpath = DEF_OUT_FILE;
if ( options . outputpath . empty () ) options . outputpath . assign ( DEF_OUT_FILE ) ;
// there we generate a key, like as in keygen.cpp
// before a mining we would to create a dump file
std::cout << "outpath for a now: " << options.outputpath << std::endl;
if( ! boost::filesystem::exists(options.outputpath) ) createDumpFile(options.outputpath, keys);
std::ofstream f (options.outputpath, std::ofstream::binary | std::ofstream::out); std::ofstream f (options.outputpath, std::ofstream::binary | std::ofstream::out);
if (f) if (f)

Loading…
Cancel
Save