vote up 82 vote down star
78

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
4  
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

94 Answers

vote up 48 vote down

At a university no less, which will remain nameless, they had all their action queries being passed through the URL instead of form posted.

The thing worked a treat until Google Bot came along and ran through all of their URLs and wiped their database.

link|flag
4  
Good old SQL Injection by Design. I've worked with reporting functionality that has had that "feature" built in. – ICodeForCoffee Sep 24 at 13:27
3  
LOL, sue google then – Aaron Qian Sep 24 at 13:31
7  
@ICodeForCoffee: where's the SQL injection here? This is just confusing the purposes of GET vs POST. It's a fairly common mistake by novice web devs. I recall reading a Daily WTF article about this exact problem. – rmeador Sep 24 at 15:24
show 2 more comments
vote up 3 vote down

In 2007 a DOD website for a fairly large agency had a misconfiguration resulting in the IIS web server serving up raw code and the home page had hard coded username/password and database server information in it. Fortunately it was caught rather quickly but I did witness it and it was extremely shocking. Needless to say their website was taken offline by network engineers until the developers fixed the bad code.

link|flag
vote up 4 vote down

I used to work for a point-of-sale company. Their software was used by a lot of pizza joints.

It was up to the customer to change the default passwords. The default information is printed in the user manuals and such. :)

Well, some kids who worked at one of these pizza joints guessed they hadn't change the root password (Unix/Linux based system). They then proceeded to buy him and his friends free delivered pizza to his house for close to a year before the pizza joint noticed. It makes me laugh everytime I think about that job. :)

link|flag
vote up 0 vote down

Leaving Excel exports of your high end CRM system on a shared drive readable for everyone. I mean not by accident, by design! Some manager thought: Hey, let's keep things cheap. Instead of hiring an developer who adds some new dialogs, we just export the relevant Data on \share\all\my\data and let Excel do the rest.

This happend in my old company.

link|flag
vote up 56 vote down

Once noticed this on the URL of a web-site.

http://www.somewebsite.com/mypage.asp?param1=x&param2=y&admin=0

Changing the last parameter to admin=1 gave me admin privileges. If you are going to blindly trust user input at least don't telegraph that you are doing it!

link|flag
vote up 10 vote down

A Norwegian pizza delivery had a security hole where you could order negative amounts of pizzas at their new and shiny internet portal and get them for free.

link|flag
6  
The other security hole is the employees, right? "Well sir, the computer says you get 15 pizzas for free, so... here you go!... do I get a tip?" – Nathan Long Sep 24 at 18:55
3  
...your pizza place gives out DVDs too? O.o – Mark Sep 26 at 2:23
show 5 more comments
vote up 1 vote down

The Chinese filtering software -- Green Dam's official website has server mod_status info wide open for public amusement.

For the curious:

http://www.lssw365.net/server-status

For some reason, you might want to press stop button shortly after loading, or else it just says connection reset for some reason...

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

Plaintext shipment of username list to the browser for javascript autocomplete, coupled with the ability to view users data by tweaking the URL querystring with the unique user id, which could get gleaned from said autocomplete feature.

link|flag
vote up 2 vote down

During a time I was having... creative differences... with a community site that I helped build, one of the other coders added a new PHP file that lists files in the approval queue that also had a link to delete each file.

Unfortunately, this script used the whole security through obscurity concept.

Somehow, a web crawler found this page and followed all the delete links.

Needless to say, scripts that modify metadata or delete files now require logins.

P.S. I had nothing to do with it and wasn't even aware of this script's existence until one of the then-current staff told me what happened. I actually work for this site again now, in part to make sure things like this don't happen again.

link|flag
vote up 150 vote down

The least forgivable security hole, and unfortunately a very common and easy to find one at that, is googlehacking. Case in point:

http://www.google.com/search?q=inurl%3Aselect+inurl%3A%2520+inurl%3Afrom+inurl%3Awhere

Its amazing how many pages on the internet -- government sites in particular -- pass an SQL query through the query string. It's the worst form of SQL injection, and it takes no effort at all to find vulnerable sites.

With minor tweaks, I've been able to find unprotected installations of phpMyAdmin, unprotected installations of MySQL, query strings containing usernames and passwords, etc.

link|flag
5  
This is unbeliveable! – Gary Willoughby Sep 24 at 17:35
36  
...Oh. My. Gosh. – Nathan Long Sep 24 at 18:53
13  
johnny.ihackstuff.com/ghdb – ykaganovich Sep 25 at 3:11
5  
little Bobby tables strikes again... xkcd.com/327 – gbjbaanb Oct 7 at 12:21
4  
OMFG ... next time I have a bad day, I go drop some tables – MAD9 Oct 15 at 16:17
show 6 more comments
vote up 2 vote down

Years ago a school hosted a learning platform website with the ability to upload .PHP files to the website which you could execute afterward, so they gave you full access to the whole website. Haven't been discovered by any other student and I think that mistake is still present.

link|flag
vote up 1 vote down

News Headline that's in the spirit of this thread... on today's front page of /.
ISP Emails Customer Database To Thousands

link|flag
vote up 2 vote down

A couple of years ago a friend gave me an old axe-head that he'd found, hoping to be told it was some ancient artefact. So, a search on Google for some likely website to help in the identification gave me a link to a museum website somewhere in the Midlands (UK).

Except the page it dropped me on gave me full administrator rights over the entire site. Being a responsible type, I changed the name of the account owner, just so they'd know I wasn't talking rubbish and sent them an email suggesting they plug whatever hole it was that let me in, before somebody more malicious found it.

Needless to say I received a very thankful email from site owner, who'd been assured by the developer that the fault had been found and fixed. Although you have to wonder about the abilities of someone who's that careless.

link|flag
3  
When you find a security vulnerability like this, never touch anything, go straight to the reporting phase. You were lucky that this was a sensible person who thanked you for your help. Might as well been the type that calls the police and sues for damages. – wds Sep 25 at 14:16
vote up 27 vote down

Surprised no one has brought up social engineering, but I got a kick out of this article.

Summary: malicious users can buy a few dozen flash drives, load them with an auto-run virus or trojan, then sprinkle said flash drives in a company's parking lot late at night. Next day, everyone shows up to work, stumble on the shiny, candy-shaped, irresistable hardware and say to themselves "oh wow, free flash drive, I wonder what's on it!" -- 20 minutes later the entire company's network is hosed.

link|flag
10  
Autorun is evil. – Mark Ransom Sep 24 at 16:16
5  
@mmyers: banning flash drives is not the good approach. Break the autorun/autoplay. – Jay Sep 25 at 12:54
2  
Read some time ago, another approach (from the floppy disk times). Live a boot infected floppy disk labeled "Accounting data - confidential" in a corridor of the office and wait 5 minutes. Irresistible! – Rodrigo Sep 25 at 15:03
2  
Fortunately, I can always boot up from a Linux Live CD and examine the flash drive from there. – David Thornley Oct 2 at 17:28
show 2 more comments
vote up 3 vote down

It wasn't that bad in my case, because the data wasn't that sensitive:

I was given an Excel file overflowing with macros to update, each sheet was locked and the macros section was password protected. I was given the passwords, but I figured I may as well try to crack it anyway.

I found a program to do it in about ten minutes, and most of that was probably just download time. What was this miracle product that can break through Excel security so quickly and easily? OpenOffice.Org.

I'm not sure if Office 2007 has improved upon this at all, but it scares me how many non-technical people are probably using Excel for manipulating sensitive information and thinking it's secure. Then again those types of people probably don't even know about the "security" features it offers anyway.

link|flag
vote up 6 vote down

I think the blank username / password field for superuser access is by far the worst. But one I have seen myself was

if (password.equals(requestpassword) || username.equals(requestusername))
{
    login = true;
}

Too bad one operator makes such a big difference.

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

I was browsing a shopping website, and when I typed in my email address, I noticed the address entry page just had in the URL "?nOrderID=301".

Alight then. I change that number to 99, and guess what? I get the name, address and phone number of some lady who lives in Bend, OR.

I did email the site admin a few weeks ago, and he didn't sound very happy about it, but it still hasn't been fixed...

That, and for a while the company's I work for entire employee information list (everything about the employee from address to SSN to pay) was stored in a password protected access database.

Use your favorite search engine and look up how to recover access database passwords. Yep.

Drag and drop it into this, and you get the password. A five letter dictionary word.

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

Last year, I discovered that the website used to handle our checks/statements for the company I was working for was riddled with SQL injection holes.

Needless to say, they fixed their holes pretty quickly.

link|flag
vote up 2 vote down

For the master list of security holes (and other computer risks) visit http://catless.ncl.ac.uk/Risks

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

Had a customer that made it a requirement to auto-login based on specific http referrer's. So you and I have to login, but if you clicked on a link from a specific website, you are automatically logged in under a default user.

link|flag
vote up 2 vote down

We had an old computer cluster that wasn't running in one of the labs I worked in. A couple undergrads thought it would be fun to get it up and running so they could learn a little parallel computing. Well they got it running and it turned out to be pretty useful.

One day I came in and was checking out the stats...It was running at 100%. Now this was a 24 node cluster and there were only 3 of us that ever used it so it was a little strange that it was running at this load. I started playing with it, trying to figure out what was loading it...turned out someone had gained access and was using it as their own little porn server and spammer. I asked the undergrads what kind of security they put on it, they looked at me and said "Security? We didn't think it would need any."

I threw a password on it and that was that. The person that was using it as a porn server turned out to be a friend of one of the undergrads.

link|flag
2  
sounds like someone was getting kick backs but didn't say anything when he was busted. – Matthew Whited Sep 24 at 18:58
vote up 2 vote down

My vote's for Ken Thompson's "back door" into UNIX.

Here's a link where someone's learning more about it: http://stackoverflow.com/questions/781718/thompsons-trojan-compiler

The reason I think it's the worst is that this was back in the day when judges and such thought the best way to make progress against this sort of thing was to discuss it openly.

All that did was teach a bunch of script-kiddies a new and very powerful trick.

link|flag
3  
As opposed to security-by-obscurity? I mean, it's not like there are any examples of problems with that in these responses. – jkerian Sep 25 at 23:28
1  
@pbr you're essentially dredging up the entire "Is full disclosure good or bad" security argument. Yes, publishing a non obvious exploit makes it possible for script kiddies to exploit it, but it also allows administrators and users to be aware that their programs may be unsafe, and it gives you more people who are able to come up with a solution (and safe guards to future problems). You should read any of the previous debates out there on full disclosure if you want arguments much better than mine. – Falaina Sep 29 at 7:27
show 2 more comments
vote up 3 vote down
public class AuthenticationServlet extends HttpServlet
{
    private String userName;
    private String password;

    protected doPost(HttpServletRequest req, HttpServletResponse resp)
           throws ServletException, IOException
    {
        userName = request.getParameter("userName");
        password = request.getParameter("password");
        authenticateUser(userName,password);
        ......
    }
}

Apparently as someone figured out during automated load testing, singletons and lack of synchronization can cause security issues.

link|flag
vote up 4 vote down

Once I worked with a firm to which I had to share information through encryption. They provided me with a GPG key pair - both their public and private keys instead of just sharing the public key and the info that was highly confidential.

I had to explain them that this process was wrong and they realized that they had been doing this for a long time.

link|flag
vote up 5 vote down

The worst security hole I have ever seen is when people don't use a master password on their firefox account even though they are having it save all their passwords. This means that anyone who can get to your account files can steal all your passwords. USE A MASTER PASSWORD.

link|flag
3  
True, but you should have a password to get onto your computer, have it prompt for a password when waking from sleep, screensaver, &c., right? – khedron Sep 25 at 0:11
show 3 more comments
vote up 0 vote down

I've heard that Turbo Tax used to send your SSN in a plain text file when you submit your return electronically. That doesn't seem like a great idea.

I also know of a company that stores credit card info in plain text CSV files on the desktop. They then get sent via FTP to the payment gateway....

link|flag
vote up 18 vote down

The worst security hole I've ever seen was actually coded by yours truly and caused the Google Bot to delete my entire database.

Back when I was first learning Classic ASP, I coded my own basic blog application. The directory with all the admin scripts was protected by NTLM on IIS. One day I moved to a new server and forgot to re-protect the directory in IIS (oops).

The blog home page had a link to the main admin screen, and the main admin screen had a DELETE LINK for each record (with no confirmation).

One day I found every record in the database deleted (hundreds of personal entries). I thought some reader had broke into the site and maliciously deleted every record.

Come to find out from the logs: The GOOGLE BOT had crawled the site, followed the admin link, and the proceeded to follow all the DELETE LINKS, thereby deleting every record in the database. I felt I deserved the Dumbass of the Year award getting inadventantly p0wned by the Google Bot.

Thankfully I had backups.

link|flag
3  
Guess it shows how common a mistake it is. – Si Sep 25 at 0:27
show 3 more comments
vote up 3 vote down

We had a nice one at a store I used to work at. Doors to non-public access areas had keypads, so you were supposed to have to enter a pin code to gain access. However, you could just press # and the doors would open, a fact that we liked since it was much easier to hit # than a 6 digit pin code.

link|flag
vote up 0 vote down

Went to a pay site for car dealers that charged a lot for a membership. Just tried "test" for the username and "Test1" for the password. I was in.

link|flag

Your Answer

Get an OpenID
or

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