firesheep
firesheep copied to clipboard
Ajax Status 302 (with solution)
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 :-)
This "fix" is added to FiresheepBackend.js where it belongs. Pulling to git in 30 minutes with several fixes including this.