| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta http-equiv="Content-Security-Policy" content="img-src 'none'; report-uri resources/save-report.php"> | |
| </head> | |
| <body> | |
| <script> | |
| // This script block will trigger a violation report. | |
| var i = document.createElement('img'); | |
| i.src = '/security/resources/abe.png'; | |
| document.body.appendChild(i); | |
| </script> | |
| <script src="resources/go-to-echo-report.js"></script> | |
| </body> | |
| </html> |