All Projects → mzollin → qr-pirate

mzollin / qr-pirate

Licence: MIT license
crawl QR-codes from search engines and look for bitcoin private keys

Programming Languages

python
139335 projects - #7 most used programming language
shell
77523 projects

Projects that are alternatives of or similar to qr-pirate

Jsqr
A pure javascript QR code reading library. This library takes in raw images and will locate, extract and parse any QR code found within.
Stars: ✭ 2,722 (+4593.1%)
Mutual labels:  qrcode, qr-code, qrcode-reader
paper-store
Cold store small files on paper as QR codes -- PGP keys, Bitcoin keys, Tox keys or any other small files in general.
Stars: ✭ 28 (-51.72%)
Mutual labels:  qrcode, qr-code, bitcoin-wallet
quagga2-reader-qr
Quagga2 sample external reader for QR codes
Stars: ✭ 20 (-65.52%)
Mutual labels:  qrcode, qr-code, qrcode-reader
Qrcode
💮 amazing QRCode generator in Python (supporting animated gif) - Python amazing 二维码生成器(支持 gif 动态图片二维码)
Stars: ✭ 8,613 (+14750%)
Mutual labels:  qrcode, qr-code
Instascan
HTML5 QR code scanner using your webcam
Stars: ✭ 2,657 (+4481.03%)
Mutual labels:  qrcode, qr-code
Ngx Kjua
Angular QR-Code generator component using kjua.
Stars: ✭ 51 (-12.07%)
Mutual labels:  qrcode, qr-code
Privatekeyvault
Make Instructions: Airgapped raspberry pi computer for working with blockchains featuring LUKS full disk encryption and using qr-codes to pass encrypted files and offline transaction instructions across the airgap.
Stars: ✭ 29 (-50%)
Mutual labels:  qrcode, qr-code
Awesome Qr.js
An awesome QR code generator written in JavaScript.
Stars: ✭ 1,247 (+2050%)
Mutual labels:  qrcode, qr-code
Qr Ascii
A small library to generate QR codes with ascii
Stars: ✭ 63 (+8.62%)
Mutual labels:  qrcode, qr-code
Qrbtf
An art QR code (qrcode) beautifier. 艺术二维码生成器。https://qrbtf.com
Stars: ✭ 1,391 (+2298.28%)
Mutual labels:  qrcode, qr-code
React Qr Svg
React component for rendering SVG QR codes
Stars: ✭ 134 (+131.03%)
Mutual labels:  qrcode, qr-code
Qr Code Scanner
📠 A simple, fast and useful progressive web application
Stars: ✭ 982 (+1593.1%)
Mutual labels:  qrcode, qr-code
Awesomeqrcode
An awesome QR code generator for Android.
Stars: ✭ 1,718 (+2862.07%)
Mutual labels:  qrcode, qr-code
Barcode
barcode.php - Generate barcodes from a single PHP file. MIT license.
Stars: ✭ 141 (+143.1%)
Mutual labels:  qrcode, qr-code
Offline Qr Code
📱 Browser add-on allowing you to quickly generate a QR code offline with the URL of the open tab or other text!
Stars: ✭ 193 (+232.76%)
Mutual labels:  qrcode, qr-code
Qrcode
QR-code encoder/decoder (no image recognition)
Stars: ✭ 34 (-41.38%)
Mutual labels:  qrcode, qr-code
Vue Qrcode Reader
A set of Vue.js components for detecting and decoding QR codes.
Stars: ✭ 1,240 (+2037.93%)
Mutual labels:  qrcode, qr-code
Segno
Python QR Code and Micro QR Code encoder
Stars: ✭ 144 (+148.28%)
Mutual labels:  qrcode, qr-code
React Qr Reader
React component for reading QR codes from webcam.
Stars: ✭ 716 (+1134.48%)
Mutual labels:  qrcode, qr-code
Vue Qrcode
QR code component for Vue.js
Stars: ✭ 724 (+1148.28%)
Mutual labels:  qrcode, qr-code

qr-pirate

qr-pirate logo crawl QR-codes from search engines and look for Bitcoin wallet private keys
License: MIT Updates Python3

Disclaimer: You probably won't find any private keys of wallets that still contain Bitcoins. If you do, please leave them where they are, this tool is for demonstration purposes only. Also don't put photos of your private keys on the internet.


Setup and usage:

  • sudo apt install python3-dev python3-setuptools python3-pip libzbar0 libzbar-dev
  • pip3 install -r requirements.txt

example usage: ./qrpirate.sh "bitcoin qr"
output: keylist_unique.txt
The balance of the wallet associated with each found private key will be output on the terminal.

Details

You can use the qrpirate.sh bash script to automate the whole process from search keyword input to private key output, or use the qrcrawler.py and qr2key.py tools on their own. The bash script automates the following steps:

  1. Calls qrcrawler.py with the provided search keywords as an argument to crawl google, bing and baidu for images. They will be downloaded to a qrbooty folder with subfolders for every search engine.

  2. Renames and moves the files up from the subfolders to the qrbooty folder with unique names.

  3. Calls qr2key.py to scan the downloaded images in the qrbooty folder for QR-codes and checks if they contain Bitcoin wallet private keys. The keys will be saved in a keylist.txt file.

  4. Removes duplicates in keylist.txt and outputs the unique keys to a keylist_unique.txt file

Python dependencies:

  • icrawler
  • pillow
  • zbarlight
  • pycoin
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].