Questions tagged [httpfox]

An HTTP analyzer addon for Firefox

HttpFox is an addon for Mozilla based browsers (Firefox, Seamonkey, ...) that monitors and analyzes all incoming and outgoing HTTP traffic between the browser and the web servers.

Information available per request includes:

  • Request and response headers
  • Sent and received cookies
  • Querystring parameters
  • POST parameters
  • Response body

Get the latest version from https://addons.mozilla.org/en-US/firefox/addon/6647

Project home on google code: http://code.google.com/p/httpfox/

13 questions
14
votes
2 answers

How to find out the piece of code that initiated ajax request

I have MVC view, in that tens of javascript files are included. there are some ajax requests initiated from the page. I would like to know from which particular js file the call was initiated. I spent some time exploring Firefox addons - Firebug and…
Brainchild
  • 1,814
  • 5
  • 27
  • 52
6
votes
3 answers

NS_Binding_Aborted error for ajax function

I have a link on click of which a request should go to web server and on successful execution a redirection should happen. I have used ajax for this but I am getting NS_Binding_Aborted error in HTTpFox. The code:
mrityunjay
  • 379
  • 2
  • 6
  • 13
3
votes
1 answer

Why cookie is bieng sent, even if didn't added in header?

I am trying to create a GET request using HttpRequester ( addon in firefox ). And I am analyzing packet using the Http Fox ( addon in firefox ). I have created a GET packet with following parameters url…
rbansal
  • 1,184
  • 14
  • 21
2
votes
1 answer

How can I Monitor HTTP Traffic and Get a List of URLs in C#?

Basically, what we at the company are doing right now is plainly using HttpFox in Firefox to manually get webtrends tags and values that are appended as query string in an image/gif type url that is listed whenever we type a specific url on the…
bonbon.langes
  • 1,718
  • 2
  • 22
  • 37
1
vote
1 answer

Some problems of Python crawler

And I'm just suffering from the question about python crawler. First, the websites have two different hexadecimal of Chinese chracters. I can convert one of them (which is E4BDA0E5A5BD), the other one is C4E3BAC3 which I have no method to convert,…
Windsor_Gu
  • 29
  • 2
1
vote
1 answer

Why httpfox can capture google account clear password in HTTPS?

I have installed httpfox on firefox. and I tried to capture traffic on Google Account login page, I typed a wrong password for my test, and, to my surprise, It captured clear password in https pages. But I tried fiddler on Firefox/IE, no clear data…
Edi Wang
  • 3,547
  • 6
  • 33
  • 51
0
votes
1 answer

Showing headers in QWebview Browser Pyqt Python

hi i am building a desktop application in PyQt python and have a web browser loaded in that , now i want to add functionalities of http fox(Firefox plugin) to view the loaded URLs with the request passed and other headers associated with each URL…
ricky rana
  • 57
  • 6
0
votes
1 answer

What do these numbers in brackets in the 'received' column mean in httpfox?

In httpfox I can see numbers in a pair of brackets in the received column. It only happens to some but not all traffic. What is the significance of it?
Anthony Kong
  • 37,791
  • 46
  • 172
  • 304
0
votes
2 answers

Learning PHP connect script shows constants using httpsfox

Hi I'm reading a PHP textbook. Right now I'm learning how to connect to a DB using mysqli. Here's some code from the script: DEFINE ('DB_USER', 'myname'); DEFINE ('DB_PASSWORD', 'local123'); DEFINE ('DB_HOST', 'localhost'); DEFINE ('DB_NAME',…
Doug Fir
  • 19,971
  • 47
  • 169
  • 299
0
votes
3 answers

Slim framework halt error codes not working

I have just built a restful API with Slim Framework. For error conditions I simply respond with appropriate error codes for each error case and called with $app->halt, for example: $app->halt(403, "Unauthorized"); But when I curled my API with -v…
Hutch
  • 10,392
  • 1
  • 22
  • 18
0
votes
2 answers

Identifying insecure content in secure html request

Hi, I'm debugging an https page with httpFox, looking for insecure content. There's only one insecure request on the entire page, but I can't tell what it is for? httpFox is flagging this request...it's the only "http" request on the page (the rest…
ebmudder
  • 53
  • 3
0
votes
4 answers

Safari HTTP monitor (like HttpFox) on mac

I am looking for an HTTP traffic monitor/sniffer (something like Firefox's HTTPFox) for Safari, for debugging/development purposes.I am using OSX.
Subramanian P
  • 4,365
  • 2
  • 21
  • 25
-1
votes
1 answer

USING iMACROS to monitor/record HTTP requests (image request) after running Javascript?

I am working on a project to find a tool or solution solution with iMacros that will allow me to automate a large portion of regression testing on our site. The main scenario that I'm trying to make work goes like this: Use tool iMacros to go…