Ich habe ein Problem wie finde ich hier die pw's raus!
Könnt ihr mir das mal erklären oder die porg. nenen mit dennen das geht???
Währe cool
1. JS
HEX
2. JS
Math
MFG, sniffer
Könnt ihr mir das mal erklären oder die porg. nenen mit dennen das geht???
Währe cool
1. JS
HEX
Code:
<html>
<head>
</head>
<link rel="stylesheet" type="text/css" href="../../../style/style.css">
<body>
<script language="JavaScript">
function check()
{
var passwort;
passwort=document.login.password.value;
if(passwort == unescape("%68%65%78%68%65%78"))
{
window.location="check.php?pass="+passwort;
}
else
{
alert("Wrong Password!");
}
}
</script>
<center>
<h3>Hexadecimal</h3>
<form name=login>
<table>
<tr>
<td>
Enter the Password: <input type=text name=password style="background-color: white; color: black">
</td>
</tr>
<tr>
<td align=center><input type=button value="Login" onClick="check()" style="background-color: #181818; color: white">
</td>
</tr>
</table>
</form>
</center>
</body>
</html>
2. JS
Math
Code:
<html>
<head>
</head>
<link rel="stylesheet" type="text/css" href="../../../style/style.css">
<body>
<script language="JavaScript">
function check()
{
var passwort;
var number = 152*5/2+5-8/4*8;
passwort=document.login.password.value;
if(passwort == number)
{
window.location="check.php?pass="+passwort;
}
else
{
alert("Wrong Password!");
}
}
</script>
<center>
<h3>Math</h3>
<form name=login>
<table>
<tr>
<td>
Enter the Password: <input type=text name=password style="background-color: white; color: black">
</td>
</tr>
<tr>
<td align=center><input type=button value="Login" onClick="check()" style="background-color: #181818; color: white">
</td>
</tr>
</table>
</form>
</center>
</body>
</html>
MFG, sniffer