Cross-site scripting (XSS) is a type of computer security vulnerability typically found in web applications that enables malicious attackers to inject client-side script into web pages viewed by other users. An exploited cross-site scripting vulnerability can be used by attackers to bypass access ...
1
vote
2answers
258 views
HttpUtility.HtmlEncode, HttpUtility.HtmlDecode, the AntiXSS library and correctly formatting user-entered input
I'm trying to develop a secure web application that can accept form data, encode it into the database to eliminate cross-site scripting issues, and then format it nicely on other web pages.
Form data ...
1
vote
0answers
87 views
Create a service proxy handler in an ASP.NET control library to prevent cross domain requests
I have created a ASP.NET library that contains several custom server controls to enable reuse of common functionality across several web applications. A couple of the controls rely on a web service to ...
0
votes
1answer
204 views
Prevent SQL injection and XSS attacks
Will this function below be able to prevent XSS attacks and sql injections ?
require_once('security.class.php');
function secure_data($data) {
$data = mysql_real_escape_string($data);
...
0
votes
0answers
45 views
Bad referrer data in xss [closed]
I came across this while I'm learning securing php from xss attacks. Can anyone please tell me what is bad referrer data?? and how it show impact on a website?. I'm providing the link and little ...
1
vote
5answers
80 views
It is reasonable to implement security in a web app after implementing its main features?
Excuse me if this seems too vague to be posted on Stackoverflow.
My company hired three developers to implement a classified ads system, using PHP and MySQL. They’ve been working for little more than ...
2
votes
1answer
68 views
Does using razor in WebMatrix mitigate an XSS threat?
I have purposfully (for testing) assigned the following variable in WebMatrix C#:
string val = "<script type='text/javascript'>alert('XSS Vector')</script>";
Later in the page I have ...
6
votes
1answer
96 views
JSF SelectItems and escaping (xss)
there is a selectOneMenu in my example with a f:selectItems-attribute. The select-items are resolved from my bean like this:
<h:selectOneMenu value="#{bean.value}">
<f:selectItems ...
0
votes
0answers
31 views
What kind of attacks might this be vunerable to?
I am using signalR, so session data is not available in Hub methods. Once a user logs in validated using proper credentials, the USR and SID javascript variable are populated. Any request from that ...
0
votes
1answer
89 views
iframe xss protection different domains
A couple of days ago I found this website: http://hsmaker.com/
I noticed it works for any http website (i checked about 50 common websites).
It fetches the url's content into an iframe and then, I ...
1
vote
1answer
152 views
enable XSS in chrome and/or safari
I'm developing a native iOs app using cordova to do the native stuff, so I can focus on html/javascript and css. However, I need to make cross-domain ajax calls, which is fine in my native app, but ...
3
votes
1answer
170 views
How much can I trust ASP.NET Request Validation with Web Pages/WebMatrix vs. XSS?
I have read (and am coming to terms with) the fact that no solution can be 100% effective against XSS attacks. It seems that the best we can hope for is to stop "most" XSS attack avenues, and probably ...
14
votes
1answer
367 views
Is jQuery's $ safe from XSS?
In jQuery:
$('<script>alert("foo");</script>')
// nothing shows up
// wrap it in a <p>
$('<script>alert("foo");</script>').wrap('<p>')
// oh no, an alert just ...
1
vote
0answers
27 views
html purifier library usage concept
HiI am at prototype stage with my site. I read the html purifier main page and questions about this library in this site but I am still not clear with the issue on my mind. Can you guide me ...
0
votes
0answers
15 views
am i safe from xss atacks if i use Razor View?
As i know Razor view engine renders variables by converting markup characters so that we see them as they are, Is this enough Or i need to make some other preventing procedures ?
0
votes
1answer
175 views
What is the best way to sanitize user inputs?
I need to prevent XSS attacks as much as possible and in a centralized way so that I don't have to explicitly sanitize each input.
My question is it better to sanitize all inputs at URL/Request ...
-1
votes
1answer
69 views
Block access to a file using htaccess [closed]
I have a .htaccess inside a folder with:
Order Deny,Allow
Deny from all
Allow from localhost
Satisfy Any
I try to limit access to a file that contains a hashed key, only to the same domain, to ...
0
votes
1answer
187 views
how to clean POST and GET vars in PHP for XSS and SQL injection
In my web app is a config file which includes i.e. database connection settings ans is always loaded at the first line of a PHP script. I would like to include a function which cleans all POST and GET ...
0
votes
1answer
69 views
Understanding HTML Purifier
I am currently using CodeIgniter. I have 4 forms (student signin, login in form, create account, and request account)
I am currently using this at the moment to filter my input on one of the forms ...
1
vote
1answer
353 views
onclick in jsf commandbutton is not working in chrome
I am invoking JavaScript in <h:commandButton> by onclick event.
<h:commandButton type="submit"
value="Next" action="#{bean.save}"
...
0
votes
1answer
196 views
Fortify Cross Site Scripting: Poor Validation
I have used JSTL tag to fix the XSS vulnerability issue Fortify reported on my JSP's. But After using though the XSS vulnerability issue was resolved, it resulted in a new issue as 'XSS: Poor ...
0
votes
1answer
136 views
Does this iframe buster script look safe?
We're being asked to host a number of iframe buster scripts on our site - they allow ads which are served from external domains into iframes to expand outside of them into the host page. Our hosting ...
0
votes
1answer
47 views
Storing generated HTML and preventing XSS attacks in Rails 3
I am writing an app where a lot of heavy duty calculations are performed in the browser to generate and format some content. The resulting content is HTML that I would like to save on the server ...
-1
votes
1answer
47 views
Can I be Vulnerable To XSS In 6 Characters [closed]
So what I've been trying do is with my Content Managment System is have users be able to pick their background color, in the HTML color code format.
Then I will custom have their page use the ...
2
votes
2answers
180 views
is my anti xss function safe?
I have some javascript functions on my website, but I don't know if it is safe to use them.
here is my code :
// works like PHP's $_GET
function get(name){
...
3
votes
3answers
247 views
Prevent XSS attack
I am working on a ASP.Net C# + jQuery ajax website project. I am trying to prevent xss attacks and I know below is not the full approach, but this is at the least what I should do - to use ...
2
votes
2answers
131 views
Cross Site Scripting issue with document.write
I am working with some old code which has been reported is vulnerable to cross site scripting. The line of code is
document.write("<input type=hidden name=field1 value='" + ...
0
votes
1answer
150 views
PHP, Javascript JSON, XSS Protection
I am considered about XSS vulnerability!
I have web site, where All data b/w web server and client is transferred via XHR - JSON and browser javascript doing the rest to display the site.
When ...
1
vote
2answers
160 views
Security testing as a part of continuous integration?
We already have a continuous integration process going where we build, run unit tests, do static code analysis and generate documentation. However, we would like expand this to include automatic ...
2
votes
2answers
45 views
Can uninstalling rdoc make Ubuntu safe from the Ruby RDoc XSS vulnerability?
I've just read http://www.ruby-lang.org/en/news/2013/02/06/rdoc-xss-cve-2013-0256/ , a report about an XSS exploit in RDoc.
I'm on Ubuntu 12.04, and I doubt Ubuntu will be dealing with this ...
0
votes
2answers
76 views
XSS PHP Input/Output
Hi Question about XSS and PHP......
I am building a PHP Application all input is going to the database via client then server side validation, sanitization using filtervar.....encrypted passwords ...
0
votes
2answers
108 views
Is possible to bypass my regex and execute any javascript?
Is possible to bypass my regex and execute any javascript?
function json(a){
if (/^\s*$/.test(a) ? 0 : /^[\],:{}\s\u2028\u2029]*$/
.test(a.replace(/\\["\\\/bfnrtu]/g, "@")
...
1
vote
2answers
92 views
XSS exception being thrown only on FireFox 18
I have a bit of code that works fine on Chrome, Safari, IE, and Opera. But for some reason on only FireFox 18 I get this problem
Error: Permission denied to access property 'document'
[Break On ...
0
votes
1answer
152 views
Security and Good Practice with Code Igniter
I'm going through the documentation of Code Igniter and want to know if I get this right :
Use $this->input->post(x,TRUE) instead of $_POST every time
Best to use PDO. If not, do ...
0
votes
1answer
61 views
Securing against XSS - user provides part of url
I see why this below is bad and that htmlspecialchars must be used to prevent some xss vulnerabilities:
<?php $url = '<plaintext>';
echo $url;?>
like so:
<?php $url = ...
0
votes
1answer
86 views
Trying to insert script through textbox
I have made an ASP.NET (fw 3.5) site and wanted to check if it is vulnerable.
I accept input from a textbox and save it in the database and then display it later on another page dynamically.
If i ...
1
vote
0answers
221 views
Internet Explorer has modified this page to help prevent cross-site scripting
I see this in a few topics but nothing matching my situation. I have code to render buttons for Twitter, Like, Google+ and Pinterest. In Internet Explorer - and ONLY IE - the Tweet button generates ...
1
vote
1answer
53 views
I want to offer template editing like tumblr in my web app; what are my security considerations?
I'm using php and the twig template engine, i want my users to be able to design the complete html document that will be output. I need them to be able to include scripts, and css from external ...
0
votes
1answer
108 views
Security checks on PHP (with PDO) for a member authentication and registration [closed]
I'm looking for an examples of some more advanced security checks that I'd be able to perform on my website.
I'm using PHP 5.2 with PDO MySQL database.
What would interest me most are:
samples of ...
0
votes
1answer
130 views
Codeigniter - global XSS filtering TRUE
i setted up this in my config.php:
$config['global_xss_filtering'] = TRUE;
the problem for me is that it removes all the accented chars like "à,ù,è,ò"
is this usual?
also why replacing them? how ...
1
vote
2answers
194 views
I use AntiXSS but I still can hack page
I don't know if I am doing this right. I first time build something to prevent attack on page.
I will start from the bottom:
I have property:
public string Description {get;set;}
User can set it's ...
1
vote
2answers
34 views
Crosssite Scripting issues
Right now im trying to filter all of my variables to secure my site from xss.
I read a few things here and there and to me it seems the best way to do that would be to whitelist all charackters that i ...
1
vote
1answer
139 views
Best practice for Prevent XSS hacking
I am member of team with 25 developer.we use mvc.net application that security is a n important for us.we use @Html.AntiForgeryToken() and anything that related with security but We are concerned ...
0
votes
1answer
141 views
Safe way to save/display html content in web portal asp.net mvc 3
I am making a web portal so I want to clarify some things. What is the safest way/approach to save Html content in database and to display it for other users. I have already started to make two ...
6
votes
2answers
195 views
Is this code vulnerable to XSS attacks?
The question did arise from this one:
Why does the browser modify the ID of an HTML element that contains &#x?
Given the following web page:
<html>
<head>
<script ...
2
votes
3answers
104 views
Markup language for Java that is XSS safe
I'm writing a java webapp and I'd like to let my users enter text containing markup that is XSS / Cross-Site-Scripting safe. I'd like to save the user generated markup to a database and display it as ...
2
votes
1answer
40 views
White-list of URI protocols for XSS prevention?
If I allow a user to post a URL to a page, then I create an <a> tag with that URL, I have to first check to see if it is safe.
I know that javascript: protocol would be un-safe as it would run ...
-1
votes
1answer
76 views
Input Validation - Regex to match scripts
What are the Regex expressions that I would need to test a string against in order to make sure it doesn't contain any Javascript?
I'm using this article as a starting point.
Code in blocks:
...
0
votes
1answer
78 views
XSS-issue accessing REST API on other port than web server
I need some help. I have web server on domain.se:80 and a REST API on domain.se:8080. My web site is loaded from domain.se:80 and it's a single-page app so just one load is enough and subsequent calls ...
1
vote
1answer
54 views
Cross site scripting (no iframes or anything)
I'm trying to understand this better, and it's confusing me a bit. All the things I'm finding are related to iframes which I'm not using.
I have a form on a domain I own, and when you click submit, ...
0
votes
1answer
78 views
delete any event javascript from a string
Is there an easy way to remove with php any type of event HTML in php string. For example for events submit,mouseOut,mouseOver,click,blur,focus,etc. to prevent javascript injection, for cases like ...





