vote up 82 vote down star
79

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

1 2 3 4 next
vote up 217 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
18  
This is definitely an argument in favor of using a strongly typed system. – R. Bemrose Sep 24 at 14:00
12  
What's the site? I want a 90% discount!!! – amischiefr Sep 24 at 14:27
9  
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 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 144 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
40  
+1 for honesty and lack of ego. – Justicle Sep 24 at 7:58
28  
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
17  
"Never attribute to malice that which can be adequately explained by stupidity." -- Hanlon's Razor – Loadmaster Sep 24 at 22:27
3  
There is no one source control system mandated for use across Microsoft. Most teams these days either use Source Depot or Team Foundation. Unsurprisingly, the Visual Studio product teams generally use Team Foundation. Eat your own dogfood, you know. – Eric Lippert Oct 10 at 21:11
show 6 more comments
vote up 77 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
46  
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
3  
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 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
62  
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
61  
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
29  
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 66 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 57 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
15  
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
12  
congrats, you're innocent, too bad it costs 300k to convince a jury that – Dustin Getz Sep 24 at 13:59
4  
The comment is very right though: This Script allows people to enter. – Thomas Sep 25 at 12:56
show 5 more comments
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 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 41 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
37  
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 40 vote down

Social Engineering:

<Cthon98> hey, if you type in your pw, it will show as stars
<Cthon98> ********* see!
<AzureDiamond> hunter2
<AzureDiamond> doesnt look like stars to me
<Cthon98> <AzureDiamond> *******
<Cthon98> thats what I see
<AzureDiamond> oh, really?
<Cthon98> Absolutely
<AzureDiamond> you can go hunter2 my hunter2-ing hunter2
<AzureDiamond> haha, does that look funny to you?
<Cthon98> lol, yes. See, when YOU type hunter2, it shows to us as *******
<AzureDiamond> thats neat, I didnt know IRC did that
<Cthon98> yep, no matter how many times you type hunter2, it will show to us as *******
<AzureDiamond> awesome!
<AzureDiamond> wait, how do you know my pw?
<Cthon98> er, I just copy pasted YOUR ******'s and it appears to YOU as hunter2 cause its your pw
<AzureDiamond> oh, ok.

From bash.org

link|flag
7  
just beautiful...love how they worm their way out with the copy/paste **** :D – Si Oct 9 at 5:21
1  
I ROFLed. But not until the very end with the copy/paste thing :) – Chris Oct 23 at 21:16
show 1 more comment
vote up 31 vote down

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

link|flag
135  
Greetings from Bobby Tables. – Gumbo Sep 24 at 5:50
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 26 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 2 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
38  
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 – johnc Sep 24 at 22:42
vote up 21 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 20 vote down

Microsoft Bob
(Credit: Dan's 20th Century Abandonware)

If you enter your password incorrectly a third time, you are asked if you have forgotten your password.

But instead of having security, like continuing to prompt for the correct password until it's entered or locking you out after a number of incorrect attempts, you can enter any new password and it will replace the original one! Anyone can do this with any password "protected" Microsoft Bob account.

There is no prior authentication required. his means User1 could change their own password just by mistyping their password three times then entering a new password the fourth time -- never having to use "change password."

It also means that User1 could change the passwords of User2, User3... in exactly the same way. Any user can change any other user's password just by mistyping it three times then entering a new password when prompted -- and then they can access the account.

link|flag
1  
Dead image urls? – Svish Sep 28 at 12:18
show 3 more comments
vote up 19 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
5  
@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
2  
I can just imagine a USSR spy getting to the safe and trying everything he can think of to crack the safe, "Damn! I can't crack it. Wouldn't it be funny if I could just...wow, score one for Mother Russia!" – Eric Sep 30 at 23:09
show 1 more comment
vote up 19 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 4 more comments
vote up 15 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 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 13 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 12 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
5  
The good old IRC fault: <n4p> msg NickServ identify my1super2secret3passwort4 * n4p has been ghosted * – furtelwart Sep 25 at 6:46
vote up 12 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 12 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 11 vote down

"Pedo mellon a minno", "Speak friend and enter", on the gates of Moria.

link|flag
show 2 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
4  
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 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 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 6 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
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.