mirror of
https://github.com/mrh0wl/Cloudmare.git
synced 2026-04-26 02:15:58 +03:00
[GH-ISSUE #62] Still not working #46
Labels
No labels
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/Cloudmare#46
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @mim612 on GitHub (Dec 21, 2025).
Original GitHub issue: https://github.com/mrh0wl/Cloudmare/issues/62
module
thirdparty.urllib3.packages.six.movesis still not working.Are developers dead or something?
@ankitsaini1602 commented on GitHub (Dec 24, 2025):
same problem!
@ankitsaini1602 commented on GitHub (Dec 24, 2025):
run :
sudo apt install python3-aiohttp
python3 -m venv .venv
source .venv/bin/activate
1️⃣ Install six in your venv
pip install six
2️⃣ Go to Cloudmare root
cd /root/bugbounty/tools/Cloudmare
3️⃣ Create both required paths
mkdir -p thirdparty/urllib3/packages/six
mkdir -p thirdparty/six
4️⃣ Find where six.py is installed
python3 - << 'EOF'
import six
print(six.file)
EOF
Copy the printed path.
5️⃣ Copy six.py into BOTH locations
(Replace the path below with what you got in step 4)
cp /root/bugbounty/tools/Cloudmare/.venv/lib/python3.12/site-packages/six.py thirdparty/urllib3/packages/six/init.py
cp /root/bugbounty/tools/Cloudmare/.venv/lib/python3.12/site-packages/six.py thirdparty/six/init.py
6️⃣ Verify
ls thirdparty/urllib3/packages/six
ls thirdparty/six
Both must show:
init.py
7️⃣ Run Cloudmare
python3 Cloudmare.py