Welcome to HBH! If you had an account on hellboundhacker.org you will need to reset your password using the Lost Password system before you will be able to login.

Timed 6


ghost's Avatar
0 0

I've been struggling with this for a whole week, I wrote it in vb.net cos I wanted to finish the challenge quickly but it turned out to be much harder and I really don't feel like rewriting it in python… I don't know what the problem is. It is quite fast so I don't think that the problem is because of lag or something. It does the folowing: Takes "word to google" and "Result number" from timed6. Googles for word and then takes the url that the number specifies. (Also, should I include the "http://" part?) Then base64 encrypts the url and goes to this link: http://www.hellboundhackers.org/challenges/timed/timed6/index.php?url=base64encodedurlhere But it doesn't even say "wrong!" or "Sorry you've run out of time!" Why is this happening?

ps. From another topic that I have read it says not to include the "==" but even this way, its not working! :(

Thanks for any help in advance.


clone4's Avatar
Perl-6 Wisdom Seeker
0 0

include the "http://" and maybe show the code you've been using. Btw in my opinion this was the hardest one ( well except for no 7, which is only for the oranges for now :D )


ghost's Avatar
0 0

From what i have read, must something like this be done?

<form action="/challenges/timed/timed6/index.php" method="post"> Enter password:<br> <input value="ss" name="url" type="text"><br> <div class="divider2"></div> <input value="Submit Password" name="submit" type="submit">

Like, POST the url? Or is this making the same thing?

Also, clone4 ill pm you my source if you don't mind.


clone4's Avatar
Perl-6 Wisdom Seeker
0 0

loxaXcracker wrote: From what i have read, must something like this be done?

<form action="/challenges/timed/timed6/index.php" method="post"> Enter password:<br> <input value="ss" name="url" type="text"><br> <div class="divider2"></div> <input value="Submit Password" name="submit" type="submit">

Like, POST the url? Or is this making the same thing?

Also, clone4 ill pm you my source if you don't mind.

of course I don't :) (but be warned that I'm not good vb programmer, but I should be able to read it :)) Anyway the form tells you that to answet this challenge, you must make post request to page http://www.hellboundhackers.org/challenges/timed/timed6/index.php, which have to include url=answerinb64…


ghost's Avatar
0 0

Now the problem is how would i post that… I was doing it wrong by just navigating to the page wb.navigate("http://www.hellboundhackers.org/challenges/timed/timed6/index.php?url=answer") But can someone explain how would I POST the answer?

Thanks.