vote up 75 vote down star
69

Subject says it all, probably a good idea to keep details basic to protect the guilty.

See also another question about what to do once you find a security hole.

flag
22  
Should be community wiki imo... – ChristopheD Sep 24 at 5:38
7  
the 60 answers and 28 upvotes would seem to outweigh the 5 votes to close (that took all day to accumulate, AFAIK). but I will refrain from voting to reopen until this has been discussed. – rmeador Sep 24 at 22:57
3  
Even if your question has been community wiki for hours, the comment is still a good comment to upvote, as it reminds people that questions similar to this one should be community wiki. That's what I think. – Joren Sep 25 at 19:44
show 7 more comments

91 Answers

1 2 3 4 next
vote up 5 vote down

Mine would be discovering an ODBC DSN used for reporting, where the password matched the user, and the user belonged to the database server administration group.

So any PC with this ODBC DSN could read/alter all data (and worse) through the report user, using any ODBC compatible tool. No authorization required, and authentication was as weak as you can get.

I was working in a public hospital, and the software was installed on nearly every PC in every government hospital in the state, with the database server containing all sorts of sensitive medical data (full patient details, lab test results, etc.)

Worst of all, we quietly reported the security hole, then officially, and it still wasn't fixed in the 2 years I remained working there, and that was 5 years ago.

link|flag
1  
Assuming this was in the US, some people could have gotten into an awful lot of trouble. – David Thornley Sep 24 at 13:40
1  
Absolutely. Won't mention which country or state, but the government spent a LOT of money on this software (including hardware rollout + support it was 8 figures). The most frustrating part was how simple the fix would be...moving the user out of the db server admin group to somewhere where only read access was granted (on appropriate tables). – Si Sep 24 at 23:49
vote up 4 vote down

A peer once tweeted his password by accident... that was a pretty bad security hole.

link|flag
17  
Thats a "stupid mistake", not a security hole. But it nicely demonstrates how even very secure software can be thwarted by human error. :-) – JesperE Sep 24 at 5:41
3  
The first time I heard about this it was a guy who logged on as root, but he happened to have his IRC-program active instead of his local terminal... – JesperE Sep 24 at 5:42
1  
Huge productivity boost? Since you are hovering, you already have your hand on the mouse. Clicking once isn't that much work...?? – Svish Sep 28 at 12:13
show 2 more comments
vote up 74 vote down

The worst hole I've ever seen was a bug in web application where giving empty user name and password would log you in as administrator :)

link|flag
44  
A bug or a feature for lazy developers? :) – Si Sep 24 at 5:47
2  
Happened to me too. – Ionut G. Stan Sep 24 at 9:45
2  
why would you do a LIKE with a username?... so I could be admin by typing adm when I ment to type Adam – Matthew Whited Sep 24 at 18:27
2  
Most companies give you three attempts to log in under a given user-ID before they lock out the account. So it's trivially easy to lock out someone elses account with three bad passwords. – Loadmaster Sep 24 at 22:38
show 7 more comments
vote up 10 vote down

When I use Adium, the password field pops up, but I still have focus in the main screen so the whole world knows my password when I hit enter and don't realize it.

link|flag
3  
The good old IRC fault: <n4p> msg NickServ identify my1super2secret3passwort4 * n4p has been ghosted * – furtelwart Sep 25 at 6:46
vote up 11 vote down

When I was 13 years old my school opened a social network for the students. Unfortunately for them I found a security bug where you could change the URI to another userID like "?userID=123" and become logged in for that user. Obviously I told my friends, and in the end the schools social network was filled with porn.

Wouldn't recommend it though.

link|flag
vote up 20 vote down

Though this is not the worst security hole I’ve ever seen. But this is at least the worst I’ve discovered myself:

A pretty successful online shop for audiobooks used a cookie to store the identification information of the current user after successful authentication. But you could easily change the user ID in the cookie and access other accounts and purchase on them.

link|flag
show 1 more comment
vote up 13 vote down

The company I last worked for had their FTP username and password identical to the name of their domain. They didn't quite bother with repeated warnings.

Needless to say, it didn't take a long time for the site to go under. No online backups so they basically had to rebuild the whole thing. But it doesn't end there. The new secure password after this incident was the same... with 123 added on.

link|flag
4  
Passwords have been around for a long time. You'd think even laypeople would know what the worst passwords are. – Elizabeth Buckwalter Sep 24 at 16:42
show 1 more comment
vote up 30 vote down

Giving 1=1 in a textbox lists all the users in the system.

link|flag
131  
Greetings from Bobby Tables. – Gumbo Sep 24 at 5:50
vote up 25 vote down

Right at the start of the .com era, I was working for a large retailer overseas. We watched with great interest as our competitors launched an online store months before us. Of course, we went to try it out... and quickly realized that our shopping carts were getting mixed up. After playing with the query string a bit, we realized we could hijack each other's sessions. With good timing, you could change the delivery address but leave the payment method alone... all that after having filled the cart with your favorite items.

link|flag
show 1 more comment
vote up 0 vote down

Web app on IIS, there was no file upload filter. So you could upload exe, and do smf fun ;)

link|flag
show 3 more comments
vote up 23 vote down

Committing the database root password to source control by accident. It was pretty bad, because it was source control on Sourceforge.

Needless to say the password got changed very quickly.

link|flag
35  
OK, the password got changed very quickly... but by whom? – Eamon Nerbonne Sep 24 at 13:58
2  
Scott Hanselman has confessed to this one too – lagerdalek Sep 24 at 22:42
vote up 4 vote down

Maybe a bit of an anecdotal story here (but since it's the worst security hole I found)...

There was a company which sold a custom CMS (for websites) to a number of companies/organisations (including ours unfortunately). They use quite a bit of (mostly 'LGPL') components they did not make. Lots of clients (including government).

  1. Authentication for access to different parts of the website (and the CMS administration system) was handled correctly.
  2. They used FCKEditor instances in their CMS (for allowing non-html-savy users to edit webpages).
  3. They also used FCKEditor's 'upload-connector' scripts to allow users to add documents, images etc... to the site. The url to this script was hardcoded in one of the publicly visible javascript inludes.
  4. They failed to have authentication on the urls with the upload scripts.

Result: on every site they built one could (without entering credentials whatsoever) alter/delete/change/upload every single document/file and/or image on the website.

We reported this gaping security hole as soon as we found out so it may not have led to direct damage (but it could have easily).

link|flag
vote up 138 vote down

True story from my early days at Microsoft.

You haven't known fear until the day you wake up and see the headline on ZDNet.com that morning is "Worst Internet Explorer Security Hole Ever Has Been Discovered In 'Blah'" where 'Blah' is code you wrote yourself six months previously.

Immediately upon getting to work I checked the change logs and discovered that someone on another team -- someone we trusted to make changes to the product -- had checked out my code, changed a bunch of the security registry key settings for no good reason, checked it back in, and never got a code review or told anyone about it. To this day I have no idea what on earth he thought he was doing; he left the company shortly thereafter. (Of his own accord.)

(UPDATE: A few responses to issues raised in the comments:

First, note that I choose to take the charitable position that the security key changes were unintentional and based on carelessness or unfamiliarity, rather than malice. I have no evidence one way or the other, and believe that it is wise to attribute mistakes to human fallibility.

Second, our checkin systems are much, much stronger now than they were twelve years ago. For example, it is now not possible to check in code without the checkin system emailing the change list to interested parties. In particular, changes made late in the ship cycle have a lot of "process" around them which ensures that the right changes are being made to ensure the stability and security of the product.)

Anyway, the bug was that an object which was NOT safe to be used from Internet Explorer had been accidentally released as being marked "safe for scripting". The object was capable of writing binary files -- OLE Automation type libraries, in fact -- to arbitrary disk locations. This meant that an attacker could craft a type library that contained certain strings of hostile code, save it to a path that was a known executable location, give it the extension of something that would cause a script to run, and hope that somehow the user would accidentally run the code. I do not know of any successful "real world" attacks that used this vulnerability, but it was possible to craft a working exploit with it.

We shipped a patch pretty darn quickly for that one, let me tell you.

I caused and subsequently fixed many more security holes in JScript, but none of them ever got anywhere near the publicity that one did.

link|flag
36  
+1 for honesty and lack of ego. – Justicle Sep 24 at 7:58
26  
Arguably, this is actually 2 security exploits; the other one being how to get code onto a production build server without anyone noticing / approving the change ;-p – Marc Gravell Sep 24 at 11:30
4  
"had checked out my code, changed a bunch of the security registry key settings for no good reason, checked it back in, and never got a code review or told anyone about it" -- doesn't sound like incompetence to me, it sounds like malicious intent from someone knew exactly what they were doing. – Juliet Sep 24 at 13:57
2  
Based on the other changes that were made in that checkin I choose to take the charitable position that it was incompetence, not malice. But like I said, we'll never know. – Eric Lippert Sep 24 at 17:33
15  
"Never attribute to malice that which can be adequately explained by stupidity." -- Hanlon's Razor – Loadmaster Sep 24 at 22:27
show 6 more comments
vote up 40 vote down

Being an application security consultant for a living there are lots of common issues that let you get admin on a website via something. But the really cool part is when you can buy a million dollars worth of socks.

It was a friend of mine working on this gig but the jist of it was that prices for items in a certain now very popular online book (and everything else) shop were stored in the HTML itself as a hidden field. Back in the early days this bug bit a lot of online stores, they were just starting to figure out the web. Very little security awareness, I mean really who is going to download the HTML, edit the hidden field and resubmit the order?

Naturally we changed the price to 0 and ordered 1 million pairs of socks. You could also change the price to negative but doing this made some part of their backend billing software buffer overflow ending the transaction.

If I could choose another it would be path canonicalization issues in web applications. It's wonderful to be able to do foo.com?file=../../../../etc/passwd

link|flag
1  
Awesome, you'd never have a missing left sock ever again! – Si Sep 24 at 6:30
35  
Did you ever get the socks? – Alex Barrett Sep 24 at 9:55
9  
The order went through and the fulfillment system alerted the warehouse. We realized it probably worked and told our point of contact that they should stop the order. Apparently a bit later a warehouse manager called in asking about the order to be sure it was real. He was wisely of the mind that it was a software error. – Collin Sep 24 at 21:06
show 1 more comment
vote up 2 vote down

Used to hack Novel Login (DOS prompt). Wrote a C program to simulate Login prompt and write to the file whatever the login/passowrd is and give output as Invalid password.

Had Fun in college days..

link|flag
5  
Not security hole. More like phishing. If you can get physical access to a box then it has at least 1000 holes. – SyaZ Sep 24 at 10:50
show 1 more comment
vote up 14 vote down

Mine would be for a bank I was a customer of. I wasn't able to log on, so I called customer service. They asked me for my user name and nothing else - didn't ask any security questions or try to verify my identity. Then instead of sending a password reset to the email address they had on file, they asked me what email address to send it to. I gave them an address different than what I had on file, and was able to reset my password.

So essentially, all a hacker would need is my user name, and he could then access my account. This was for a major bank that at least 90% of people in the United States would have heard of. This happened about two years ago. I don't know if it was a poorly trained customer service rep or if that was standard procedure.

link|flag
8  
and what bank is it, please? – Wbdvlpr Sep 24 at 9:16
3  
@Si: it writes 'I WAS a customer of...'. I think that answers the question. :) – ShdNx Sep 24 at 10:53
2  
This was Washington Mutual, which was seized by the FDIC and sold to Chase early this year. They also had strange error messages. When I tried to set my password from the temp one I kept getting a "Passwords don't match" error, even though they were the same and I even copy/pasted. I realized that if I put "invalid characters" like a forward slash, instead of saying invalid characters, it would give me that other message. – Sean Sep 24 at 19:44
5  
@Elizabeth: Uhm... you realize that's to prevent phishing right? If someone tries to copy or mimic the bank website it can look exactly the same, but presumably they don't have access to the database, so they can't pull up the right security picture. That's why that's there. Not all users are smart enough to check the cert (which might be similarly bluffed) – Mark Sep 26 at 2:20
2  
Protecting your financial accounts is overkill? ... – d03boy Sep 27 at 15:57
show 6 more comments
vote up 2 vote down

Saw a door that somebody forgot to lock once...

Alternatively, saw some JavaScript which executed some SQL via an Ajax call. Only problem was that the SQL to be run was rendered with the page and then passed to the service...

link|flag
show 1 more comment
vote up 0 vote down

The biggest security hole is that when web developer designed open-password field sign-up form. The password field shows what you typed and not blank it out. This way when you're signing-up form on public computers could see what you typed on password field. Many websites do have sign-up form like this.

I'm sure there are few website with low-security that password and logins of users are easily accessible to admins.

link|flag
3  
Some experts believe that password masking is bad for usability. useit.com/alertbox/passwords.html – AJ Sep 24 at 11:19
show 5 more comments
vote up 10 vote down

An online DVD-rent-shop in Sweden sent pure SQL-statements in the querystring.

If you selected for example category "Comedy" in the menu-frame, it then sent "select * from movies where category=2" as querystring to the movielist-frame, that then executed the SQL-statement and showed all movies matching the criteria.

Same thing when adding movies to your order.

Just change the query to "delete * from movies" and "Delete * from orders" would make the day for that company.

link|flag
4  
Assuming, of course, that the app had permissions to do that. I wouldn't be surprised if it did, but it's perfectly possible to grant somebody select permission on a table and nothing else. – David Thornley Sep 24 at 13:38
3  
Even if the db permissions were limited, you're still suddenly vulnerable to any db-specific exploits, (and most people don't religiously upgrade their db software) and probably denial-of-service attacks. – Eamon Nerbonne Sep 24 at 14:04
show 2 more comments
vote up 65 vote down

The old IBM System 36 dumb terminals had a keyboard combination that started the recording of a macro. So when a terminal was not logged in, you could start the recording of a macro and leave it in that position. Next time someone logged in, the keystrokes would be recorded in the macro and the recording would end automatically when maximum allowed keys was recorded. Just come back later and replay the macro to autolog-in.

alt text

link|flag
vote up 56 vote down

I saw this one in The Daily WTF.

<script language="javascript">
<!--//
/*This Script allows people to enter by using a form that asks for a
UserID and Password*/
function pasuser(form) {
    if (form.id.value=="buyers") { 
        if (form.pass.value=="gov1996") {              
            location="http://officers.federalsuppliers.com/agents.html" 
        } else {
            alert("Invalid Password")
        }
    } else {  
        alert("Invalid UserID")
    }
}
//-->
</script>

Nothing can beat this IMHO.

link|flag
7  
I think this may be not as stupid as you think. This trivial password might work like the button "yes, I am from the federal governemnt" with the difference that a person who tries to misuse it, if caught, can also be prosecuted for "providing false credentials" (or how they call it?) – ilya n. Sep 24 at 10:20
16  
ilya : It's Javascript, so it's visible to the user. After seeing that, you can just go to officers.federalsuppliers.com/agents.html, bypassing any kind of control. – Cédric Bertolini Sep 24 at 12:04
14  
Don't worry, as long as the web site is copyrighted, the DMCA provides 100% protection. You're not allowed to "circumvent" the Javascript. – Steve Hanov Sep 24 at 13:33
3  
@Steve Hanov: You have an interesting definition of "circumvent" If I type that url into my browser... or even copy/paste it... I'm not bypassing anything, I'm just using my browser to go to an address I put in my address bar. Which is one of the intended purposes of a web browser. – R. Bemrose Sep 24 at 13:39
10  
congrats, you're innocent, too bad it costs 300k to convince a jury that – Dustin Getz Sep 24 at 13:59
show 5 more comments
vote up 11 vote down

I'll share one I created. Kind of.

Years and years and years ago the company I was working for wanted indexing on their ASP web site. So off I went and set up Index Server, excluded a few admin directories and all was good.

However unknown to me someone had given a sales person ftp access to the web server so he could work from home, this was the days of dialup and it was the easiest way for him to swap files.... and he started uploading things, including documents detailing the markup on our services.... which index server indexed and starting serving up when people searched for "Costs".

Remember kids, whitelists not blacklists.

link|flag
22  
I think "whitelists not blacklists", while often good advice, is not the correct lesson to learn here. The correct lesson is "don't put private data on a public server". Also, "don't let sales people access the server". – rmeador Sep 24 at 15:23
show 1 more comment
vote up 208 vote down

From early days of online stores:

Getting a 90% discount by entering .1 in the quantity field of the shopping cart. The software properly calculated the total cost as .1 * cost, and the human packing the order simply glossed over the odd "." in front of the quantity to pack :)

link|flag
17  
that is awesome. – BlueNovember Sep 24 at 11:11
15  
This is definitely an argument in favor of using a strongly typed system. – R. Bemrose Sep 24 at 14:00
11  
What's the site? I want a 90% discount!!! – amischiefr Sep 24 at 14:27
8  
Maybe you should have requested a .10 percent quanity instead. ;) – MiffTheFox Sep 26 at 3:08
10  
Jeff Bezos mentioned that in the very early days of Amazon, you could have a negative quantity of books and Amazon would credit your account (and presumably wait for you to ship it to them). See 0:47 at youtube.com/watch?v=-hxX_Q5CnaA – Jeff Moser Sep 29 at 20:18
show 3 more comments
vote up 71 vote down

I hope you can spot what's wrong here. (Terribly wrong, in fact):

String emailBody = "";

for (int i = 0; i < subscribers.Count; i++)
{
    emailBody += "Hello " + subscribers[i].FirstName + ",";
    emailBody += "this is a reminder with your account information: \n\n:";
    emailBody += "Your username: " + subscribers[i].Username + "\n";
    emailBody += "Your password: " + subscribers[i].Password + "\n";
    emailBody += "Have a great day!";

    emailDispatcher.Send(subscribers[i].EmailAddress, emailBody);
}

The last recipient was the happiest ;)

link|flag
60  
Are you talking about the fact that you store plain-text passwords or the fact that the emailBody is never cleared? I'm not even sure which is worse. – Kristof Provost Sep 24 at 10:38
58  
You mean not using StringBuilder? :D (Just kidding.) – ShdNx Sep 24 at 10:42
20  
@Kristof - I'm guessing he means the fact that the last user gets a list of ALL the users and passwords. :) – Don Branson Sep 24 at 10:51
8  
I like the remark at the end! ;) – Gumbo Sep 24 at 10:53
27  
I absolutely loathe systems that email me back my password as part of the registration process. This has two flaws: 1. They're storing my plaintext password somewhere within their system. If not their permanent user database, definitely their registration processing system. 2. It was sent via EMAIL, either plain text or HTML, SMTPing its way through mail relays across the internet. There's a number of men-in-the-middle which could intercept this. At the very least, if you feel the need to send me emails with secure information, let me specify my public PGP key to you to encrypt it! – Jesse Slicer Sep 24 at 15:06
show 16 more comments
vote up 4 vote down

I inherited a client project to baby-sit: an ASP.NET project (built back on 1.1) that was 50% compiled DLL's (with no source) and 50% code-behind JIT compiled.

The entire site was supposed to be members only - except the original developer had built a back-door: simply submit the login form with a blank username and password, and you would find yourself logged in as a secret super-admin: do anything, see everything.

You guessed it: all of the authentication code was hidden away in the pre-compiled DLL. The worst thing was when I was informed "it was not on the list of bugs, and the client won't pay, so leave it". So I did, and it's still live today.

link|flag
show 4 more comments
vote up 12 vote down

How about a online document manager, which allowed to set every security permission you could remember...

That is until you got to the download page... download.aspx?documentId=12345

Yes, the documentId was the database ID (auto-increment) and you could loop every single number and anyone could get all the company documents.

When alerted for this problem the project manager response was: Ok, thanks. But nobody has noticed this before, so let's keep it as it is.

link|flag
19  
I really hate that attitude, been getting it a few times. Makes me want to let others do it just to teach 'em a lesson. – SyaZ Sep 24 at 10:47
show 1 more comment
vote up 18 vote down

Not changing admin passwords when key IT employees leave the company.

link|flag
13  
I've got one worse -- I left a university after having been strung along, with the directory telling me they were creating a higher grade job for me after I had graduated, but I later found out he told my manager they were not to promote me. Needless to say, I wasn't happy about it. I specifically told my manager to change every password I had access to. The week after I left, I get an e-mail from my manager with the root password, 'just in case I needed it'. I contacted the sysadmin to make sure it was changed again, as I didn't want to take the fall if something went wrong. – Joe Sep 24 at 13:53
4  
@Sophomore: I recall in Feynman's biography him commenting that many of the giant, ultra-secure safes housing the Manhattan project secrets were left in the default combinations. – Brian Sep 24 at 19:48
show 2 more comments
vote up 7 vote down

Stocking credit card information in a database with no encryption ( WHOLE information: number + expiration date + cryptogram). In addition, the database was used as a kind of CRM, so lots of sales people can access it with a not-secure-at-all password. (Who haven't changed it since I left the company 3 years ago.)

link|flag
3  
I'm sure there are quite a few of us who have worked for companies which (illegally) store credit card details. – Si Sep 24 at 10:59
3  
wow I get pissed off everytime amazon tries to remember my creditcard number... DON'T HELP ME... I don't want my account saved on your servers. – Matthew Whited Sep 24 at 18:42
1  
@Brandon Hansen: I don't know that it's illegal in the USA, but it is grounds to have your ability to handle Visa cards revoked immediately. – David Thornley Oct 2 at 17:34
show 1 more comment
vote up 4 vote down

I don't know if this is the worst, since I've seen some that were pretty bad, but:

Years ago, a place I worked at brought in a system called FOCUS. Don't know if it's still around or not. It's great for reporting, and we developed and taught perhaps a thousand or two non-IT people how to produce their own reports. Very handy. They could do the basic reports, some could do the medium-hard stuff, and IT could help with the harder stuff.

All of the data for reporting was copied regularly to shadow databases in FOCUS' own format. For the more sensitive data, we set the secure option, which encrypted the data. All well and good.

So, one day my boss calls me in, and we've lost the password to one of the sensitive databases. It's going to be hard to reproduce the data in this case, so he asks me to see if I can break the security. I had no experience as a hacker, so it took me about 5 or 6 hours to hand him the password. I started by creating some test files, and encrypting them with different passwords. I found that changing one character in the password would change two bytes in the encrypted file, specifically, the high nybble of one byte, and the low nybble of another byte. Hmmmm, says I. Sure enough, they stored the password somewhere in the first 80 bytes of the encrypted, but obfuscated the password by splitting the bytes into nybbles, and storing them in predictable places.

It didn't take long after that to write a REXX script that ran under the VM/CMS system and would tell us the password of any encrypted database.

That was a long time ago - in the early nineties, and I'm sure they've since fixed this problem. Well, pretty sure.

link|flag
vote up 6 vote down

Not strictly a security hole, more of a "feature" that lots of rookie server admins didn't know/care about at the time.

Around 1999-2001 I had lots of fun with Frontpage and unlocked Frontpage server extensions installed on public facing websites.

When you had Frontpage installed you got this nice handy "Edit in Frontpage" button within Internet Explorer.

When visiting a site, e.g. www.foo.com, If you clicked on the "Edit in Frontpage" button in Internet Explorer and the server admins hadn't done their job properly then Frontpage happily opened up the full directory structure of the virtual directory and allowed you to read/edit the contents.

This worked on many sites from little one man band setups to bigger public organisations.

I always fired an email off to the "webmaster" when found an open server and I once got a £50 gift voucher from an online retailer for alerting them to this.

Shocking stuff really.

DISCLAIMER - I need to point out that Frontpage was on the standard build PC I was given in those days, not of my own choice!

link|flag
1  
And to this day I'm still asked "is Frontpage good enough?" :s – The Wicked Flea Sep 24 at 14:22
1 2 3 4 next

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.