Welcome to HBH! If you have tried to register and didn't get a verification email, please using the following link to resend the verification email.
realistic 2 - js coding
LOL! :)
1: do you actually know any javascript?since you stated, you don't know where to put it? 2: you probably don't,you stated you don't know how to direct a browser to a website. 3: i suggest you read up on some basic javascript tutorials. since you stated you don't know what to write… i have the weirdest feeling you'll learn a lot from it.
peace.:happy:
heres a script i wrote…what do you people think? it goes through every page with every date/month combination
<script type="text/javascript">
var month = 1
var day = 1
var x = 0
while ( month != 12 && day != 31)
{
//adding dates/months
if (day = 31)
{
day = 1
month += 1
}
else
{
day += 1
}
//check for double digit months
if (month >= 10)
{
x += 1
}
//check for double digit days
if (day >= 10)
{
x += 2
}
//get the right format
if (x = 0)
{
window.location.href="http://hellboundhackers.org/challenges/real2/backups/backup_2004-0"+month+"-0"+day+"_1000.sql"
}
else if (x = 1)
{
window.location.href="http://hellboundhackers.org/challenges/real2/backups/backup_2004-"+month+"-0"+day+"_1000.sql"
}
else if (x = 2)
{
window.location.href="http://hellboundhackers.org/challenges/real2/backups/backup_2004-0"+month+"-"+day+"_1000.sql"
}
else
{
window.location.href="http://hellboundhackers.org/challenges/real2/backups/backup_2004-"+month+"-"+day+"_1000.sql"
}
}
</script>