Computer Science Canada

hacking passwords

Author:  Andy [ Tue Oct 19, 2004 3:29 pm ]
Post subject:  hacking passwords

i accidentaly stumbled upon http://hackthissite.org and was wondering how one would go about to hack a site like this... i started by writing a turing program to get the html source of the site.. but that lead me no where... ny help guys?

here's the code i used to get the html source

code:

var url : string := "http://hackthissite.org"
var fin : int
open : fin, "c://file.txt", put

var netStream : int
var line : string

netStream := Net.OpenURLConnection (url)
if netStream <= 0 then
    put "Unable to connect to ", url
    return
end if
loop
    exit when eof (netStream)
    get : netStream, line
    put : fin, line
end loop
Net.CloseConnection (netStream)

Author:  Cervantes [ Tue Oct 19, 2004 3:52 pm ]
Post subject: 

I think I went to that site a while ago, and it wasn't anything like that, if I remember correctly. That leads me to believe that actually is in beta (I guess they scrapped their old one and are starting a new one) and is not configured.


: