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
0answers
19 views
Encoding output from trusted sources such as AD
We've been having a debate at work recently about the merits of encoding output data from trusted sources such as an Active Directory. We have a web application that displays list of users that are ...
0
votes
0answers
20 views
Issue with Gson.toJSon for XSS encoding
I am using Gson.toJson(Object src) for XSS encoding.
It encodes the html characters perfectly fine, but adds escape characters for all the quotes ("). The result is a String object that can not be ...
0
votes
2answers
34 views
How to filter XSS out but still allow basic formatting tags
I am working on a website that allows people to enter html formatted content using an editor.
However, I am concerned about XSS injections. The editor obviously filters information on the client ...
0
votes
1answer
138 views
AJAX XSS attacks and .Net MVC
This post describes a tokening system for all JSON HttpGet and HttpPost AJAX calls:
In short, you use the AntiForgeryToken attribute to create a token on the page, and then manually validate that ...
1
vote
2answers
84 views
Can we say we are safe from XSS attacks if we remove all script and java words from input
I am using asp.net htmleditorextender and unfortunately there is no working XSS sanitizer right now. So for as quick solution i am replacing all of the script and java words from user input as below
...
0
votes
2answers
49 views
GWT with XS. No POST, Just OPTIONS. Load cancelled
I have a problem with a GWT Application which is rather simple but using the Cross-Site-Scripting mechanism of gwt in conjunction with the GWT-RPC (Async-Interface).
The Problem is, that the Browser ...
0
votes
0answers
29 views
How to prevent XSS attacks in Drupal views exposed fields?
I am facing XSS attacks problem in Drupal views. Drupal views are accepting XSS code in exposed fields. How to prevent it?
0
votes
1answer
72 views
HtmlAgilityPackSanitizerProvider is not working am doing incorrect?
Asp.net 4.5 , IIS 8
The sanitizer even not removing this simple script
<script>alert('error')</script>
Ok here my config
<asp:TextBox ID="txtMessageBody" TextMode="MultiLine" ...
0
votes
1answer
28 views
Escaping Variables in View?
I'm wondering how to escape variables in my view, in my Node.js project.
For example #{name} in my .jade view file seems vulnerable to SQL Injection or XSS. Is there a standard way to resolve this? I ...
0
votes
1answer
47 views
JSFiddle error: Please use POST request - after NoScript's XSS warning
When I press Run button on JSFiddle, sometimes my NoScript addon will display an XSS warning and the fiddle shows this message instead of my changes:
{"error": "Please use POST request"}
I allowed ...
2
votes
4answers
154 views
Preventing XSS from within HTML elements
Is the following enough to prevent XSS from inside HTML elements?
function XSS_encode_html ( $str )
{
$str = str_replace ( '&', "&", $str );
$str = str_replace ( '<', ...
0
votes
2answers
72 views
XSS fix for JSON in JSP page
During Static analysis I am getting XSS vulnerability in my JSP code. Actually I am forwarding request to JSP page from my servlet. Requets contains a JSON string. In JSP page, I am retrieving appId ...
1
vote
0answers
20 views
Issues in fuzzing parameters on a website and search for cross-site scripting (XSS) vulnerabilities
I am using OWASP's Zed Attack Proxy (ZAP) to fuzz parameters on a website and search for cross-site scripting (XSS) vulnerabilities. After looking at a youtube video ...
0
votes
1answer
22 views
Securing my web application against malicious input
I am in the process of building a basic security layer for my web application. I am seeking validation of the steps that I am taking. The current focus is XSS, so I am not touching databases in this ...
0
votes
0answers
20 views
java.lang.NoClassDefFoundError while using Antisamy liberaries for XSS vulnerabilities
i am preventing my site against XSS attack.
i downloaded the following :
antisamy.jar
AntiSamy Policy Files
NekoHTML.jar
XercesImpl-2.5.jar
places all of them into classpath of my project .
i ...
0
votes
1answer
15 views
Escaping text so it would remain readable
I have a method which looks like this
def full
"#{self.first} #{self.second}"
end
problem is that I want to escape it, so to do it in the model I do
def full
ERB::Util.h("#{self.first} ...
-1
votes
2answers
70 views
how to rename the joomla administrator folder
I want to rename the joomla administrator folder to other name to prevent the hacking from identifying the site is built of joomla . But i have tried this way.
in it, they are using cookies . Is it ...
3
votes
2answers
49 views
Is XSS possible through the MailAddress class?
Considering I parse user input, which is supposed to be an email address, into the MailAdress class:
var mailString = Request.QueryString["mail"];
var mail = new MailAddress(mailString);
Is there ...
0
votes
1answer
36 views
how to use policy of owasp-java-html-sanitizer on a jsp page
i have been given a task to prevent our website from cross site scripting.the concept is new to me and i googled a lot and got owasp-java-html-sanitizer.
i created my own policy with
public static ...
0
votes
1answer
65 views
How should we prevent XSS attacks that *only* break page rendering?
Suppose we have a form that allows entering a piece of markdown as a message body. That text is then render in HTML as JSON on another page:
<html>
<body>
<script ...
1
vote
1answer
34 views
Is Mustache XSS-proof?
I was thinking about my app's XSS vulnerability. On the server side I don't sanitize either input or output, so
<script>alert(document.cookies)</script>
is stored in database exactly ...
0
votes
1answer
52 views
perl cgi talks to javascript
I want to retrieve a csv file from one online database. However, due to some XSS issues, I cant directly use ajax, but need to relay on a perl-cgi file.
I already had a working perl-cgi file that can ...
0
votes
1answer
50 views
How to avoid this injection of script in the url of my application?
I am a new ASP.NET developer and my instructor forced me to develop a secure website/web-based application. After submitting my first application, and he told me that the application is vulnerable to ...
2
votes
0answers
90 views
Is the Primefaces p:editor safe to use?
I mean, the primefaces p:editor uses html to structure the text, so I have to set the escape attribute of h:outputText to false, to show the output without html tags.
I was trying to play around a ...
0
votes
0answers
49 views
How to make the JS code in TokenInput Autocomplete secure?
I am using Tokeninput Autocomplete ([http://loopj.com/jquery-tokeninput/][1]) in one of my pages. But ended up with XSS issues. Below are lines of code from TokenInput Plugin that causes this issue. ...
1
vote
1answer
82 views
XSS between HTTP and HTTPS versions of the same domain
What I'm trying to accomplish is an inline login using ajax that does the following:
Login link is displayed on an unsecured HTTP page, lets say "http://www.somedomain.com/somepage/" No login info ...
3
votes
1answer
58 views
What can go wrong with scripts that have no protocol in their src URL?
Is it totally safe to omit protocol from src URL of scripts that are served from both http and https protocols?
For example jQuery code over Google CDN can be accessed like this:
<script ...
3
votes
1answer
171 views
DOMDocument remove script tags from HTML source
I used @Alex's approach here to remove script tags from a HTML document using the built in DOMDocument. The problem is if I have a script tag with Javascript content and then another script tag that ...
0
votes
0answers
35 views
How can I secure user customizable public stylesheet from using javascript
I want to give an ability for users of a site to be able to theme their pages using css. However, after reading this excerpt on xss from stylesheets I am trying to find a way that prevents this ...
1
vote
4answers
110 views
How i can find 100% sure a JS inside of HTML tag?
I need to save some data with some HTML tags, so I can not use strip_tags for all text and I can not use htmlentities because the text must be modified by the tags. To defend other users against XSS I ...
0
votes
2answers
90 views
Testing for XSS vulnerabilities when URl contains hidden fields
i am checking for XSS vulnerabilities for my portal. the examples that i found on internet says that, if you have a URl like this
http://www.yoursite.com/index.html?name=george
try encoding it ...
2
votes
1answer
79 views
XSS injection php form firefox
I ran XSS me on firefox to test one of my scripts but I'm getting the following message:
The character was found unencoded in the result page with ; / and \ symbols.
The script passes all tests. ...
2
votes
1answer
64 views
PHP OWASP TOP 5 - Protection against Cross-site scripting (XSS) list item 4 and 5
At https://www.owasp.org/index.php/PHP_Top_5#How_to_Determine_if_you_are_Vulnerable_2 link, under title P2: Cross-site scripting > How to Protect Against It; in item 4 and 5 it's written that:
item ...
1
vote
0answers
36 views
How does encoded script executes when used in link?
I am using the following code:
indexRule5.jsp
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 ...
0
votes
2answers
62 views
PHP: <script> tag echoed from $_POST is mysteriously blocked
I'm trying to test information I learned regarding PHP security. I have a simple HTML5 page with a POST form and a single textarea input, where I input the following JS code:
<script>var x = 5; ...
2
votes
2answers
112 views
Why my code vulnerable to xss attack? [closed]
I have php code like this
<?php
$input_from_user = "w' onclick = 'alert(document.cookie);'";
$i_am_barcelona_fan = htmlentities($input_from_user);
?>
<input type = 'text' name = ...
0
votes
0answers
75 views
XSS MySQL Database Accessible? [closed]
I'd like to know if there is any danger of someone being able to access the database via XSS vulnerabilities on this page (or SQLI or any other vulnerability I may have here without realizing it).
I ...
0
votes
0answers
28 views
Storing HTML inside a TextField causes “Refused to execute a JavaScript script.” on REsubmission of the form
I have a ModelFormSet with a TextField on it, which is expected to accept embedded HTML that's spat out from Amazon Simple Pay button creator, which resembles:
<form action="xxx" method="post">
...
0
votes
2answers
62 views
what's the scenario of stealing information with XSS on a POST request
I understand the scenario of stealing information with XSS on a GET post as below workflow:
Hacker identifies a page from a web application with vulnerability of being XSS injected through query ...
0
votes
1answer
50 views
is this a xss attack,why it is invalid?
To test a xss attack,i have the following code :
<html>
<head><title>test xss</title></head>
<body>
<input type="text" id="my_user_name_show" ...
0
votes
2answers
51 views
What is cross site scripting
At this link:http://www.acunetix.com/websitesecurity/cross-site-scripting/ under The Theory of XSS, it says: the hacker infects a legitimate web page with his malicious client-side script. My first ...
0
votes
0answers
25 views
Displaying user input as foreign languages
I just recently encountered a problem that I wasn't really expecting. Up to this point I use htmlentites() to protect against XSS attacks. I don't make it an option for users to enter html so it works ...
1
vote
5answers
142 views
How to display html/javascript code as normal text on page
In my application user can post their status updates, in which there is possibility that thy might post some code html/javascript or any other script, I am storing it in my database, and showing it on ...
0
votes
3answers
66 views
Got hacked with MySQL Injection, need advices [closed]
Today our website got hacked with the following SQL Query:
UPDATE apps SET seller=CONCAT(seller,0x3c736372697074207372633d2268747470733a2f2f7261772e6769746875622e636f6d ...
2
votes
1answer
131 views
SQL Injection in Stored Procedure Query
I have a stored procedure which is going to return search results depending on what the user has typed into a standard search text box. Upon pressing enter in the search box I'm passing the query to ...
1
vote
1answer
108 views
jQuery don't parse escaped HTML in .html() method
Take for example this HTML:
<td onclick="$(this).html('Wanted HTML: <br>; Unwanted HTML: <script>alert('xss')</script>')">
Click to ...
1
vote
2answers
53 views
is there XSS risk when a page outputs 500 error?
I worked on a website in China last year. THe website has been running fine, but I just received an email fromNetwork Security Bureau in China.
They sent me an attachment along with a few URLs. one ...
0
votes
2answers
156 views
How to Remove unwanted Style attributes from HTML String Using PHP DOMDocument
I have prepared a white list of allowed styles and I want to remove all the styles out of the white list from HTML String
$allowed_styles = ...
0
votes
2answers
37 views
PHP DOMDocument hasAttribute is associated to which Elements?
I want to check all the tags under the body and check and remove if it has style attribute
I have tried
$user_submitted_html = "This is Some Text";
$html = '<body>' . $user_submitted_html . ...
1
vote
4answers
308 views
How to perform output encoding using filter to prevent XSS?
I am using the following code in servlet:
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
PrintWriter ...





