The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
40 views

Need to find out how malicious Javascript was injected into my header.php Wordpress theme file

Unfortunately my site was blocked for containing Malicious Javascript by AVG and Google. The malicious code pasted below, was somehow injected into the header.php theme file on the latest version of ...
0
votes
0answers
64 views

Submitting HTML Form Via JS Injection

I'm trying to automatically log into a website via Android WebView. webView.getSettings().setJavaScriptEnabled(true); webView.setWebViewClient(new WebViewClient(){ public boolean ...
1
vote
2answers
91 views

Render &lt as text instead of < or &gt as it is not > in jquery template

I have a text &lt;script&gt;alert('injection');&lt;/script&gt; which I want to render as it is in the view which is rendered as jquery template in ASP MVC3 application. But &lt; is ...
2
votes
0answers
230 views

Allow all special characters and prevent SQL injection / XSS

I am using Asp.NET MVC 3 with EF 4.1 With SQL Azure. I have both linq expressions as well as stored procedures. Now, I need to allow all the special characters like "';&<>/ etc to be ...
1
vote
1answer
27 views

List of special charter which cause issue on post

Hi I want to avoid script injection in my already running asp.net application, so i have added FilteredTextBoxExtender with every text box at run time on Pagebase Init event and that works perfectly, ...
0
votes
0answers
67 views

Android webview, setting webpage html image using javascript injection

Lets say in theory I want to pull in an image using a network call java, and then set that image to a webview's background using javascript injection, how would this be done? Specifically using ...
3
votes
1answer
187 views

ASP.NET UpdatePanel: Injecting Javascript on UpdatePanel update

Are there any potential side-effects to below solution to injecting JavaScript from the content of an updated UpdatePanel? The code for the UpdatePanel looks sort of like this: ...
0
votes
2answers
305 views

Cross Site Scripting Through URL

I have been told to find a fix to Cross Site Scripting (XSS) in some of my bank old .asp pages. I did some research on the subject, but I didn't find an answer to my problem. It's the first time I ...
-1
votes
1answer
100 views

Script injection [closed]

I'm running a windows web server with IIS 6.0. It seems to be that it's been infected with a virus that is not recognizable by the vaccine program. A javascript tag linking to an external js file is ...
0
votes
1answer
181 views

How to know ajax methods are called in UIWebview

I am working on app which is base on the MobileWebSite. I am handling few things on the app side based on the users interaction on the webSite. For this I have to detect the when the ajax methods are ...
-1
votes
2answers
160 views

Simple user input sanitization

I am using Server.HttpEncode(), and HttpDecode() in order to sanitize user form input, as well as having the server throw an exception when a "potentially dangerous" input is detected. (Data is then ...
3
votes
3answers
569 views

Browser extensions: how can injecting javascript code into a page work without conflicts?

I have started developing browser extensions. I noticed a common concept is that the extension can inject JS code into the current browser tab. I am a bit puzzled of how that doesn't cause issues on ...
0
votes
3answers
704 views

Prevent script injection with innerHTML

I have written a micro-templating utility that uses innerHTML to inject html fragments in a Web page, based on user input (either plain text strings or html strings). My main concern is the risk of ...
0
votes
3answers
175 views

Filtering out Javascript injection

I have a textarea in which I have put validation code not to allow <script> tags and Javascript tags, but the user can enter descriptions like <strong onmouseover=alert(2)>. So when ...
0
votes
0answers
52 views

.ASPX Timing out / Get to front of Ticketing system waiting line [closed]

I was wondering, hypothetically speaking of course... If there was a way to time-out or get to the front of a waiting line for a ticketing system? Like when large festivals or events ticketing ...
1
vote
1answer
382 views

How can I prevent injected JavaScript file reference code from running in my web page?

I don't know if it's possible to prevent the injection of a JavaScript reference file script into a web page, but I have seen sites that prevent you from running functions within the injected ...
0
votes
1answer
290 views

Inject Javascript into every HTML page using a servlet Filter

I want to modify every HTML page I have in my Spring application. The reason behind this is I want to include a piece of JavaScript code on each page. Unfortunately, Sitemesh can't help me out here ...
4
votes
2answers
381 views

Google Places API wnd Windows 8 Metro Style App

I am developing a Metro style app and need access to the Google Places API (I have an app key). Windows 8 prevents Java script injections unless wrapped in a MSApp.executeLocalUnsafeFunction( ...
0
votes
0answers
332 views

javascript post data within page

I'm currently building a firefox add on using the sdk. Within my add-on, which runs interactively with the user on the page they visit, I need to submit information that has been captured by the addon ...
0
votes
1answer
204 views

inline image insertion through javascript

I wrote one script which gets an image url through JSONP, and then I needed to write that to browser, this is a status image which is onling.png, offline.png and so on my script looks like this. ...
1
vote
2answers
381 views

Javascript injection Prevention: where do I start?

I'm working on a new web site (ASP.NET, Web Forms, C#) and need to include protection against Javascript injection attacks. Does anyone have any good links for how to implement a site secure against ...
3
votes
1answer
1k 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
481 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 = ...
1
vote
4answers
1k 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 = ...
8
votes
4answers
322 views

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

I recently found a huge security problem with my PM system that allows users to send a message as much as they want with a for loop in the address bar. Someone put this into the address bar: ...
5
votes
3answers
560 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" /> ...
1
vote
3answers
1k 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 ...
0
votes
0answers
412 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 ...
2
votes
3answers
2k 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 ...
0
votes
1answer
478 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
908 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
268 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
152 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 ...
9
votes
3answers
923 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 ...
4
votes
1answer
511 views

AJAX from within a Safari Extension's injected script

I'm trying to expand a shorturl using an API in an injected script in a Safari Extension: $.getJSON('http://api.longurl.org/v2/expand?format=json&url=' + encodeURIComponent(href) + ...
2
votes
2answers
3k views

Mediawiki: how to insert a <script>-Tag

I'd like to insert a flattr image in my mediawiki installation. That requires to insert a <script>...</script> section into the header of the html file. I have no clue, where I can insert ...
6
votes
3answers
693 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'); ...
2
votes
2answers
1k 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 ...
1
vote
4answers
453 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 ...
6
votes
4answers
21k views

How to dynamically insert a <script> tag via jQuery after page load?

I'm having problems getting this to work. I first tried setting my script tags as strings and then using jquery replaceWith() to add them to the document after page load: var a = '<script ...
6
votes
3answers
2k 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 ...
0
votes
1answer
335 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 ...
3
votes
1answer
1k 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 ...
4
votes
4answers
957 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 ...
1
vote
5answers
1k 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 ...
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 ...