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
Test the form in the browser
Do not submit it yet, We did not create the page that would capture the form submit.
Create another form called form1action.php
Open Burpsuite in Kali
- Temporary project
- Use burp defaults
- go to
proxy-->Open Browser
- Navigate to your
form1.phpin Burp Browser
- Fill and submit the form
Go back to burp application and find the packet that have your name and last name submitted as GET request.
Deliverable-1: Screenshot of browser's GET request with the parameters shown in burp application
Deliverable-2: Screenshot of server's response
- Now alter your code and change the delivery method to POST in your form. Also receive the data with POST in form1action.php
- Utilize burp application and browser to repeat the the steps 10-12 for POST method.