also der quelltext den ich habe, sieht so aus:
=====
<HTML>
<HEAD>
<SCRIPT src="JavaScript"></SCRIPT>
<SCRIPT language="JavaScript">
pwd = prompt("Please enter the password for level 3 :","");
if (pwd==PASSWORD){
alert("Alright !\nEntering Level 4 ...");
location.href = CORRECTSITE;
}else
{
alert("WRONG !\nBack to disneyland !!!");
location.href = WRONGSITE;
}
PASSWORD="AbCdE";
CORRECTSITE="level4.html";
WRONGSITE="../www.disney.com/default.htm";
</SCRIPT>
<TITLE>Try2Hack - Level 3</TITLE>
</HEAD>
<BODY bgcolor="#ffffff">
<CENTER>
<P ALIGN="CENTER"><IMG SRC="logo.jpg" WIDTH="362" HEIGHT="88" BORDER="0"><BR>
<FONT FACE="Arial">Level 3</FONT></P>
<P><BR><BR><FONT FACE="Arial, Helvetica">
If you don't get a javascript prompt to enter the password,<BR>
it means your browser doesn't support JavaScript.<BR>
<BR>
Anyway, if you're good enough, you will get past this level just like any other !</FONT>
</CENTER>
</BODY>
</HTML>
=====
ich kann dort aber nicht sehen wo sich das class file befindet. das was ich halt daraus erkenne wäre das ich als password "AbCdE" eingeben muß, aber das geht ja nicht.