« Agile Programming.. | Main | The weird people at the park »

The "Agile Password" policy?

At this link click on "update events".. pretty prompt? Nice and secure? Now look at the source..

Now that's quality web development!

Here's a screenshot in case it changes..

Comments

Hah! Love the screen shot.

Thankfully the password for emailing the subscribers is MUCH easier to figure out (on the tools page).

LOL, the speed at which the 'wrong password' message returns kinda gives it all away doesn't it? :)
They could at least have introduced a small latency (to pretend it's hitting the server) so it wouln't be that obvious.

I also like how there's no auth once you're actually on the page.

Daily WTF time? Or is it worthy of hates-software? :)

So... how many events have you added already?

Don't even need to know the "password"? Just google "112crew website tools" and you're in...

http://www.google.com/search?hl=en&q=112crew+website+tools&btnG=Google+Search

First hit is the infamous tools.php...

I always cringe when I see that; really, it scares me.

Unfortunately, I have to concede that the company I used to work for did the same thing. There wasn't anything really sensitive out there but still...

Hah! They changed the "password" in a vain attempt to improve security.

function editEvents() {

var getin = prompt("What is the password?","")
if (getin=="whatsnew")
{
alert('You got it! In you go...')
location.href='http://www.112crew.com/tools.php'
}
else
{
if (getin=="null")
alert('That aint it SUCKA...')
else
if (getin!="whatsnew")
alert('That aint it SUCKA..')
}
}