Als je bij deze pag, de drie goeie nummers invult gaat hij naar een andere pag. dus als 123, het zou zijn, gaat gij naar 123.html
Wie kan het goeie nr achterhalen van deze source?:
als het gelukt is,wil je dan ook ff zeggen hoe je dat gedaan hebt? Ik ben er nu al 2 uur mee bezig maar nog nix
Wie kan het goeie nr achterhalen van deze source?:
code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
| <html>
<head>
<p align="center"> </p>
<table width="350" border="0" cellspacing="0" cellpadding="0" align="center">
<tr>
<td align="center">
<p>Have a go, see if you can get the correct combination</p>
<form name="padd" method="post" action="">
<input type="button" name="1" value=" 1 " style={background:#00CC00} onClick="buttonpress(this.value);">
<input type="button" name="2" value=" 2 " style={background:#00CC00} onClick="buttonpress(this.value);">
<input type="button" name="3" value=" 3 " style={background:#00CC00} onClick="buttonpress(this.value);">
<br>
<br>
<input type="button" name="4" value=" 4 " style={background:#00CC00} onClick="buttonpress(this.value);">
<input type="button" name="5" value=" 5 " style={background:#00CC00} onClick="buttonpress(this.value);">
<input type="button" name="6" value=" 6 " style={background:#00CC00} onClick="buttonpress(this.value);">
<br>
<br>
<input type="button" name="7" value=" 7 " style={background:#00CC00} onClick="buttonpress(this.value);">
<input type="button" name="8" value=" 8 " style={background:#00CC00} onClick="buttonpress(this.value);">
<input type="button" name="9" value=" 9 " style={background:#00CC00} onClick="buttonpress(this.value);">
<br>
<br>
<input type="text" name="codebox" style={background:#00CC00} >
</form>
</td>
</tr>
</table>
<p> </p>
</body>
</html>
<script language="javascript">
var xyboo = 0;
var duh = 0;
var mul = 1;
function buttonpress(num)
{
xyboo++;
if (xyboo == 3)
{
id4 = parseInt(num);
padd.codebox.value = padd.codebox.value + id4;
codex = padd.codebox.value;
for (xb = 0; xb < codex.length; xb++)
{
mul = mul * parseInt(padd.codebox.value.substr(xb, 1));
}
if (mul == 105)
{
location.href = codex + '.html';
}
else
{
alert('nope');
duh++;
mul = 1;
xyboo = 0;
padd.codebox.value = "";
if (duh >= 6) { location.href = 'duh.cgi'}
}
mul = 1;
xyboo = 0;
padd.codebox.value = "";
}
else
{
id4 = parseInt(num);
padd.codebox.value = padd.codebox.value + id4;
}
}
</script> |
als het gelukt is,wil je dan ook ff zeggen hoe je dat gedaan hebt? Ik ben er nu al 2 uur mee bezig maar nog nix