• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Help on finding a password?

 
Greenhorn
Posts: 4
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Howdy

I've got a little JavaScript form that I would like to figure out. Was hoping you guys could help me with that.

<script language="JavaScript">
<!--
x=prompt('Yay\n Enter password:',' ');
x=new String(x + " z");
var y = "1338";
var z = "1";
var f = "y - z";
if (x == f) {
location.href = "?page=soccer&pw=" + x;
}
else {
location.href = "blank.htm";
}
//-->
</script>

I can't seem to understand this. But I don't want access just to get passed it, I also want to learn how that works, so if you could explain a bit about how the code works, that would be great! Thanks

Btw, I'm Norwegian if there was any Norwegians here who finds it easier to write in our own language (if thats permitted)
 
Rancher
Posts: 43081
77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I'd suggest inserting a few alert statements that show you the variable values, or, of course, a JavaScript debugger like Venkman (which is free for Firefox).

Posting in Norwegian is not allowed, since the JavaRanch staff do not speak that language.
 
Dibbe Dappert
Greenhorn
Posts: 4
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Well, actually, I found the answer myself But how about this one?

<script language="JavaScript">
<!--
function test(passwd) {
y=String.fromCharCode(115) + String.fromCharCode(101) + String.fromCharCode(passwd.substring(0,1)*11) + String.fromCharCode(114) + String.fromCharCode(101) + String.fromCharCode((passwd.substring(0,1)*13)-1);
if (passwd.substring(1,7) == y) {
location.href = "?page=level17&pw=" + passwd;
}
else {
location.href = "levels/error.php";
}
}
//-->
</script>
 
"To do good, you actually have to do something." -- Yvon Chouinard
a bit of art, as a gift, the permaculture playing cards
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic