Tagged Questions
-1
votes
2answers
25 views
Will the use of secure protocols such as HTTPS or SFTP eliminate SQL injection and XSS attackes? why?
I am not working with any code I am just trying to get a better understanding of security based around SQL Injection and XSS attacks. My main questions is 'Will the use of HTTPS or SFTP eliminate SQL ...
-4
votes
1answer
65 views
User entered Javascript security implications [closed]
I'm creating a web site that lets people create their own site using a subdomain. Are there any security implications by letting people add custom javascript to their pages? If so, which ones? XSS? ...
0
votes
3answers
52 views
XSS - is it only possible by using JavaScript?
I understand there are lots of questions concerning Cross-Site Scripting on the SO and tried to read the most voted ones. Having read some webpages too I'm still unsure about all possibilities that ...
1
vote
1answer
40 views
Preventing XSS in ASP.Net Webforms: why is Validate Request not enough?
I'm looking for ways to protect our website from XSS attacks. At this point I am concerned about sanitizing/protecting the input only. I am aware of the need to encode the output, but that's out of ...
-3
votes
2answers
49 views
can this function prevent sql injection and xss?
function clean( $value ) {
if(function_exists( "mysql_real_escape_string" ) ) {
if( get_magic_quotes_gpc() ) { $value = stripslashes( $value ); }
$value = ...
5
votes
1answer
116 views
HTML5 Cross-document messaging: can Malicious code sniff messages between domainA.com and domainB.com?
According to 10.4 Cross-document messaging: domainA.com can send messages to domainB.com using cross-document messaging in the way that prevents cross-site scripting attack when origin and data ...
2
votes
3answers
61 views
How to avoid XSS and CSS but allow users to use some HTML tags?
I need a way:
to lets users to use ONLY <strong> and <p> tags.
to avoid users to use CSS with these tags ( for example this must NOT works: <p style="margin:1000px;"> hello ...
0
votes
1answer
47 views
Cross domain authentication across an iframe without login
I want the user to be able to submit and render untrusted HTML within an application on say domain example1.com. In order to prevent malicious XSS from capturing the user's cookies the idea was to ...
-3
votes
1answer
61 views
Wordpress XSS vulnerabilty (grabbing PHPSESSID)
I just started to study the vulnerability of websites and I've got a doubt about a Wordpress's XSS vulnerability. With this exploit, an attacker can grab the PHPSESSID with a simple Javascript's ...
0
votes
1answer
35 views
php security and ajax requests
I have some simple scripts on my site that allow users to accomplish tasks like
calculating date differences, do math calculations etc. The website is about 95%
pure html (not php generated), except ...
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 ...
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 ...
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 ...
3
votes
1answer
57 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 ...
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 ...
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. ...
0
votes
0answers
74 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
2answers
61 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
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
4answers
306 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 ...
0
votes
0answers
47 views
Using sameorigin to add security to AJAX calls, and prevent XSS
I have an anti-XSS token I want to send to my AJAX clients over a secure link.
I intend to access a variable stored within somejavascriptfile.js but want it safe from XSS attacks and want to use ...
1
vote
5answers
82 views
New Way To Prevent XSS Attacks
I have a website related to entertainment. So, I have thought to use a new method to prevent XSS Attack. I have created the following words list
alert(, javascript, ...
1
vote
2answers
139 views
htmlpurifier removes all the formatting done by CKEDitor
I am using CKEditor to let the user post their comments. I thought to use the htmlpurifier to secure my html. But when I tried it, it actually removes all the formatting done by CKEditor.
The ...
2
votes
3answers
148 views
Regular expressions to prevent XSS or something else?
I am trying to protect my website from Cross-Site Scripting (XSS) and I'm thinking of using regular expressions to validate user inputs.
Here is my question: I have a list of dangerous HTML tags...
...
3
votes
2answers
167 views
Is a XSS attack possible when the point of injection is the value of the style attribute?
Example code:
<!DOCTYPE html>
<html lang="en">
<head><title>XSS test page</title></head>
<body>
<p>
<?php
$style = ...
0
votes
0answers
16 views
Access server through AJAX from local with IE8
I am talking about the same origin policy, which I want to disable so I can open a local page that has a JS script using the $.ajax() function to get data from a remote server.
On Chrome this works ...
0
votes
1answer
248 views
how to set httponly and session cookie for java web appliaction
Hi I am working on XSS(cross site scripting) issue. my application develop on oracle weblogic portal. we use Servlet 2.5 version.
I have added below 3 lines of code in the filter for setting ...
0
votes
1answer
27 views
Should i just use html sanitizer on “rich html values”?
Do i need to sanitize all string values passed to my controller or just rich html like editors?
What about input , type text fields?
<input type="text" name"test1" ...
1
vote
0answers
71 views
Are there any security issues setting `document.domain = document.domain;`?
I'm hoping to build an application which allows subdomain.domain.com to open a popup window at domain.com and manipulate that window.
To do this, I need to set document.domain to the same value on ...
0
votes
2answers
36 views
JavaScriptEncode doesn't look right
I need to encode some javascript on the server side that is getting injected into the html. I'm using Microsoft.Security.Application.Encoder.JavaScriptEncode() but it ends up looking like this from ...
-2
votes
1answer
56 views
XSS vulnerabililty script tags encoding [closed]
I have a security scan that reports a XSS vulnerabililty when setting an http parameter to the following value. It renders a script tag
...
8
votes
4answers
291 views
How I protect against XSS attacks in attributes such as src?
So I've been building a C# html sanitizer using html agility with a white list. It works fine, except for cases like these:
<img src="javascript:alert('BadStuff');" />
<img ...
0
votes
2answers
57 views
preventing xss hole in django
In the Django docs it says:
Django templates escape specific characters which are particularly
dangerous to HTML. While this protects users from most malicious
input, it is not entirely ...
1
vote
1answer
241 views
Codeigniter xss vulnerabilities and other problems with security
When i scanned my site with "Acunetix Web Vulnerability Scanner" i was very surprised. Programm show a lot of xss vulnerabilities on page when i use get parameters with xss filtration.
For example:
...
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
81 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 ...
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
71 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 ...
0
votes
1answer
139 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 ...
2
votes
2answers
187 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
264 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 ...
1
vote
2answers
162 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 ...
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, "@")
...
0
votes
1answer
160 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 ...
1
vote
1answer
54 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
111 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
102 views
Security checklist for a CodeIgniter application launch
Does anyone know of a good security checklist before launching a CodeIgniter application.
We have tested for known PHP security flaws and are wondering if there are any measurements to be taken when ...
-1
votes
1answer
51 views
Tools/Script to check Vulnerabilities [closed]
There is a tool or maybe better, a server side script to check if your site is secure against SQL Injection / XSS ?
I'm Using PHP.
I looked a bit on google, but i'm asking you for a precise answer, ...
1
vote
2answers
86 views
Facebook iFrames and XFS risks
We want to do a Facebook app for our brand page, where a form will be brought in from a secure domain that we own. But our finance department seems unwilling to allow this because of "cross frame ...
0
votes
1answer
79 views
Is it dangerous to allow the user to input HTML entities?
I'm trying to figure out what the the minimum amount of encoding would be that would protect a site from XSS.
I know for sure I'll need to encode < (<) and > (>) inside of tags, " ...






