mirror of https://github.com/it-security-kassel-nordhessen/meetup.git

sergej
13.14.2018 77c2fcc0c23f1d7ffabf183f9ab543af969fa2da
meetup 2018_09_12_29th
1 files added
19 ■■■■■ changed files
2018_09_12_29th/escape-style-javascript-events.html 19 ●●●●● patch | view | raw | blame | history
2018_09_12_29th/escape-style-javascript-events.html
New file
@@ -0,0 +1,19 @@
<!DOCTYPE html>
<html>
  <head>
    <title>Titel der Webseite</title>
    <!-- weitere Kopfinformationen -->
    <!-- Kommentare werden im Browser nicht angezeigt. -->
    <style>
    .moobefore::after {
       content: '&quot;&#x27;'
    }
    </style>
  </head>
  <body onload="//alert('&quot;&#x27;')">  <!-- escapting greift nicht hiert -->
    <script>//alert("&quot;&quot;");</script>
    <div style="">Inhalt der Webseite</div>
    <div class="moobefore" style="content:'&quot;&#x27;'" />  <!-- escapting greift nicht hiert -->
  </body>
</html>