Gogs
Discovery
# Common web paths
curl -I http://TARGET/
curl http://TARGET/explore/users
curl http://TARGET/explore/reposAuthenticated Repository Enumeration
# Clone a repository after getting credentials
git clone http://USER:PASSWORD@TARGET/OWNER/REPO.git
# If the password contains special URL characters, URL-encode it first.
python3 - << 'EOF'
from urllib.parse import quote
print(quote("PASSWORD", safe=""))
EOF
git clone http://USER:URL_ENCODED_PASSWORD@TARGET/OWNER/REPO.gitCVE-2025-8110 Symlink RCE
Troubleshooting
Last updated