Using an extension in Firefox, seems like this forum has leaking code!

PSP-Heaven

New Member
Messages
428
Reaction score
0
Points
0
Code:
Leaks in window 0x2874c20:
[+] [leaked object] (3e3bd30, [url]http://forums.x10hosting.com/clientscript/vbulletin_textedit.js[/url], 2844-2879) = function (e) {
    if (e.ctrlKey) {
        switch (String.fromCharCode(e.charCode).toLowerCase()) {
          case "b":
            cmd = "bold";
            break;
          case "i":
            cmd = "italic";
            break;
          case "u":
            cmd = "underline";
            break;
          default:
            return;
        }
        e.preventDefault();
        vB_Editor[this.editorid].apply_format(cmd, false, null);
        return false;
    } else {
        if (e.keyCode == 9) {
            var firsticon = fetch_object("rb_iconid_0");
            if (firsticon != null) {
                firsticon.focus();
            } else {
                if (fetch_object(this.editorid + "_save") != null) {
                    fetch_object(this.editorid + "_save").focus();
                } else {
                    if (fetch_object("qr_submit") != null) {
                        fetch_object("qr_submit").focus();
                    } else {
                        return;
                    }
                }
            }
            e.preventDefault();
        }
    }
}
 [ ] prototype (1b80568) = [object Object]
[+] [leaked object] (29728d0, [url]http://forums.x10hosting.com/clientscript/vbulletin_menu.js[/url], 109-116) = function vbmenu_hide(e) {
    if (e && e.button && e.button != 1 && e.type == "click") {
        return true;
    } else {
        vBmenu.hide();
    }
}
 [ ] prototype (1b8c8e0) = [object Object]

Thats the code that was leaked....It said this after i closed a window, then the window popped up. If you guys dont want me to display the code, I will delete it.
 
Last edited:

Bryon

I Fix Things
Messages
8,149
Reaction score
101
Points
48
It's only Javascript.. Which can be viewed anyways..
 

Spartan Erik

Retired
Messages
6,764
Reaction score
0
Points
0
PSP-Heaven said:
Code:
Leaks in window 0x2874c20:
[+] [leaked object] (3e3bd30, [URL="http://forums.x10hosting.com/clientscript/vbulletin_textedit.js"]http://forums.x10hosting.com/clientscript/vbulletin_textedit.js[/URL], 2844-2879) = function (e) {
    if (e.ctrlKey) {
        switch (String.fromCharCode(e.charCode).toLowerCase()) {
          case "b":
            cmd = "bold";
            break;
          case "i":
            cmd = "italic";
            break;
          case "u":
            cmd = "underline";
            break;
          default:
            return;
        }
        e.preventDefault();
        vB_Editor[this.editorid].apply_format(cmd, false, null);
        return false;
    } else {
        if (e.keyCode == 9) {
            var firsticon = fetch_object("rb_iconid_0");
            if (firsticon != null) {
                firsticon.focus();
            } else {
                if (fetch_object(this.editorid + "_save") != null) {
                    fetch_object(this.editorid + "_save").focus();
                } else {
                    if (fetch_object("qr_submit") != null) {
                        fetch_object("qr_submit").focus();
                    } else {
                        return;
                    }
                }
            }
            e.preventDefault();
        }
    }
}
 [ ] prototype (1b80568) = [object Object]
[+] [leaked object] (29728d0, [URL="http://forums.x10hosting.com/clientscript/vbulletin_menu.js"]http://forums.x10hosting.com/clientscript/vbulletin_menu.js[/URL], 109-116) = function vbmenu_hide(e) {
    if (e && e.button && e.button != 1 && e.type == "click") {
        return true;
    } else {
        vBmenu.hide();
    }
}
 [ ] prototype (1b8c8e0) = [object Object]
Thats the code that was leaked....It said this after i closed a window, then the window popped up. If you guys dont want me to display the code, I will delete it.

You sure the leak monitor extension doesn't have a leak in it itself? Lol.
 

PSP-Heaven

New Member
Messages
428
Reaction score
0
Points
0
I removed it because it kept on reporting leaks in many forums and sites, and was getting quite annoying!
 
Top