This tag is used for topics relating to application security and attacks against software. If your question is not about a specific programming problem, please consider asking it at security.stackexchange.com instead.
1450
votes
24answers
198k views
How to prevent SQL injection in PHP?
If user input is inserted into an SQL query directly, the application becomes vulnerable to SQL injection, like in the following example:
$unsafe_variable = $_POST['user_input'];
mysql_query("INSERT ...
659
votes
9answers
49k views
Why is char[] preferred over String for passwords?
In Swing, the password field has a getPassword() (returns char[]) method instead of the usual getText() (returns String) method. Similarly, I have come across a suggestion not to use Strings to handle ...
486
votes
22answers
17k views
How should I ethically approach user password storage for later plaintext retrieval?
As I continue to build more and more websites and web applications I am often asked to store user's passwords in a way that they can be retrieved if/when the user has an issue (either to email a ...
350
votes
12answers
73k views
Secure hash and salt for PHP passwords
It is currently said that MD5 is partially unsafe.
Taking this into consideration, I'd like to know which mechanism to use for password protection.
Is “double hashing” a password less secure than ...
336
votes
11answers
26k views
How does the SQL injection from the “Bobby Tables” XKCD comic work?
Just looking at:
(Source: http://xkcd.com/327/)
What does this SQL do:
Robert'); DROP
TABLE STUDENTS; --
I know both ' and -- are for comments, but doesn't the word DROP get commented as well ...
294
votes
10answers
101k views
Best Practices for securing a REST API / web service
When designing a REST API or service are there any established best practices for dealing with security (Authentication, Authorization, Identity Management) ?
When building a SOAP API you have ...
279
votes
10answers
98k views
What's the best method for sanitizing user input with PHP?
Is there a catchall function somewhere that works well for sanitizing user input for sql injection and XSS attacks, while still allowing certain types of html tags?
260
votes
17answers
51k views
What should every programmer know about security?
I am an IT student and I am now in the 3rd year in university. Until now we've been studing a lot of subjects related to computers in general (programming, algorithms, computer architecture, maths, ...
249
votes
10answers
9k views
PHP tutorial that is security-, accuracy- and maintainability-conscious? [closed]
Colleagues often ask me: “bobince”, they say*, “I want to learn PHP, but I know you're always ranting on about poor code which is full of errors and security holes. That's why I normally don't like ...
191
votes
21answers
12k views
How to avoid reverse engineering of an APK file?
I am developing a payment processing app for Android, and I want to prevent a hacker from accessing any resources, assets or source code from the APK file.
If someone changes the .apk extension to ...
190
votes
9answers
12k views
Payment Processors - What do I need to know if I want to accept credit cards on my website? [closed]
This question talks about different payment processors and what they cost, but I'm looking for the answer to what do I need to do if I want to accept credit card payments?
Assume I need to store ...
183
votes
11answers
11k views
How are Software License Keys generated?
License Keys are the defacto-standard as an anti-piracy measure. To be honest this strikes me as Security Through Obscurity, although I really have no idea how License Keys are generated. What is a ...
160
votes
11answers
7k views
How serious is this new ASP.NET security vulnerability and how can I workaround it?
I've just read on the net about a newly discovered security vulnerability in ASP.NET. You can read the details here.
The problem lies in the way that
ASP.NET implements the AES encryption
...
141
votes
19answers
100k views
Why is using the JavaScript eval function a bad idea?
The eval function is a powerful and easy way to dynamically generate code, so what are the caveats?
138
votes
21answers
47k views
Has reCaptcha been cracked / hacked / OCR'd / defeated / broken? [closed]
Have any programming methods have been used to defeat reCAPTCHA?
I'm interested in seeing evidence and potentially demonstrations that reCAPTCHA in particular has been made obsolete by completely ...
136
votes
16answers
18k views
What is the best way to stop people hacking the PHP-based highscore table of a Flash game
I'm talking about an action game with no upper score limit and no way to verify the score on the server by replaying moves etc.
What I really need is the strongest encryption possible in Flash/PHP, ...
136
votes
20answers
43k views
Disable browser 'Save Password' functionality
One of the joys of working for a government healthcare agency is having to deal with all of the paranoia around dealing with PHI (Protected Health Information). Don't get me wrong, I'm all for doing ...
133
votes
2answers
34k views
Will web browsers cache content over https
Will content requested over https still be cached by web browsers or do they consider this insecure behaviour? If this is the case is there anyway to tell them it's ok to cache?
132
votes
16answers
42k views
How to secure database passwords in PHP?
When a PHP application makes a database connection it of course generally needs to pass a login and password. If I'm using a single, minimum-permission login for my application, then the PHP needs to ...
128
votes
2answers
10k views
How do Google+ +1 widgets break out of their iframe?
Somehow, hovering over a Google+ plus-one widget can introduce a tooltip-type deal that is clearly larger than the <iframe> element in which it is contained. I’ve inspected the DOM to confirm ...
111
votes
23answers
37k views
Is either GET or POST more secure than the other?
When comparing an HTTP GET to an HTTP POST, what are the differences from a security perspective? Is one of the choices inherently more secure than the other? If so, why?
I realize that POST doesn't ...
111
votes
7answers
25k views
Are PDO prepared statements sufficient to prevent SQL injection?
Let's say I have code like this:
$dbh = new PDO("blahblah");
$stmt = $dbh->prepare('SELECT * FROM users where username = :username');
$stmt->execute( array(':username' => ...
110
votes
10answers
5k views
Android Game Keeps Getting Hacked
So we've been through this several times now, we release a game (for cheap) and someone hacks it and puts it up on a mirror. We setup Google Alerts for all our apps, so we get told daily who's doing ...
102
votes
4answers
14k views
How does this giant regex work?
I recently found the code below in one of my directories, in a file called doc.php. The file functions or links to a file manager. It's quite nicely done. Basically, it lists all the files in the ...
101
votes
6answers
12k views
Is there any way to put malicious code into Regex?
I want to add regex search capability to my public web page. Other than html encoding the output, do I need to do anything to guard against malicious user input?
Google searches are swamped by ...
99
votes
15answers
18k views
Is “double hashing” a password less secure than just hashing it once?
Is hashing a password twice before storage any more or less secure than just hashing it once?
What I'm talking about is doing this:
$hashed_password = md5( md5( plaintext_password ) );
instead of ...
98
votes
4answers
15k views
Where do you store your salt strings?
I've always used a proper per-entry salt string when hashing passwords for database storage. For my needs, storing the salt in the DB next to the hashed password has always worked fine.
However, ...
98
votes
5answers
26k views
What is the best way to implement “remember me” for a website? [closed]
I want my website to have a checkbox that users can click so that they will not have to log in each time they visit my website. What is the best way to implement this? I know I will need to store a ...
96
votes
13answers
80k views
PreparedStatement IN clause alternatives?
What are the best workarounds for using a SQL IN clause with instances of java.sql.PreparedStatement, which is not supported for multiple values due to SQL injection attack security issues: One ? ...
95
votes
27answers
41k views
.NET obfuscation tools/strategy [closed]
My product has several components: ASP.NET, Windows Forms App and Windows Service. 95% or so of the code is written in VB.NET.
For Intellectual Property reasons, I need to obfuscate the code, and ...
93
votes
30answers
12k views
What's with those Do-Not-Use JavaScript People? [closed]
I really don't understand what the problem is with those people who ask you not to use JavaScript on your site.
I went through all sorts of trouble trying to remove a couple of JavaScript scripts ...
93
votes
4answers
27k views
How can I store my users' passwords safely?
How much more safe is this than plain MD5? I've just started looking into password security. I'm pretty new to PHP.
$salt = 'csdnfgksdgojnmfnb';
$password = md5($salt.$_POST['password']);
$result = ...
92
votes
9answers
9k views
When would I need a SecureString in .NET?
I'm trying to grok the purpose of .NET's SecureString. From MSDN:
An instance of the System.String class is both immutable and, when no longer needed, cannot be programmatically scheduled for ...
91
votes
12answers
91k views
Java: What is the best way to SFTP a file from a server
What is the best way to retrieve a file from a server using SFTP (as opposed to FTPS) using Java?
I'll leave the particular definition of best up to you but in my mind it should include free :)
91
votes
8answers
40k views
Best way to store password in database [closed]
I am working on a project that has to have authentication (user name/pass)
It also connects to a database so i figured i would store the user name and password there but it seems like not such a ...
91
votes
6answers
52k views
Security of REST authentication schemes
Background:
I'm designing the authentication scheme for a REST web service. This doesn't "really" need to be secure (it's more of a personal project) but I want to make it as secure as possible as an ...
90
votes
6answers
28k views
SHA512 vs. Blowfish and Bcrypt [closed]
I'm looking at hashing algorithms, but couldn't find an answer.
Bcrypt uses Blowfish
Blowfish is better than MD5
Q: but is Blowfish better than SHA512?
Thanks..
Update:
I want to clarify that ...
81
votes
35answers
6k views
What are the most common security mistakes programmers make? [closed]
There are the obvious wtfs that make the headlines such as SQL injection, authentication in JavaScript but are there other more fundamental and common errors programmmers tend to make when writing ...
81
votes
5answers
6k views
Why do people put code like “throw 1; <dont be evil>” and “for(;;);” in front of json responses? [duplicate]
Possible Duplicate:
Why have “while(1);” in XmlHttpRequest response?
Why does Google prepend while(1); to their JSON responses?
Google returns json like this:
throw 1; <dont be ...
80
votes
8answers
24k views
Fundamental difference between Hashing and Encryption algorithms
I see a lot of confusion between hashes and encryption algorithms and have a general idea of when to use one over the other.
However, I would like to hear some more expert opinions about:
When to ...
75
votes
6answers
21k views
Are HTTPS headers encrypted?
When sending data over HTTPS, I know the content is encrypted, however I hear mixed answers about whether the headers are encrypted, or how much of the header is encrypted.
How much of HTTPS headers ...
74
votes
1answer
60k views
The difference between the 'Local System' account and the 'Network Service' account?
I have written a Windows service that spawns a separate process. This process creates a COM object. If the service runs under the 'Local System' account everything works fine, but if the service runs ...
73
votes
11answers
5k views
Why do salts make dictionary attacks 'impossible'?
Possible Duplicate:
Need some help understanding password salt
Update: Please note I am not asking what a salt is, what a rainbow table is, what a dictionary attack is, or what the purpose ...
73
votes
4answers
54k views
Best way for user authentication on JavaEE 6 using JSF 2.0?
I'm wondering what the current state of art recommendation is regarding user authentication for a web application making use of JSF 2.0 (and if any components do exist) and JEE6 core mechanisms ...
71
votes
1answer
14k views
What are all the user accounts for IIS/ASP.NET and how do they differ?
Under Windows Server 2008 with ASP.NET 4.0 installed there is a whole slew of related user accounts, and I can't understand which one is which, how to they differ, and which one is REALLY the one that ...
71
votes
15answers
6k views
What is the best Distributed Brute Force countermeasure?
First, a little background: It is no secret that I am implementing an auth+auth system for CodeIgniter, and so far I'm winning (so to speak). But I've run into a pretty non-trivial challenge (one that ...
69
votes
5answers
22k views
Do htmlspecialchars and mysql_real_escape_string keep my PHP code safe from injection?
Earlier today a question was asked regarding input validation strategies in web apps.
The top answer, at time of writing, suggests in PHP just using htmlspecialchars and mysql_real_escape_string.
...
69
votes
3answers
21k views
Removing the remembered login and password list in SQL Management Studio
I've recently used our company's spare laptop (that has a general user set up) while mine was being repaired. I've checked the "remember password" option in SQL Management studio when logging in to ...
66
votes
21answers
4k views
Black hat knowledge for white hat programmers
There's always skepticism from non-programmers when honest developers learn the techniques of black hat hackers. Obviously though, we need to learn many of their tricks so we can keep our own security ...
66
votes
28answers
11k views
What is the best way to avoid SQL injection attacks? [closed]
I've provided a solution for Python... please flesh this out with examples for other languages.
