473,806 Members | 2,661 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Norton Internet Security SymError SymWinOpen

I'm certainly not the first to write about this subject, but I came
across it after buying a new PC with NIS on it and it messed up my
site without telling or yelling.

I solved it by this statement in the <head></head>
<script src=http://www.mydomain.co m/norton.js></script>
and the script at http://www.mydomain.com/norton.js contains the
follwing code:
function undonorton(){
infected=false;
tmp=window.oner ror;
if (tmp!=null){
tmp=tmp.toStrin g();
if (tmp!=null)
if (tmp.indexOf('S ym')>=0)
infected=true;
}
if (infected){
window.open = null;
window.open = SymRealWinOpen;
window.onunload = null;
window.onload = null;
window.onerror = null;
}
}
undonorton();

I also call this script just before any window.open statement;

It works for me.
Jul 23 '05 #1
2 1886
Sven wrote:
I'm certainly not the first to write about this subject, but I came
across it after buying a new PC with NIS on it and it messed up my
site without telling or yelling.

I solved it by this statement in the <head></head>
<script src=http://www.mydomain.co m/norton.js></script>
and the script at http://www.mydomain.com/norton.js contains the
follwing code: <snip> It works for me.


You have wasted your time. You have encountered one specific
configuration of one version of a content inserting/re-writing proxy
(operating as an Internet security program) and attempted to reverse its
actions. Norton don't have to do much to render your script obsolete
(change the names of the functions it uses), and very little more to
render its entire strategy invalid (e.g. dynamically generate the
function names, or closure-wrap the original functions so that they
become inaccessible to other scripts on the same page, and so cannot be
restored by local scripts). And every other content-inserting/re-writing
proxy is still having a similar effect on your site. (and if the
significant problem is the opening of new windows then every pop-up
window blocking technique is probably having a similar detrimental
effect).

Trying to fight these things is just going to provoke an arms race, in
which the software operating on the client computer will always be able
to win because it doesn't have to overburden a web site by downloading a
huge mass of script as its contribution to the fight.

The solution that works, and works for everyone, is to stop relying on
the ability to do things that users (and the writers of Internet
security programs) regard as potential sources of abuse (i.e. not trying
to open new window, not relying on ActiveX, etc,).

Richard.
Jul 23 '05 #2
"Richard Cornford" <Ri*****@litote s.demon.co.uk> wrote in message news:<d0******* ************@ne ws.demon.co.uk> ...
Sven wrote:
I'm certainly not the first to write about this subject, but I came
across it after buying a new PC with NIS on it and it messed up my
site without telling or yelling.

I solved it by this statement in the <head></head>
<script src=http://www.mydomain.co m/norton.js></script>
and the script at http://www.mydomain.com/norton.js contains the
follwing code: <snip>
It works for me.


You have wasted your time. You have encountered one specific
configuration of one version of a content inserting/re-writing proxy
(operating as an Internet security program) and attempted to reverse its
actions. Norton don't have to do much to render your script obsolete
(change the names of the functions it uses), and very little more to
render its entire strategy invalid (e.g. dynamically generate the
function names, or closure-wrap the original functions so that they
become inaccessible to other scripts on the same page, and so cannot be
restored by local scripts). And every other content-inserting/re-writing
proxy is still having a similar effect on your site. (and if the
significant problem is the opening of new windows then every pop-up
window blocking technique is probably having a similar detrimental
effect).

I was offenced by the fact that Norton molests my work. Maybe with the
best intentions, but anyhow without telling my visitors that it is
doing so.
Looking for infor on the subject on forums, I found the same complains
with the same examples since 2002/2003. It's probably very simple for
them to change the codes, but my simple script (I made it even more
simple) tackles what they are using since 2002.
Trying to fight these things is just going to provoke an arms race, in
which the software operating on the client computer will always be able
to win because it doesn't have to overburden a web site by downloading a
huge mass of script as its contribution to the fight.
Provoke? An arms race?
I'll probably better get rid of Nortons crap by sueing them for molest
on my works and violating my intellectual rights.
The solution that works, and works for everyone, is to stop relying on
the ability to do things that users (and the writers of Internet
security programs) regard as potential sources of abuse (i.e. not trying
to open new window, not relying on ActiveX, etc,).

Richard.


The solution against crime, and that works for everyone, is to control
everybody at alltimes so they won't do things that society (and the
writers of laws at any point in time) consider to be illegal or
potential illegal (i.e. driving in a car nearby an airport with a
beard on your chin and a piece of cloth on your head).

Opening a new window can be very use- and meaningfull.
Jul 23 '05 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
1842
by: SM | last post by:
Hi , I am using a window.open function to popup window in my C# code in this manner . Response.Write("<SCRIPT language=\"javascript\">"); Response.Write(String.Format("window.open(\"{0} \",\"_blank\",\"toolbar=no\",\"menubar=no\");",url)); Response.Write("</SCRIPT>");
6
3976
by: Dave | last post by:
Hello, all! I'm having a small problem displaying an ordinary GIF file on my web site. It's just a banner with a transparent background. When I have Norton Internet Security disabled, it displays fine. When I enable Internet Security, the GIF disappears when I refresh the page - it doesn't even show an image placeholder. (Test was run with IE and Netscape). And you know what? I keep hitting refresh with Internet Security disabled, and...
1
1532
by: Al Christoph | last post by:
I'm running VB2003 on a new Dell Laptop where Dell in its infinite wisdom put on Norton Internet Security. UGH! Maybe I should have paid business rather than home prices:-) At any rate with Internet Security turned on, when I debug my console application, VB 2003 hangs and the program never gets to the first line. When I run the program stand alone - Norton says that the program is attempting to connect to a DNS server. SAY WHAT?...
11
1804
by: TC | last post by:
Hello All, I have recently had the pleasure of installing Norton Internet Security 2005 and finding that I can no longer create or open a web-based application in Visual Studio .Net. The IDE just freezes. I tried fiddling with the configuration settings of the Norton Firewall but was not successful. I tried launching IIS from the Control Panel and it would not launch. I saw one article in Groups.Google from a previous post that the...
6
2295
by: clemke | last post by:
Hello All Is it possible for Norton Internet Security 2003 to strip out references to images from the html before it gets to the browser? Here is an example: On the Web Server The HTML File Looks Like This: <a href="01.htm"><img src="th01.jpg" hspace=0 vspace=0 border=0 width=120 height=90></a>
10
1795
by: Ammar | last post by:
Hi! I am running IIS 5 on windowsXP proffesional with norton internet security proffesional 2004. I have been trying to make an ASP.NET page that sends a report as an e mail to the webmaster of the site when a user subscribes in the site. The page runs well, but the e mail is never delivered! After long hours of search i found that turning norton Internet securty off solves the whole probelm! But then of course, i dont want to run my IIS...
5
2001
by: Chris Zoper | last post by:
Hello, Norton Internet Security blocks some of my ASP.NET pages. The pages are very 'normal' pages though. There is no 'dangerous' code in it or something like that. Also, the page is not in a pop-up. Most of my pages work just fine, but when I navigate to a specific page, it won't open. I don't get an exception or a warning, the page just won't finish loading. When I disable Norton Internet Security, it works fine again. Also when I...
11
2176
by: gregory_may | last post by:
I am developing an application that I would like to distribute on CD. Norton blows it up very badly. Is there some API I can talk to let Norton know I am ok?
0
1304
by: Innycool | last post by:
Save 25% on Norton Internet Security Automatic security updates Advanced phishing detection Two-way firewall blocks hackers Windows security holes shielded Public wireless network protection
0
9719
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10369
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10372
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10110
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9187
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6877
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5546
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5682
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
3
3008
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.