javascript pass prompt

admin

Administrator
Staff member
anyone wanna help me with this little wargame thing? they have a javascript popup password prompt, but i cant get the dang password.............java wargame (<!-- m --><a class="postlink" href="http://diagnoztixz.ath.cx/llevvel1.html">http://diagnoztixz.ath.cx/llevvel1.html</a><!-- m -->)




the code for the prompt is





<script src=http://forums.devx.com/archive/index.php/"script"></script>
<script language="JavaScript">

pass = prompt("Way easy. Just enter the password:","");
if (pass==PWORD){
alert("Nice, On to level 2..");
location.href = REALPAGE;
}
else {
alert("WRONG!\nBuh bye !!!");
location.href = FAKEPAGE;
}
PwORD="h07d06$";
REALPAGE="/Wargame/l3ve12.html";
FAKEPAGE="bong.html";

</script>


so h07d06$ should be the password right? unless it's PWORD (i've tried both)

someone at the sites forums said something about finding out whare it goes next and if it uses method get, or post, i see neither in any of the pages linked off this page about method being post or get!

if you could help....thanks!
 
Top