0
votes
4answers
34 views

How to prevent against XSS and SQL injection

i want to check my data from the user for XSS and SQL injection and this is how i tried if (isset($_GET['membernumber'])) { $mem = htmlentities($_GET['membernumber']); $memberparamter = ...
-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 ...
-3
votes
2answers
51 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 = ...
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
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 ...
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 ...
4
votes
1answer
174 views

Sanitizing user inputs with Spring MVC frame work

I am working on web application using spring mvc frame work, i wanted to know is there any best way to sanitize user inputs or common method to sanitize all the user inputs in springs to avoid XSS and ...
2
votes
0answers
245 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 ...
5
votes
1answer
99 views

Vulnerabilities of PHP's (deprecated) mysql module vs. MySQLi & PDOs

I am in charge of maintaining and extending a PHP codebase which began in 2007 and uses the original mysql module. All user input is escaped using casting for values expected to be numerical, ...
0
votes
1answer
214 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); ...
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
1answer
162 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
votes
1answer
54 views

Common Syntax within XSS & SQLI

I'm creating a function which will check over a string (once the string is sent through the function) for common syntax used within SQLI and XSS Attacks; The problem is, that i know only some.. But ...
-2
votes
1answer
146 views

security in symfony2 's post value

i have text box in my website. this text box give text value with form and post method. this form search special text in database. How can I be certain of the safety input data from sql injectin or ...
1
vote
1answer
197 views

Safe way to save html to database

I have a textarea in my page that is a HTML input field. The intention is to allow the user to register a confirmation HTML that will be shown in their users' browser after a certain action is taken ...
0
votes
1answer
540 views

How do Django forms sanitize text input to prevent SQL injection, XSS, etc?

I don't see any form input sanitization in Django's form code w/r/t handling raw text. How does Django ensure that user input is sanitized when going into the database? Does it do this at all to ...
1
vote
2answers
389 views

Codeigniter form validation security

We created a project using Codeigniter and its very cool and efficient. CI have a good form validation feature that which helps to secure the system,however i am suffering to find the right way to ...
0
votes
2answers
413 views

Is it possible to hack mysql_real_escape_string() Htmlspecialchars()? [closed]

I'm using mysql_real_escape_string() and Htmlspecialchars() functions in my PHP code to make it secure against sql-injection and XSS. Is there any possibility to hack these functions? If yes, can you ...
3
votes
5answers
104 views

Is there anything I need to worry about besides SQL injections and XSS attacks?

I'm finishing up my first "real" PHP application and I am trying to make sure it is secure. I'm kind of afraid that since I'm not an "expert" PHP programmer that I might be missing something huge, so ...
0
votes
2answers
106 views

Hardening from XSS using htmlspecialchars

I Own a website for posting forums like questions and answers with a database. I want to hardeen my code to prevent both XSS and SQl injection.. for XSS I used the folloinf function : Strip_tags ...
-3
votes
2answers
144 views

Add addslashes and htmlentities on every request [closed]

How do i put addslashes(htmlentities(...)) on each _POST? if ( isset ( $_POST ) ): foreach ( $_POST as $name => $val ) : $_POST[$name] = addslashes(htmlentities($val)); ...
0
votes
4answers
156 views

What other techniques are there to prevent SQL injections and XSS attacks other than I have listed? [duplicate]

Possible Duplicate: Best way to prevent SQL injection in PHP? I am creating a news site and I have written down a list of things need for achieving security. User + Site interaction ...
0
votes
1answer
92 views

Should asp.net developers take care of xss when request validation is enabled?

As a build-in feature, asp.net supports the request validation. So, when the request validation is enabled, should asp.net developers take care of xss? Is there still any way to complete xss ...
0
votes
1answer
307 views

Grails - Security Encoding By Default

I submitted data up to a controller in Grails and did a javascript injection which worked. I was surprised as I figured the default would be to encode parameters as they came into the controllers. Can ...
1
vote
2answers
141 views

Whether error_reporting(0) in php prevent hacking

Whether using error_reporting(0) in php script will prevent hacking using SQLi or XSS by not reporting error?
0
votes
3answers
162 views

What kind of security does a website without user login functionality need?

So I'm googling this question and can't really find any clear examples since almost all related stories are about websites with user log-in's etc. so my scenario is as follows, asp.net MVC3 website, ...
0
votes
1answer
148 views

Would this sanitize function save from most of attacks?

Would this function save my app from most of incorrect input? User input should be text only with numbers. function sanitize($data){ $data = strip_tags($data); $data = ...
3
votes
2answers
309 views

How can I prevent 2nd order SQL attacks?

I'm using PHP PDO for my queries, everywhere, but I read that in very rare cases there could still be "second order injections" where an unsafe variable is stored then executed when used in another ...
1
vote
2answers
342 views

tools to test a web site for XSS, sql inyection and other vulnerabilities

I'd like to know if there's any automated testing tool to check for vulnerabilities I've seen a couple of reports, and they all seem to be done but automated tools...
0
votes
3answers
283 views

Interpolique: transparently preventing SQL Injection and XSS with base64 encoding, what happened?

For the keynote at The Next HOPE a couple of years ago, Dan Kaminsky unveiled Interpolique (the talk is really fun btw). The problem he raised was how to defend against injection attacks, including ...
0
votes
1answer
100 views

Why fetchArray doesn't apply htmlspecialchars directly?

To avoid SQL injection and XSS we use the function htmlspecialchars() or others like escapeString. If we have to use this function every time that we construct a SQL query and get the results, why ...
11
votes
2answers
4k views

CSRF, XSS and SQL Injection attack prevention in JSF

I have a web application built on JSF with MySQL as DB. I have already implemented the code to prevent CSRF in my application. Now since my underlying framework is JSF, I guess I don't have to handle ...
2
votes
2answers
152 views

What are the best practices to avoid XSS and SQL Injections attacks (platform agnostics)?

I wish there was a do/don't list (such as input sanitation, etc.) which when respected, such attacks are nearly impossible to succeed.
0
votes
2answers
275 views

PHP input Filtering using New 5.2, Want to change from $_POST/GET, how to sanitize these?

I want to use the new PHP 5 > input filtering to sanitize and validate posted data, I understand how to use the filter_input function. But I dont understand exactly what I need to sanitize data for ...
0
votes
4answers
332 views

How to prevent XSS attack in my function?

I am creating a function for my $_POST inputs to prevent SQL Injection BEFORE adding the values into database. I use it on login/register and when a user needs to post an article. As far as I know, ...
0
votes
1answer
393 views

Once something is HTML or URL encoded should it ever be decoded? Is encoding enough?

First time AntiXSS 4 user here. In order to make my application more secure, I've used Microsoft.Security.Application.Encoder.UrlEncode on QueryString parameters and ...
1
vote
2answers
218 views

WYSIWYG and XSS

I'm using TinyMCE as my online editor but I'm concerned of XSS attacks etc.. I though of replacing all < and >, but that doesn't seem to be an option with this kind of editor and I'm not sure ...
2
votes
3answers
6k views

A PHP function to prevent SQL Injections and XSS

I am tring to make my PHP as secure as possible, and the two main things I am trying to avoid are mySQL Injections Cross-Side Scripting (XSS) This is the script I got against mySQL Injections: ...
1
vote
2answers
433 views

Classes to Protect from SQL/XXS attacks?

I'm building a MVC application for managing a creative portfolio (Going to put it on git hub). I need something to secure the DB connections, basically I have one class to manage ALL DB transactions. ...
0
votes
5answers
2k views

Is FILTER_SANITIZE_STRING enough to avoid SQL injection and XSS attacks?

I'm using PHP 5 with SQLite 3 class and I'm wondering if using PHP built-in data filtering function with the flag FILTER_SANITIZE_STRING is enough to stop SQL injection and XSS attacks. I know I can ...
1
vote
5answers
1k views

PHP attack through url [closed]

my website was recently attacked and in the log i found some requests like : I found some suspicious files and folders in my root directory and someone has written on home page that "you are hacked". ...
1
vote
1answer
176 views

how to check sql injection and other php vulnerability in my site?

how do i check sql injection, XSS, and CSRF in my php site ? for example i have a pages like viewentry.php?id=3 How to check such pages ?
4
votes
2answers
514 views

Where can I find an exhaustive list of web attack strings [closed]

I'm looking for exhaustive list(s) of web attack strings, which includes as many possible injection strings as possible, including SQLis , XSS, XPATH injections, SSIs, etc. Preferably encoded in ...
4
votes
3answers
856 views

Is worrying about XSS,CSRF,sql injection, cookie stealing enough to cover web-security?

Web applications on uncompromised computers are vulnerable to XSS,CRSF,sql injection attacks and cookie stealing in unsecure wifi environments. To prevent those security issues there are the folowing ...
3
votes
3answers
2k views

List of characters to be restricted for protection against XSS and SQL Injections?

I have gone through a lot of articles out there to find out a simple list of characters that can restrict a user from inputting for protecting my site against XSS and SQL Injections, but couldn't find ...
0
votes
2answers
263 views

Should I still escape? $_GET and XSS, SQL Injection and other PHP Security Concerns

If I am retrieving data with $_GET from the URL string and not displaying that data back on a webpage or doing any SQL actions with it, should I still consider using escape, regular expression and ...
0
votes
0answers
576 views

Help me “hack” on a just released SharePoint 2010 site just launched [closed]

As the title might suggest, where I work, we just launched a new site that was developed (outsourced) in SharePoint 2010. I don't want to give out the url, but would love to hack on it for any ...
7
votes
4answers
5k views

Hacking training simulator

I've never tried to hack sites. I've just followed security guidelines. Now I want to try to develop more safety. Is there are any "training sites" with holes and "exercises", with SQL injections, ...
0
votes
3answers
1k views

best way to filter data from user(xss and sql injection)

I read a lot about filtering data which my web site get from user to make web site secure in sql injenction and xss . . . but I saw a lot function in php so I can't make decide what to do . . . please ...
0
votes
2answers
482 views

Role of semi-colon in sql injection and xss attacks

I've been told to use (python's) cgi.escape() function to avoid sql injections and xss attacks, although I'm sure that django automatically escapes variables. Reading about such attacks, it seems to ...

1 2