Posted: Sun Dec 28, 2003 3:02 pm Post subject: (No subject)
lol, yeah level 1 was like SO hard
i'm just kidding... this looks really interesting, thanks for sharing
Thuged_Out_G
Posted: Sun Dec 28, 2003 3:24 pm Post subject: (No subject)
i made it to level 5(or maybe it was 4)
i stopped when i had to download a java class, decompile it and find the password lol....i did decompile it, but i dont know java so i couldnt find the pw or username lol
if anyone wants ill post solutions for the first 5(not answers, but how to get them)
Tony
Posted: Sun Dec 28, 2003 3:36 pm Post subject: (No subject)
well for lvl one you just look at the source code for the HTML page - password is in the if statment.
For level two - password is hidden in a comment of javascript, but username has me puzzled
Posted: Sun Dec 28, 2003 4:42 pm Post subject: (No subject)
code:
<script language="JavaScript">
<!--
passwd="ItIsSoEasy";
function disable_right_click(e) {
var browser = navigator.appName.substring ( 0, 9 );
var event_number = 0;
if (browser=="Microsoft")
event_number = event.button;
else
event_number = e.which;
if ( event_number==2 || event_number==3 || event_number==4) {
alert ("Right/middle mousebutton is disabled");
return (false);
}
return (true);
}
function check_mousekey () {
var mouse_key = 93;
var keycode = event.keyCode;
if ( keycode == mouse_key )
alert ( "Mouse Key Is Disabled" );
}
function trap_page_mouse_key_events () {
var browser = navigator.appName.substring ( 0, 9 );
document.onmousedown = disable_right_click;
if ( browser == "Microsoft" )
document.onkeydown = check_mousekey;
else
document.captureEvents( Event.MOUSEDOWN );
}
window.onload = trap_page_mouse_key_events;
//-->
</script>
What's the user name?
strife_8
Posted: Sun Dec 28, 2003 6:40 pm Post subject: (No subject)
for level 2 the html code wont help, the password that it shows there is a decoy. I know that the answer is somewhere in the temp folder but i dont know where...
Amailer
Posted: Sun Dec 28, 2003 7:07 pm Post subject: (No subject)
Doesn't it need to use some script ( the flash ) for it to work?? or can you actually make a login script in flash?
Amailer
Posted: Sun Dec 28, 2003 7:39 pm Post subject: (No subject)
eh here guys im smart
if (txtUsername == "try2hack" && txtPassword == "irtehh4x0r!")
Sponsor Sponsor
Amailer
Posted: Sun Dec 28, 2003 7:57 pm Post subject: (No subject)
so simple im at lvl 4
Thuged_Out_G
Posted: Sun Dec 28, 2003 8:19 pm Post subject: (No subject)
for level 2, you need to go to the temporary internet folder, and find the flash file....copy it somewhere, and open it in a text editor.
level three i think is the prompt question...i think i just pressed cancel and then stop quickly...then i think it was in the source, you gotta open the file called JavaScript
Amailer
Posted: Sun Dec 28, 2003 9:14 pm Post subject: (No subject)