hacktricks/pentesting-web/xs-search/javascript-execution-xs-leak.md
2024-02-10 13:03:23 +00:00

3.9 KiB

Esecuzione di JavaScript XS Leak

Impara l'hacking di AWS da zero a esperto con htARTE (HackTricks AWS Red Team Expert)!
```javascript // Code that will try ${guess} as flag (need rest of the server code app.get('/guessing', function(req, res) { let guess = req.query.guess let page = `<html> <head> </head>

hello2

</html>` res.send(page) }); ``` Pagina principale che genera iframes alla pagina precedente `/guessing` per testare ogni possibilità ```html <html> <head>

</head>

hello

</html> ```
Impara l'hacking di AWS da zero a eroe con htARTE (HackTricks AWS Red Team Expert)!