| Author |
how to go about timed challenges |
DigitalFire
Member

Posts: 274
Location: Or perhaps just
Joined: 02.12.06 Rank: HBH Guru |
|
Alright so im working on timed 1.
its obvious what type of encryption and everything, i am just having trouble using a scblockedript to access hbh. some type of brute force/ dos prevention scblockedript maybe? but ive written scblockedripts in vb.net and php, and neither one of them was able to pull text off the hbh server.
php:
<?php
$contents = file_get_contents( "hellboundhackers.org" );
echo $contents;
//returns blank page
?>
vb.net:
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim file As String
Dim results As String
file = "http://www.hellboundhackers.org"
Dim web_client As System.Net.WebClient = New System.Net.WebClient
Dim response As System.IO.Stream = web_client.OpenRead(file)
Dim stream_reader As New IO.StreamReader(response)
results = stream_reader.ReadToEnd()
MsgBox(results)
'returns a blank message box
End Sub
both of these work just fine with every other web site ive tried, hbh just blocks it :angry:
any pointers here?

I'll be in it all to watch it burn so carelessly |
|
| Author |
RE: how to go about timed challenges |
lesserlightsofheaven
Member
Posts: 723
Location: EAX
Joined: 02.11.06 Rank: God Warn Level: 30
|
|
can't help you, but it's relevant to my interests, so bumpity bump.
"'Following a telephone line north, I have come upon some wonderful places,' continued the repairman. 'Swamps where cedars grow and turtles wait on logs but not for anything in particular; fields bordered by crooked fences broken by years of standing still; orchards so old they have forgotten where the farmhouse is. In the north I have eaten my lunch in pastures rank with ferns and junipers, all under fair skies with a wind blowing. My business has taken me into spruce woods on winter nights where the snow lay deep and soft, a perfect place for a carnival of rabbits. I have sat at peace on the freight platforms of railroad junctions in the north, in the warm hours and with the warm smells. I know fresh lakes in the north, undisturbed except by fish and hawk and, of course, by the Telephone Company, which has to follow its nose. I know all these places well. They are a long way from here--don't forget that. And a person who is looking for something doesn't travel very fast.'" |
|
| Author |
RE: how to go about timed challenges |
DigitalFire
Member

Posts: 274
Location: Or perhaps just
Joined: 02.12.06 Rank: HBH Guru |
|
anyone?

I'll be in it all to watch it burn so carelessly |
|
| Author |
RE: how to go about timed challenges |
Der Heiligen
Member

Posts: 177
Location:
Joined: 14.11.06 Rank: Apprentice |
|
Inline Javascblockedript maybe? Not sure. Then also, maybe you have to get the specific file.

Thanks SsAgent!
Jeg Er Det Hellig Ettall |
|
| Author |
RE: how to go about timed challenges |
mido
Member
Posts: 613
Location: Cairo, Egypt
Joined: 27.01.07 Rank: God |
|
Use cURL...
|
|
| Author |
RE: how to go about timed challenges |
sle1306
Member

Posts: 43
Location: Belgium
Joined: 06.04.07 Rank: God |
|
|
i did them all with .NET (c#) using WebBrowser component. |
|
| Author |
RE: how to go about timed challenges |
mido
Member
Posts: 613
Location: Cairo, Egypt
Joined: 27.01.07 Rank: God |
|
Actually, "Blank page" happenedt o me many times, thats cause of cookie...
you can pu tyour cookies in array like this:
$headers = array( "Host: hellboundhackers.org",
"User-Agent: Mozilla Firefox",
"Referer: http://www.hellboundhackers.org/challenges/timed/timedx/",
"Cookie: PHPSESSID=rest of cookie"
//coooode......
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
Actually, none of timed challs worked for me now....
be cause i think the sites isn't on the root server,
like when you get contents of the page "http://hellboundhackers.org", it converts to this page "http://87.106.143.53/"
I dk, maybe this would be fixed..?
Or i am wrong?
|
|
| Author |
RE: how to go about timed challenges |
root_op
Lord Abortion

Posts: 467
Location: Sweden, Lidkφping
Joined: 21.03.07 Rank: God |
|
All you need is cURL and str_eregi()...
Seriously, do you even care? |
|
| Author |
RE: .. |
deleted
Member

Posts: 21
Location: Sweden
Joined: 09.05.08 Rank: Hacker Level 3 |
|
according to other posts ive heard that hbh requires a user agent. maybe that's it? they said that you get blank page if you dont have one. so...?  

 |
|
| Author |
RE: how to go about timed challenges |
clone4
Member

Posts: 586
Location: He is back and he's bad!
Joined: 25.11.07 Rank: God |
|
why are you opening old dead thread?? BTW you need to login to access the challenge pages, and also have a valid referer, useragent and cookies with all the requests
[img][/img]

spyware - "They see me trollin'..."
<yaragn> ever seen that movie? The Matrix?
<yaragn> with those green lines of flying text?
<yaragn> *THAT'S* Perl
|
|