Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
3answers
282 views

Attempted exploit?

I saw that my nopCommerce site had a logged search for: ADw-script AD4-alert(202) ADw-/script AD4- I'm a bit curious though what they were trying to accomplish. I searched a bit for it and ...
6
votes
4answers
129 views

How can I prevent a form from being submitted more than once within 5 minutes?

Edit: I use PHP, so how can I prevent this? Like how could I make it to where a message can only be sent every 5 minutes or so and if they submit more than one within 5 minutes it will display an ...
5
votes
3answers
317 views

What is the best way to include Javascript?

Many of the big players recommend slightly different techniques. Mostly on the placement of the new <script>. Google Anayltics: (function() { var ga = document.createElement('script'); ...
5
votes
3answers
416 views

Preventing JavaScript Injections in a PHP Web Application

What are the measures needed to prevent or to stop JavaScript injections from happening in a PHP Web application so that sensitive information is not given out (best-practices in PHP, HTML/XHTML and ...
3
votes
3answers
79 views

Injecting javascript thourgh <img>-tag

I would like to know if it is possible to inject some javascript code through an img-tag. The scenario is that one sets up a html-page like this <img src="anotherdomain.com/someimage.jpg" /> ...
2
votes
3answers
254 views

Is there a known workaround for IE9's execution order of injected script tags?

I am sure I don't fully understand this problem, but it seems that we are seeing strange behavior on IE9 on my project, somehow related to out-of-order execution of JavaScript that has been injected ...
2
votes
2answers
710 views

Firefox doesn't do “asynchronous” load on dynamic script injection?

I've 2 js functions, request() and response(). Request injects a dynamic script tag to DOM, loading some "script" from server. The script that comes from server is set to call response(). Now if I ...
2
votes
4answers
656 views

Questions about Javascript injection

I been reading on asp.net mvc learning site about JavaScript injection and man it is an eye opener. I never even realized/thought about someone using JavaScript to do some weird ass injection ...
2
votes
7answers
3k views

Lib to protect SQL/javascript injection for java/jsp

Anyone know a good lib where i can run the strings before they are inserted, that can strip out sql/javascript code? To be run in jsp pages. Idealy the lib would be: Free Lightweight Easy to use ...
1
vote
3answers
117 views

regex expressions prevent sql/script injection

I am trying to create a regex expression for client side validation (before server side validation which will also take place) to prevent sql/script injection i.e something like this - which does not ...
1
vote
1answer
548 views

handle javascript injection in asp.net mvc

How can we handle the javascript injection in asp.net mvc (C#) application? I can use Html.Encode in my View. But the problem is i have html also to show in the page like a blog post. I need to ...
1
vote
5answers
849 views

Preventing JavaScript Injections

What's the best way to prevent javascript injections in a VB.NET Web Application? Is there some way of disabling javascript on the pageload event? Recently, part of the security plan for our vb.net ...
0
votes
1answer
49 views

Injecting CSS into UIWebView using JavaScript

I am attempting to inject a local CSS file to override the styling of a webpage. The webpage is presented in a UIWebView container in iOS. However I am not able to get my code to work. See the snippet ...
0
votes
1answer
36 views

Injecting JavaScript into UIWebView

I am trying to use the stringByEvaluatingJavaScriptFromString: to alter a WebView and it's not executing as I expect. Here is the code, this JS doesn't execute though. Any idea why? UIWebView *wv = ...
0
votes
4answers
56 views

Can't insert js programmatically if it uses document.write

I am trying to insert js files programmatically, using jquery and something like this: var script = document.createElement( 'script' ); script.type = 'text/javascript'; script.src = ...
0
votes
0answers
144 views

Is Javascript injection supposed to work even for web pages with no Javascript whatsoever?

One of the methods in my applications is using the Javascript injection trick described in this thread to capture the entire HTML of a web page after rendering: // This call inject JavaScript into ...
0
votes
1answer
204 views

How do you rewrite code of a webpage chrome.extension.executeScript

I am writing a chrome extension that needs to be able to add code into the webpage it is viewing. Right now in my background page I have chrome.tabs.onUpdated.addListener(function(tabId, info) { ...
0
votes
2answers
330 views

external javascript file injection not working on chrome

I've been given this function to inject external javascript files to the rendered html: function inject(src, cb, target){ target = target || document.body; var s = ...
0
votes
1answer
69 views

Traversing tables? (FF 4)

I'm trying to parse http://www.MMORPG.com/gamelist.cfm using injected JQuery, and it works fine down to the table level, using $("#gamelisttable > tbody > tr"), but if I try, say, iterating over it: ...
0
votes
2answers
81 views

Safety from ajax bomb

There are some servlets which I call from ajax to check user availability and some other work. An ajax request can be send only if user is login. But the problem is, user can hit server through ajax ...
0
votes
4answers
273 views

How to prevent html or javascript injection with server-side php

Hoping this isn't a duplicate, I couldn't find an original question on the topic. If you have an area for users to input data, how do you store and retrieve the data without them inserting javascript ...
0
votes
4answers
233 views

Protect against script injection using markdown

I want to protect my page when a user inputs the following: <script type="text/javascript"> alert("hi"); </script> I'm using ShowDown: jQuery.fn.markDown = function() { return ...
0
votes
1answer
212 views

How do I protect my website from javascript injection attacks when using rich text editors?

Hi all I am using the markitup editor to get the value for one of my fields and storing it a sql server 2008 db. Now I guess the problem is people having script tags and javascript in the editor and ...