- Web Browsing
- Multimedia
It worked well with all browsers on Windows (including firefox) and it just would not work with firefox on Linux.
Message from internet banking
After debugging the problem for a couple of hours (thanks to the built-in javascript debugger that comes along with the mozilla suite). I finally figured out the exact cause of the problem. The problem was that the banking js code was trying to be smart in trying to support browsers.
After debugging the problem for a couple of hours (thanks to the built-in javascript debugger that comes along with the mozilla suite). I finally figured out the exact cause of the problem. The problem was that the banking js code was trying to be smart in trying to support browsers.
If you have the same problem, then add the following code to your $HOME/.mozilla/firefox/.../prefs.js
user_pref("general.appname.override", "Microsoft Internet Explorer");
user_pref("general.appversion.override", "4.0 (compatible; MSIE 6.0+;
Windows NT 5.1)");
user_pref("general.platform.override", "Win32");
What these preferences do is that they change the navigator.appName, navigator.platform and navigator.appVersion returned by the javascript code running in the browser.Login screen visible after making the changes suggested above
If you think of this as hacking, please read Forget Your Password: Be Google
for a very tempting hack.
Disclaimer: I do not advocate hacking for illegal purposes, hacking is supposed to be harmless, fun and learning experience.
If you think of this as hacking, please read Forget Your Password: Be Google
for a very tempting hack.
Disclaimer: I do not advocate hacking for illegal purposes, hacking is supposed to be harmless, fun and learning experience.
No comments:
Post a Comment