This is a static archive of our old Q&A Site. Please post any new questions and answers at ask.wireshark.org.

can i use wireshark to reverse engineer a specific http REST request?

0

the original question is asked here: http://stackoverflow.com/questions/15679883/how-to-reverse-engineer-an-http-api-call-using-rest-console

but basically i was wondering if wireshark would give me more information than chrome rest console does?

thanks!

asked 28 Mar '13, 05:23

abbood's gravatar image

abbood
1111
accept rate: 0%


2 Answers:

0

Yep, it would, because if you capture the full communication you'll see everything that is going back and forth.

What I usually do if I'm trying to mimic application behavior is that I do a capture of the original request and use that to compare subsequent requests that I do with my own software. You can quite easily see what parts are different when you have to packets containing the requests.

answered 28 Mar '13, 06:35

Jasper's gravatar image

Jasper ♦♦
23.8k551284
accept rate: 18%

0

i was wondering if wireshark would give me more information than chrome rest console does?

No it won't.

Your problem is the lack of an authenticated session, as already mentioned on stackoverflow.

After your authentication in the browser (login form), you received a rather long session cookie, and that information is already shown by chrome console. Wireshark will not show any more information in your case. Unless you send a valid session cookie alongside with your "hand crafted POST request", you will not get a valid answer from the server, as it will be unable to identify the user session within the application.

You should check their API documentation to figure out how to access the data on their site.

http://www.zoominfo.com/business/products/zoominfo-api

Regards
Kurt

answered 28 Mar '13, 15:14

Kurt%20Knochner's gravatar image

Kurt Knochner ♦
24.8k1039237
accept rate: 15%

edited 28 Mar '13, 15:19