Slashdot Mirror
Home
Stories
Sections
Topics
Users
Domains
← Back to Users
User: dreadyco
dreadyco's activity in the archive.
Stories
0
Comments
1
First seen
2004-07-09
Last seen
2004-07-09
Profile
(view on slashdot.org)
Comments
· 1
Search
Sort:
Newest
Oldest
« prev
Page 1 of 1
next »
Simpler fix
on
Mozilla/Firefox Bug Allows Arbitrary Program Execution
·
2004-07-09 04:44
·
Score: 2, Interesting
Instead of installing the extension, you could instead do this:
Open the
Javscript Console
Copy the following line-by-line into the textbox (hitting enter after each line):
var prefs = Components.classes[ "@mozilla.org/preferences-service;1" ]
.getService()
.QueryInterface( Components.interfaces.nsIPrefBranch );
prefs.setBoolPref( "network.protocol-handler.external.shell", false );
prefs.getBoolPref( "network.protocol-handler.external.shell" );
Note:
You shouldn't need to restart, it will be saved the next time you do, but the effect is immediate.
There are only 3 lines above, slashdot breaks the first line apart.
You should see a
false
after evaluating the 3rd line.
If you run into any trouble, start again from above.
If you have trouble with the slashdot-munged code above, go to
my blog
and copy it from the textarea.
« prev
Page 1 of 1
next »
var prefs = Components.classes[ "@mozilla.org/preferences-service;1" ]
prefs.setBoolPref( "network.protocol-handler.external.shell", false );
prefs.getBoolPref( "network.protocol-handler.external.shell" );
Note: