[GH-ISSUE #62] Still not working #46

Open
opened 2026-03-03 15:57:00 +03:00 by kerem · 2 comments
Owner

Originally created by @mim612 on GitHub (Dec 21, 2025).
Original GitHub issue: https://github.com/mrh0wl/Cloudmare/issues/62

module thirdparty.urllib3.packages.six.moves is still not working.
Are developers dead or something?

Originally created by @mim612 on GitHub (Dec 21, 2025). Original GitHub issue: https://github.com/mrh0wl/Cloudmare/issues/62 module `thirdparty.urllib3.packages.six.moves` is still not working. Are developers dead or something?
Author
Owner

@ankitsaini1602 commented on GitHub (Dec 24, 2025):

same problem!

<!-- gh-comment-id:3689394965 --> @ankitsaini1602 commented on GitHub (Dec 24, 2025): same problem!
Author
Owner

@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

<!-- gh-comment-id:3689420770 --> @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
Sign in to join this conversation.
No labels
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/Cloudmare#46
No description provided.