Skip to content

Release v1.0.3b

Latest
Compare
Choose a tag to compare
@exploitagency exploitagency released this 28 Dec 20:22
· 8 commits to master since this release

Version 1.03b, released December 28, 2017
- Apply bug fix by cmisare


###Password protecting private keys:###
Linux: ./vanitygen -e Fgrs
Windows: vanitygen.exe -e Fgrs

Difficulty: 19627
Enter new password:
Verifying - Enter new password:
Pattern: Fgrs
Address: FgRsguD6fqcHM7HXHG6WDqSg78NrdRB4Bz
Protkey: PsTaTXeXSLDrVc8bjJVg6uTvDhdziG5jHXyM6jC1j1wf4EFCt5n5djP5rBbtnztkvQLQ


###Decrypting password protected private keys:###
Linux: ./keyconv -d PsTaTXeXSLDrVc8bjJVg6uTvDhdziG5jHXyM6jC1j1wf4EFCt5n5djP5rBbtnztkvQLQ
Windows: keyconv.exe -d PsTaTXeXSLDrVc8bjJVg6uTvDhdziG5jHXyM6jC1j1wf4EFCt5n5djP5rBbtnztkvQLQ

Enter import password:
Address: FgRsguD6fqcHM7HXHG6WDqSg78NrdRB4Bz
Privkey: 5JvKJy4XSeGRHapyTich5oVYiwANPbzjvFiHXSafawU4eNcD5Wt


RSA Key for GPG Verification: 1337C0DE3F42AAE20EBF166973D36800AABFACE4

gpg --keyserver keys.gnupg.net --recv 1337C0DE3F42AAE20EBF166973D36800AABFACE4
gpg --verify linux-binary.tar.gz.sig
gpg: assuming signed data in 'linux-binary.tar.gz'
gpg: Signature made Wed 15 Feb 2017 05:13:02 AM EST
gpg: using RSA key 1337C0DE3F42AAE20EBF166973D36800AABFACE4
gpg: Good signature from "Corey Harding (GitHub: ExploitAgency)


Fix libcrypto.so.1.0.2 error(Debian, Ubuntu)

Error:
./vanitygen: error while loading shared libraries: libcrypto.so.1.0.2: cannot open shared object file: No such file or directory

Fix it by issuing the below commands, in turn either installing or downgrading libcrypto. The error comes from an incompatibility with the newer version of libcrypto. Most older projects have this same bug.

wget http://ftp.us.debian.org/debian/pool/main/g/glibc/libc6-udeb_2.24-11+deb9u3_amd64.udeb
dpkg -i libc6-udeb_2.24-11+deb9u3_amd64.udeb
wget http://ftp.us.debian.org/debian/pool/main/o/openssl1.0/libcrypto1.0.2-udeb_1.0.2l-2+deb9u3_amd64.udeb
dpkg -i libcrypto1.0.2-udeb_1.0.2l-2+deb9u3_amd64.udeb
rm libc6-udeb_2.24-11+deb9u3_amd64.udeb && rm libcrypto1.0.2-udeb_1.0.2l-2+deb9u3_amd64.udeb