Javascript...

Don't use it, if you don't mean it!

Getting info from forms

If you have any page with a simple form, you could be in luck. There could be hidden fields in that form, witch you shouldn't look at. No worries, we'll just sneek a little peek.
Step by step:
  • Look at the source, find the name of the hidden field
  • For kicks, we say we found a hidden field named password.
  • remove the url and write: javascript:alert(document.forms[0].password.value);
Do this, and you will get the value of the field. If you have brains, you can change this to get you whatever you want on the page...

Setting value in forms

Some pages have this "I've lost my password, please send it to me" on the page. Some also actually have this stored in a session object. This is just stupid, and i'll show you why.
Step by step:
  • Look at the source, find the name of the hidden field
  • For kicks, we say we found a hidden field named email.
  • remove the url and write: javascript:alert(document.forms[0].email.value="your@email.com");
this will make the page send the email somewhere it shouldn't...