firesheep icon indicating copy to clipboard operation
firesheep copied to clipboard

Ajax Status 302 (with solution)

Open JoniJnm opened this issue 14 years ago • 1 comments
trafficstars

In tuenti.com all ajax urls has 302 status (without a new location), and they sent the htmlOutPut. So, I have needed do this change in FiresheepWorker.js

Change if (req.status == 200) {

By if (req.status == 200 || req.status == 302) {

All works ok :-)

JoniJnm avatar Jan 21 '11 22:01 JoniJnm

This "fix" is added to FiresheepBackend.js where it belongs. Pulling to git in 30 minutes with several fixes including this.

kimocoder avatar Apr 25 '13 05:04 kimocoder