473,802 Members | 1,988 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

How do I turn javascript off PROGRAMATICALLY ?

I'm not talking javascript hara-kiri here. I've got
a database of web pages or snippets I've created
and I'd like to display them in a table. So on my
server (in PHP) I take all the files, and plunk the
text for each between <TD> tags and return that
page, everyone's happy.

Now some joker (me) comes along and puts the single line

<SCRIPT>alert(' Hi mom')</SCRIPT>Dad

as the the entry for one file. Sure enough, when
the client gets the page s/he also gets an alert.
So what I'd like to do is to turn off any "immediate
scripting" that happens due to <SCRIPT> tags
within the <TABLE> element (or even the whole
document).

But wait, it gets worse. Plunk the following in between
TD tags (on my IE 6 or Opera 7.23 anyway) and I still
get the alert:

<html><head><ti tle>hi mom alert test</title></head>
<body onLoad='alert(" Hi Mom")'>Dad</body></html>

So I'm looking for something that will Just say, "No"
to Javascript "happening" between certain TD tags.

You know in IE when you click on a .HTM or .HTML
file you get a minimalist preview of it on the left? That's
what I want these containing TDs to be.

Thanks, Csaba Gabor
PS. There's a (post TD) part two to this if we get past
this part one.
Jul 23 '05
13 1923
This is way off topic but a very interesting thread.
First off, just to clarify a bit, the table for showing
these encapsulated web pages/snippets is only
meant for me so I don't run into your issues, but
acutally I am curious if you could mention some
specifics about this law or provide a link.

The EU has already passed laws governing the
action of non EU citizens abroad. As I understand
it, if you sell something to an EU citizen, the EU wants
you to collect VAT on its behalf and send it in, right?

Meanwhile, the US had a well publicized case
in the last few years. Remember Dimitri Skylarof?
He's the Russian guy who worked for a company
and legally (in Russia) cracked an Adobe encryption
scheme for his employer, Elcomsoft, a Russian
company (should go to trial later this year).
US grants him a visa and when he arrives to
Vegas, WHAM, Adobe sics the feds on him
for breaking the DMCA, which is a US law that
says you shall not divulge anything about electronic
security flaws no matter how bad they are. Really,
I have to wonder if web programmers fighting against
all the browser bugs there are are violating this law
en masse, for many bugs could be construed as a
form of protection. Sound too farfetched?...

Finally, consider the recent situation that arose in
Hungary. Turns out, doctors in Hungary don't have
the same salary as their western counterparts.
Surprise! So they collect tips. Up front. It's called
gratitude money ("hála pénz"). This is nothing new, it's
been done for years and years. Somebody set up a
website to collect information on how much various
doctors were charging. When the press got ahold of
this there was a huge stink. The government wasn't
happy because it made them look cheap PLUS they
figured out they weren't getting taxes on that money.
The doctors weren't happy cause it made them seem
dirty (the people weren't getting the services that the
government was telling them they were entitled to).
The citizens were not happy because they could either
pay an extra month's worth of wages or wonder whether
the doctor would see them. Of course the news didn't
make any difference to them because everybody already
knew about the situation anyway.

But then a government minister figured that the privacy
of them there doctors was being violated. Can you
imagine? They are flagrantly demanding money from
people (the public) who have already paid to use their
services, and then saying that compiling this information
violates their privacy? I was surprised to hear that
the guy very nicely took his web page down. A month
later I was astounded to hear that the guy was getting sued.
Wait a sec, hadn't he taken his site down right away?
Well, yes, but some guy in America copied the data
and then reposted it when the original site went down.
They evidently couldn't sue the guy in America so they're
going after this guy, I suppose on the grounds that if he
hadn't put up his web site, the guy in America wouldn't
have been able to copy it. I have no idea of the disposition
of this case, but I am curious.

Hoping you don't run afoul of another country's
unknown law that applies to you,
Csaba Gabor
Jul 23 '05 #11
Richard Cornford wrote:
Klaus Johannes Rusch wrote:
Csaba Gabor wrote:
So I'm looking for something that will Just say, "No"
to Javascript "happening" between certain TD tags.


This type of attack is knowns as cross-site scripting.


It wouldn't only apply to scripting. What happens when someone enters:-

<iframe src="#"></iframe>

? (that potentially gets quite recursive.)
You will need to strip or escape all characters which have special
meaning when generating HTML, see
http://www.cert.org/tech_tips/malici...itigation.html for
details.


Yes, escaping anything that has meaning in HTML, either as the output
page is built or as the data goes into the database (trading an increase
in required storage space for only having to do the job once for each
item).

Richard.


You really don't need to escape "everything " that has meaning. Simply
replace any "<" characters with "&lt;" during output.

Any HTML entered by an end-user will simply appear in the output as HTML,
but will not be parsed by the browser.

--
| Grant Wagner <gw*****@agrico reunited.com>

* Client-side Javascript and Netscape 4 DOM Reference available at:
*
http://devedge.netscape.com/library/...ce/frames.html

* Internet Explorer DOM Reference available at:
*
http://msdn.microsoft.com/workshop/a...ence_entry.asp

* Netscape 6/7 DOM Reference available at:
* http://www.mozilla.org/docs/dom/domref/
* Tips for upgrading JavaScript for Netscape 7 / Mozilla
* http://www.mozilla.org/docs/web-deve...upgrade_2.html
Jul 23 '05 #12
"Grant Wagner" <gw*****@agrico reunited.com> wrote in message
news:40******** *******@agricor eunited.com...
Richard Cornford wrote:
Klaus Johannes Rusch wrote:
Csaba Gabor wrote:
> So I'm looking for something that will Just say, "No"
> to Javascript "happening" between certain TD tags.

This type of attack is knowns as cross-site scripting.


It wouldn't only apply to scripting. What happens when someone enters:-

<iframe src="#"></iframe>

? (that potentially gets quite recursive.)
You will need to strip or escape all characters which have special
meaning when generating HTML, see
http://www.cert.org/tech_tips/malici...itigation.html for
details.


Yes, escaping anything that has meaning in HTML, either as the output
page is built or as the data goes into the database (trading an increase
in required storage space for only having to do the job once for each
item).

Richard.


You really don't need to escape "everything " that has meaning. Simply
replace any "<" characters with "&lt;" during output.

Any HTML entered by an end-user will simply appear in the output as HTML,
but will not be parsed by the browser.


Yes, that is what I reverted back to doing, only I should first replace "&"
characters
with "&amp;" and then replace "<" character with "&lt;"
Jul 23 '05 #13
You know, I've had another think about Richard's iframe line, and
I'm thinking that it might just be the ticket. When I get around to it,
I'll offer a choice to show selected columns as "protected" iframes.
I'll still rip out <SCRIPT> and do the other things that I already
mentioned to prevent the top level window/user from being aversely
affected, and then plunk whatever's left into an Iframe which I'll
stuff into the TD. There, now my top level window shouldn't
have to worry about attributes of elements with the iframes, right?
"Csaba Gabor" <ne**@CsabaGabo r.com> wrote in message
news:40******@a ndromeda.datane t.hu...
That's why I want to be able to encapsulate what IE is already able
to do. OK, I've come to the conclusion that I can't really do what I had
wanted very safely. I coded up some regular expressions in PHP
to 1) remove SCRIPT tags, and 2) any onXXX attributes (excluding
onClick) (there were too many that might fire to be selective, such as
onReadyStateCha nge, onResize, onMouseover, blah blah blah),
and 3) src attributes, except for images.

Besides being dog slow, there are still plenty of susceptibilitie s such
as from CSS attributes set locally applying globally (e.g. if one of
the pages to be inserted with the TD element has <BODY bgColor='pink'>
my page will no longer be pretty in pink (groan)).

Furthermore, one of the contained "pages" (they're snippets, after all)
could start off </TD></TR></TABLE> and really wreak layout havoc.
The point is, I would expect to no longer get a valid page anymore.

So, I'm back to my original version of just displaying the underlying
page's text with overflow control.

Csaba Gabor

Jul 23 '05 #14

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

Similar topics

21
66868
by: strutsng | last post by:
<input type="file"> only allows the user to browse for files. How about "browse for folder" dialog? Can html/javascript do that? I couldn't find any syntax for that. If not, please advise what are the other approaches. please advise. thanks!!
1
1579
by: chfran | last post by:
I want to turn off the "text menu" at the top of my application but keep the graphical menu (SAVE (Disk), Sort (A-Z, Z-A). Any ideas on how to do that either programatically or through a standard Access function? Thanks!
1
3142
by: CS Wong | last post by:
Hi, I have a page form where form elements are created dynamically using Javascript instead of programatically at the code-behind level. I have problems accessing the dynamically-created elements and would like to seek a solution for this. I had looked through several articles for accessing programatically-created dynamic elements such as: 1)
6
1362
by: Nick Goloborodko | last post by:
Hi, What is the best way to detect JavaScript and Cookie support of the end user browser? TIA -- Kind regards, Nick Goloborodko
10
1932
by: David Thielen | last post by:
Hi; When a user clicks a radio button, what I would like to do is that if javascript is enabled on their browser, it calls a javascript function and does not do a postback. If javascript is disabled, then it does do a postback. Is there a way to do this? -- thanks - dave
0
860
by: craigkenisston | last post by:
I want to be able to turn on and off the custom errors mode, in order I can do something like: http://www.mysite.com/?debug=true And then read the parameter, turn "off" the custom errors so I can see the detailed messages, only when I add that parameter to the query string. Is it possible?
0
1204
by: vbDavidC | last post by:
I am wondering if there is a way to disable the MS wireless (not the wireless card) programatically. I would like to be able to turn it off and on. I have the need to turn off the wireless because it seems to interfere with some high speed data acquisition that we are doing.
0
2591
by: kal | last post by:
Hi there I am hunting for way to turn off/disable active scripting especially javascript in my webbrowser control. I don't see any property to turn off script. I found entry in registry under HKU/software/microsoft/... which gets modified when we manually change the setting for active scripting in IE from dword 3 to 0. But that solution is not viable because programatically registry updation is dependent the user rights
2
1272
by: javamama | last post by:
Hi, I programmed a web page where two parallel maps can be explored with moving the cursor on the summer and winter buttons. The active button should turn red but now the right hand buttons turn red instead of the left ones. Where's the problem? <HTML> <META HTTP-EQUIV="Refresh" CONTENT=300> <HEAD><TITLE>Parallel Visual Exploring</TITLE></HEAD>
0
9699
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
10538
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
10285
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
10063
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...
1
7598
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6838
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
5494
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
5622
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
3
2966
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.