File upload vulnerability code explanation
1: POST /upload.php
This means the file is being sent to the server.
2: multipart/form-data
Used when uploading files.
3: filename=”image.jpg”
This is the file name sent to the server.
The server might save it as an executable file.
4: Content-Type:image/jpeg
This tells the server files are images.

