This tag is used for topics relating to application security and attacks against software.

learn more… | top users | synonyms (4)

415
votes
163answers
29k views

Worst security hole you've seen? [closed]

What is the worst security hole you've ever seen? It is probably a good idea to keep details limited to protect the guilty. For what it's worth, here's a question about what to do if you find a ...
274
votes
7answers
19k views

Why is char[] preferred over string for passwords?

In Swing, the password field has a getPassword() (returns char[]) method instead of usual getText() (returns String) method. Similarly, I have come across a suggestion not to use Strings to handle ...
274
votes
106answers
29k views

Practical non-image based CAPTCHA approaches?

It looks like we'll be adding CAPTCHA support to Stack Overflow. This is necessary to prevent bots, spammers, and other malicious scripted activity. We only want human beings to post or edit things ...
270
votes
21answers
10k 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 ...
225
votes
23answers
7k views

Exploitable PHP functions

I'm trying to build a list of functions that can be used for arbitrary code execution. The purpose isn't to list functions that should be blacklisted or otherwise disallowed. Rather, I'd like to have ...
166
votes
11answers
9k views

Payment Processors - What do I need to know if I want to accept credit cards on my website?

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 ...
156
votes
10answers
4k views

PHP tutorial that is security-, accuracy- and maintainability-conscious?

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 ...
153
votes
8answers
44k 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 ...
146
votes
10answers
4k views

How are Software License Keys generated?

CD Keys are the defacto-standard as an anti-piracy measure. To be honest this strikes me as Security Though Obscurity, although I really have no idea how CD Keys are generated. What is a good ...
133
votes
12answers
37k 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 ...
131
votes
13answers
12k views

XKCD SQL injection - please explain

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 ...
129
votes
12answers
4k 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 ...
129
votes
15answers
43k views

How do you disable browser Autocomplete on web form field / input tag?

How do you disable Autocomplete in the major browsers for a specific input (or form field)?
127
votes
9answers
40k 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?
114
votes
2answers
9k 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 ...
106
votes
22answers
39k views

Has reCaptcha been cracked / hacked / OCR'd / defeated / broken?

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 ...
105
votes
12answers
9k views

Defeating a Poker Bot

There is a new Open Source poker bot called PokerPirate. I am interested in any creative ways in which a web application could detect/thwart/defeat a poker bot. (This is a purely academic ...
95
votes
13answers
16k views

PHP Session Security

What are some guidelines for maintaining responsible session security with PHP? There's information all over the web, so it's about time it all landed in one place!
93
votes
14answers
13k 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, ...
84
votes
6answers
11k 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 ...
81
votes
8answers
3k 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 ...
80
votes
28answers
9k views

How do you protect your software from illegal distribution?

I am curious about how do you protect your software against cracking, hacking etc. Do you employ some kind of serial number check? Hardware keys? Do you use any third-party solutions? How do you ...
76
votes
28answers
20k views

Best .NET obfuscation tools/strategy [closed]

My product is both ASP.NET, Windows forms app and Windows service. 95% of code is .NET (VB if you must know). For IP reasons, I need to obfuscate the code. I am using an old dotfuscator (over 5 ...
71
votes
17answers
59k views

Why is using Javascript eval function a bad idea?

The eval function is a powerful and easy way to dynamically generate code so what are the caveats?
69
votes
10answers
19k 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?
68
votes
35answers
4k views

What are the most common security mistakes programmers make?

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 ...
67
votes
27answers
6k views

What's with those Do-Not-Use JavaScript People?

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 ...
66
votes
13answers
19k 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 ...
63
votes
4answers
5k 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 ...
61
votes
12answers
3k 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 ...
60
votes
16answers
16k 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 ...
60
votes
27answers
7k views

What is the best way to avoid SQL injection attacks?

I've provided a solution for Python... please flesh this out with examples for other languages.
59
votes
20answers
19k views

GET versus POST in terms of security?

This may be a dumb question, but between a http POST and GET, what are the differences from a security perspective? Is one inherently more secure then another? I realize that POST doesn't expose ...
57
votes
15answers
4k 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 ...
55
votes
9answers
5k 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 ...
54
votes
8answers
1k views

Is “Code Access Security” of any real world use?

I am in the process of studying for the 70-536 .NET Framework - Application Development Foundation Exam, as I have been programming .net for many years, this should not be hard! However I am having ...
53
votes
10answers
3k views

Preferred Method of Storing Passwords In Database

What is your preferred method/datatype for storing passwords in a database (preferably SQL Server 2005). The way I have been doing it in several of our applications is to first use the .NET encryption ...
51
votes
5answers
26k 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 ...
47
votes
8answers
3k views

PHP 2-way encryption: I need to store passwords that can be retrieved

I am creating an application that will store passwords, which the user can retrieve and see. The passwords are for a hardware device, so checking against hashes are out of the question. What I need ...
46
votes
13answers
7k 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 ...
46
votes
13answers
2k views

Found a critical bug, but the company doesn't care [closed]

I know several people who were in a situation like this. Let's say, you were trying out random sites for basic XSS/SQL Injection vulnerabilities, and you've found one that could be easily ...
45
votes
12answers
2k views

What is md5() for?

I was reading this tutorial for a simple PHP login system. In the end it recommends that you should encrypt your password using md5(). Though I know this is a beginners' tutorial, and you shouldn't ...
44
votes
4answers
2k views

What is this hacker trying to do?

If you do a search for: http://www.google.co.uk/search?q=0x57414954464F522044454C4159202730303A30303A313527&hl=en&start=30&sa=N you will see a lot of examples of an attempted hack along ...
44
votes
11answers
1k views

What are best practices for securing the admin section of a website?

I'd like to know what people consider best practice for securing the Admin sections of websites, specifically from an authentication/access point of view. Of course there are obvious things, such as ...
44
votes
17answers
5k views

What reasons are there NOT to use OpenID?

You see a fair bit (in the Geek community anyway) about OpenID. It seems like a good idea. I'm developing a website that will be targeted at a somewhat less geeky audience (but not quite Mom and ...
44
votes
15answers
12k views

Making sure a web page is not cached, across all browsers

Our investigations have shown us that not all browsers respect the http cache directives in a uniform manner. For security reasons we do not want certain pages in our application to cached, ever, by ...
43
votes
20answers
2k views

What is the most secure seed for random number generation?

What are the most secure sources of entropy to seed a random number generator? This question is language and platform independent and applies to any machine on a network. Ideally I'm looking for ...
43
votes
10answers
13k views

Best way to store password in database

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 ...
43
votes
5answers
11k 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. ...
42
votes
9answers
1k views

Help with salt and passwords

I want to implement a salt into my login system but am a bit confused on how this is supposed to work. I can't understand the logic behind it. I understand md5 is a one-way algorithm and all of the ...

1 2 3 4 5 262