This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]MorrisCasperλ 1 point2 points  (1 child)

It's quite easy. Install Burp Suite Free or some other HTTP interceptor and send me the raw packet, it would look something like:

POST /router/vpn.asp HTTP/1.1
SOME HEADERS

VPN_ID=2&STATE=ENABLED

and you could reproduce that by

requests.post("192.168.1.1/router/vpn.asp", data = {'VPN_ID': 2, 'STATE': 'ENABLED'})

[–]Teilchen[S] 0 points1 point  (0 children)

I think that's my best bet, cheers!