GET and POST Capture - Hsanokklis/2023-2024-Tech-journal GitHub Wiki

we will be using Rocky for this lab

Navigate to /var/www/html

Create a page called form1.php

image

Test the form in the browser

Do not submit it yet, We did not create the page that would capture the form submit.

image

Create another form called form1action.php

image

Open Burpsuite in Kali

image

  • Temporary project
  • Use burp defaults

image

image

  • go to proxy --> Open Browser

image

  • Navigate to your form1.php in Burp Browser

image

  • Fill and submit the form

image

Go back to burp application and find the packet that have your name and last name submitted as GET request.

image

Deliverable-1: Screenshot of browser's GET request with the parameters shown in burp application

image

Deliverable-2: Screenshot of server's response

image

  • Now alter your code and change the delivery method to POST in your form. Also receive the data with POST in form1action.php

image

image

  • Utilize burp application and browser to repeat the the steps 10-12 for POST method.

image

Deliverable-3: Screenshot of browser's POST request with the parameters shown in burp application

image

image