Creating malicious QR codes for hacking phones and other devices

Carding 4 Carders

Professional
Messages
2,728
Reaction score
1,574
Points
113
qrgen.png


Installing QRGen

First, we need to download the repository from github.

Code:
git clone https://github.com/h0nus/QRGen.git

Git.png


After downloading, change the directory using cd.

Code:
cd /QRGen

2-2.png


Let's see the file README.md.

3-1.png


Now we need to install some requirements and libraries that are required for QRGen.

Code:
pip3 install -r requirements.txt

If this command doesn't work, there is another alternative.python3 -m pip install -r requirements.txt

Creating a malicious QRCode from a payload

Now that we've installed QRGen, we'll run It to generate our sample malware load.

Python:
python3 qrgen.py

1-23.png


As you can see, generating a payload is easy.

Python:
python3 qrgen.py -l 5

1-24.png


A series of QR codes will be generated, and the last one created will automatically open.

Python:
cd genqr

1-25.png


Let's scan our QR code and take a look.

1-6.jpg


Note: Information for research, training, or auditing purposes.
 
Top