Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 264 Bytes

cheat.md

File metadata and controls

20 lines (15 loc) · 264 Bytes

Cheat

Exemple Injection SQL

" OR 1 LIMIT 1; -- 

Exemple XSS

<script>alert('Hello XSS')</script>
<script>
    var e = document.getElementById('winner');
    e.innerHTML='Winner: fabrice1618';
</script>