New answers tagged xss
0
None of them are effective enough.
You should be looking for sanitizing as you did and use prepared statements.
1
If you want to prevent SQL injection attacks use prepared statements. When you do something like
SELECT * FROM TABLE WHERE id = $_GET['x']
The problem with this query is the variable is considered a part of the SQL statement. What that means is the DBMS will parse/compile and execute the variable along with the remainder of the query. So effectively, I ...
2
As mentioned, prepared statements are one of the best ways to prevent SQL injections. i.e., you shouldn't add your parameters as part of the final query string. You should use parameter placeholders, and add the parameters via a key/value array.
If you're using PDO, have a look at this page, which describes prepared statements in greater detail:
...
-1
XSS
$data=htmlspecialchars($data);
sql injection
$data=stripcslashes($data);
if the data will be stored into db and then display on the web page ,you should both of them.
0
No. It is not sufficient
this.location = "/test/DownloadReport?<%=request.getQueryString()%>";
An attacker may be able to send a link with a query string like
?</script><script>alert(1337)//
or
?%22/alert('Pwned')
to naïve users who might click the link and execute the embedded code.
You have to apply appropriate escaping ...
1
No, because HTTPS and SFTP ensure that evesdroppers are not listening in or tampering with the connection between client and server. SQL injection and XSS attacks originate at the client endpoint so they "start" before either of those protocols has a chance to do anything.
0
No these protocols have absolutely nothing to do with database vulnerabilities and non-sanitized user inputs.
SQL Injection attacks occur when user input is processed as part of a SQL statement that has not been sanitized. That is purged of any potentially malicious content. This is usually handled via the use of prepared statements.
XSS is similar ...
0
Here's your regex as a string literal:
"([A-Za-z0-9,()[\\\\]{}\\\":./_\\\\s]|(?<!-)-)*"
The real regex is:
([A-Za-z0-9,()[\\]{}\":./_\\s]|(?<!-)-)*
I see two major problems here.
Unlike most flavors, Java allows you to embed a character class in another character class. Your regex does not match square brackets ([ or ]) because the [\\] is ...
1
We have been told by the web security team that these characters must be encoded as they could potentially be used in a XSS attack.
If you are inserting the data into HTML (as opposed to, for instance, JavaScript) then that simply isn't true for anything other than <, >, &, " and ' (although even those are possibly overkill, it depends on ...
0
Parentheses and the percent sign are not special characters in HTML, they have no special meaning. As such, htmlentities doesn't touch them. If you still want to encode them regardless, you need to manually str_replace them. But again, it's pointless to do so in a pure HTML context.
0
The answer to your question is not entirely straightforward.
Specifically, no you cannot attack a server using XSS by by injecting code through its interface.
However, there are ways to "inject" code into the server through its interface and have the server run it. The techniques vary widely and substantially, and are highly implementation dependent.
...
0
I had a suggestion, and I asked on SO to find out if it would work but unfortunately, it was closed and marked as a duplicate to this question.
My suggestion is modifying markdown's code and allowing only links and image sources to start with http://, https:// or ftp:// which covers all the common protocols required. If the link doesn't start with one of ...
1
If domainA.com is compromised, you're totally pwned. The injected script can just add another window "message" event handler, and because it's on the same origin, it starts receiving everything that domainB postMessage's, and has the ability to postMessage back to domainB.
Not only that but they can use JS to find the iframe, remove any sandbox tags, allow ...
2
Any security implications?
There are loads. Anything you can do with javascript, a malicious site owner would be able to do on your sites.
Grab a user's password from the login form and send it somewhere else before allowing them to login normally.
Completely overwrite the page with something unrelated to how your application works. (I've seen this ...
1
You should use a Custom Domain for your Azure Storage account so it comes from the same domain (e.g. files.mydomain.com). This will solve the cross-site scripting (XSS) issue.
1
Cross-Site Scripting is not just about inserting JavaScript code into a web page. It is rather a general term for any injection of code that gets interpreted by the browser in the context of the vulnerable web page, see CWE-79:
During page generation, the application does not prevent the data from containing content that is executable by a web browser, ...
0
I think the vulnerability is similar to SQL injection. If you passed a value that contains a double quote, it ends the value attribute's value definition. For example, say you passed the following in the GET param:
"/><script type="text/javascript">/* Do something bad in JavaScript*/</script><input type="hidden"
If printed on the page ...
0
https://developers.google.com/caja/
The Caja Compiler is a tool for making third party HTML, CSS and JavaScript safe to embed in your website. It enables rich interaction between the embedding page and the embedded applications. Caja uses an object-capability security model to allow for a wide range of flexible security policies, so that your website can ...
1
I know one can obtaining this by SQL injection or just hacking on the server, but I mean only by manipulating (wrong handled) GET, POST requests -- or perhaps some other?
GET parameters and POST bodies are the primary vector for attacking a web application via HTTP requests, but there are others. If you aren't careful about file uploads, then I might ...
1
XSS is about javascript.
However to inject your malicious javascript code you have to use a vulnerability of the pages code which might be on the server or client side.
You can use CSP (content security policy) to prevent XSS in modern browses.
There is also a list of XSS tricks in the XSS Cheat Sheet. However most of those tricks won't work for modern ...
1
JSTL tags as demonstrated in your code use EL. Objects used in EL should be in one of the known scopes: request, session, etc. So in your EL expression, you should try using the key with which the instance was actually stored in the session rather than myObj.
You seem to be getting the object from the HTTP Session, not sure what KSession is, but I assume ...
7
You do not need to prevent "XSS" in this scenario. If someone is stupid enough to execute some random data you send him as JavaScript there is nothing you can do against it. Actually, if you did escape something to prevent it he would probably unescape it to make it work again.
Note that using eval to parse the JSON string is somewhat safe (assuming you ...
2
Not specific to XSS but Pete Freitag has a tool that will scan your ColdFusion server for vulnerabilities. The site is Hack My CF. I believe there is a free scan option and they also offer monthly subscription options. I think the tool includes some XSS checks as well.
1
OK, reading around it appears that common wisdom is to store the input verbatim, make no adjustments what-so-ever, simply parameterise to protect against SQL Injections.
Some good comments here: What are the best practices for avoiding xss attacks in a PHP site
Then either HTML Encode (seems vunerable), or use the XSS-Library to encode the output - As said ...
2
Although not ColdFusion-specific, there are several plugins for Fiddler which can detect or hint at where XSS flaws may exist. I've tried out watcher before and found it gave me some useful pointers.
2
If you're using ColdFusion 10, you should read this article: http://www.isummation.com/blog/day-2-avoid-cross-site-scripting-xss-using-coldfusion-10-part-1/
I don't think you'll find a tool that checks your actual code, XSS tools out there focus on the form inputs, etc. You might be able to write a script parser yourself that looks for <cfoutput> tags ...
0
Yes Microsoft recommends not to rely on Validate Request because
Only you can define what represents good input for your application.
I can recommend you to read How To: Prevent Cross-Site Scripting in ASP.NET guideline. This is possibly best thing I have read from Microsoft on XSS topic.
Another thing you can use to sanitize input is Microsoft Web ...
1
There are couple of options.
First go very restrictive way and do both so called white-list validation for input field for you title and always encode the text that you output to the page. That will filtered out all unwanted (and potentially dangerous) characters and make sure that if some of them pass filter (or somebody update the text to contains some ...
1
The best way would be to restrict the input to alphanumerical and space characters.
If you want to allow anything inside the title, you can use a escaping function.
http://xkr.us/articles/javascript/encode-compare/
Just stripping the string of single quote characters is definitely not enough. Think of new lines for one reason.
2
Sometimes, it's also possible to use XSS as a vector to trigger and leverage Cross-Site Request Forgery (CSRF) attacks.
Having an XSS on a website is like having control on the javascript a user will execute when visiting it. If an administrator stumbles upon your XSS code (either by sending a malicious link or by means of a stored XSS), then you might get ...
0
I've posted an answer to XSS filtering here: How to perform output encoding using filter to prevent XSS?
It involves the use of JSoup and the ESAPI module.
0
I've implemented an XSS Filter for a Jersey REST API. The code can easily be extracted and applied to a standard Java Filter.
Most people recommend encoding the output, but as our data can be accessed through a JavaScript API and there is no way of guaranteeing our customers will filter out XSS vulnerabilities, we opted for filtering out the XSS ...
2
Proper XSS and SQL injection protection (and data validation in general) can only happen on the server side. Client side validation is irrelevant as a malicious user can just write their own client or send custom HTTP request. Client side validation is only useful to notify non-malicious users of form validations without a server round trip (ex: verify that ...
1
For XSS attacks are mostly client side hack.For every user input you can actually sanitize the input data using encoding so that it takes out all the special characters. The basic way to handle on client side is to use the Javascript escape() function. OWASP is a good refernce to go thru the lon list of client side hacks. For Server side hacks to prevent ...
2
Well the question is, can a visitor alter the content in a way that another visitor will load something to their browser that was not intended by developers. If it's purely client side and if you do not accept any user inputs, I think its pretty safe. If you have any unused php scripts, remove them.
0
No. This solution will not protect you against anything.
I think Purifier is to prevent XSS only, by passing your output (that what you are going to echo out) through it. But what you are doing now is only passing your input through it.
And there is no SQL injection protection at all here.
If you are using the deprecated mysql_query() function, you will ...
1
No, it won’t. HTML and SQL are totally different languages and you can’t use a single magic function to process them both. Additionally, it depends on the actual context in which the data is inserted into.
As for the SQL Injection, a simple ' will not get properly escaped by HTMLpurifier, which suffices to break out from the SQL string literal.
Regarding ...
-2
A cross site scripting attack allows an attacker to execute code hosted on another server on your webpage. I would say that stripping the tags and running it through the purifier are a good start as long as you aren't whitelisting the that way an attacker can't link or embed code using inline JavaScript.
I would look at a good framework like CodeIgnitor ...
0
No, it's not, and SQL injection != XSS.
You need to escape data to prevent SQL injection before you insert it in the database. I suggest you use PDO and prepared statements instead of *_real_escape_string.
To prevent XSS exploits, escape your data before sending it to the screen as HTML. Usually you do this after you get it from the database. In most cases ...
0
can this function prevent sql injection and xss ?
No.
2
Yes, you can perform an attack: http://jsfiddle.net/vTmq6/1/
<script>
var myVar = "</script><script>alert('hacked');</script>";
</script>
1
A </script> would denote the script element’s end tag regardless of whether the resulting JavaScript code is valid or not. This is due to the restrictions on the contents of raw text elements, which the script element belongs to:
The text in raw text and RCDATA elements must not contain any occurrences of the string "</" (U+003C LESS-THAN SIGN, ...
0
It appears to be by design: http://docs.angularjs.org/api/ng.$http
Read the section on Cross Site Request Forgery (XSRF) Protection.
I just noticed the 403 is coming back from the OPTIONS verb, not GET. jQuery works because it simply does GET, but Angular's $http seems to play by the rules:
AngularJS performs an OPTIONS HTTP request for a cross-origin ...
0
Vulnerabilities like XSS or SQL injection are specific instances of a more general problem: Improperly concatenating attacker-controllable text into some other format (eg, SQL, HTML, or Javascript)
If your server runs any such format (eg, eval()), it can have similar vulnerabilities.
2
You can use Filters to clean your forms. It will fetch all your request attributes and clean them all. Another option is to use JSoup API's. visit following links to know more.
JSoup XSS Api's
Filter approach to prevent XSS threat
EDIT :
Read OWASP sheets to know how to avoid XSS and SQL injection.
OWASP - prevention of XSS
OWASP - prevention of SQL ...
0
This code works:
<html>
<head>
<style type="text/css">
body
{
margin: 0;
overflow: hidden;
}
#iframe1
{
height: 100%;
left: 0px;
position: absolute;
top: 0px;
...
0
Maybe this gem is useful for you. I also wanted to stop repeating html_safe all the time when the content is completely trustable.
http://rubygems.org/gems/html_safe_attribute
0
The HTML specification has whitelist of schemes for registerProtocolHandler() that could be a starting point.
0
In your case htmlspecialchars_decode() makes the function unsafe. Users must not be allowed to insert < character unescaped, because that allows them to create arbitrary tags (and filtering/blacklisting is a cat and mouse game you can't win).
At very minimum < must be escaped as <.
If you only allow plain text with newlines, then:
...
0
The Web adopted solutions like MarkDown Language, exactly for these purposes.
Maybe you should implement a Markdown Editor on the client side and a Markdown decoder on the server side. It will permit your users to format their texts but block them, at the XSS / CSS point of view.
http://daringfireball.net/projects/markdown/
K.
Top 50 recent answers are included



