Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Auto bookmark add script

Status
Not open for further replies.

kemikelx

Technical User
Nov 21, 2001
16
MY
I have been surfing some adult site (smirk) and i have discovered that some of the site automatically add bookmark into my browser and sometime it changes my start page too.
The latest one i encountered was, it places some shortcuts into my dekstop and all of this was done stealthily without any of the crappy confimation box? Does anybody has an y idea what is it? It is javascript or active x exploit?
 
it's a javascript. you can see many scripts on the net, but they are often not free Best regards,
Elise, XML learning girl X-)
 
here is the code :

Code:
script LANGUAGE="JavaScript">
<!--//BEGIN Script
browserName = navigator.appName;
browserVer = parseInt(navigator.appVersion);
if (browserName == &quot;Microsoft Internet Explorer&quot; && browserVer >= 4) {

   window.external.AddFavorite(location.href, document.title);
}
//--></script>
Best regards,
Elise, XML learning girl X-)
 
oups the code is gave prompts the user, i gave you the bad one sorry Best regards,
Elise, XML learning girl X-)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top