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

4 KiB

JavaScript Execution XS Leak

htARTE (HackTricks AWS Red Team Expert)를 통해 AWS 해킹을 처음부터 전문가까지 배워보세요!
```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) }); ``` 이전 `/guessing` 페이지로의 각 가능성을 테스트하기 위해 iframe을 생성하는 메인 페이지입니다. ```html <html> <head>

</head>

hello

</html> ```
htARTE (HackTricks AWS Red Team Expert)를 통해 AWS 해킹을 처음부터 전문가까지 배워보세요!