-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathindex.php
90 lines (85 loc) · 2.84 KB
/
index.php
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
87
88
89
90
<?php
include "brainfuck.php";
include "util.php";
$input = isset($_REQUEST['input']) ? (string) $_REQUEST['input'] : '';
$output = '';
if(isset($_REQUEST['do'])) switch((string) $_REQUEST['do']){
case 'Text to Ook!':
case 'Text to short Ook!':
$output = fuck_text($input);
$output = strtr($output,array('>' => 'Ook. Ook? ',
'<' => 'Ook? Ook. ',
'+' => 'Ook. Ook. ',
'-' => 'Ook! Ook! ',
'.' => 'Ook! Ook. ',
',' => 'Ook. Ook! ',
'[' => 'Ook! Ook? ',
']' => 'Ook? Ook! ',
));
if($_REQUEST['do'] == 'Text to short Ook!'){
$output = str_replace('Ook','',$output);
$output = str_replace(' ','',$output);
$output = preg_replace('/(.....)/','\\1 ', $output);
}
$output = wordwrap($output,75,"\n");
break;
case 'Text to Brainfuck':
$output = fuck_text($input);
$output = preg_replace('/(.....)/','\\1 ', $output);
$output = wordwrap($output,75,"\n");
break;
case 'Ook! to Text':
$lookup = array(
'.?' => '>',
'?.' => '<',
'..' => '+',
'!!' => '-',
'!.' => '.',
'.!' => ',',
'!?' => '[',
'?!' => ']',
);
$input = preg_replace('/[^\.?!]+/','',$input);
$len = strlen($input);
for($i=0;$i<$len;$i+=2){
$output .= $lookup[$input[$i].$input[$i+1]];
}
$output = brainfuck($output);
break;
case 'Brainfuck to Text':
$output = brainfuck($input);
break;
}
?>
<html lang="html">
<head>
<title>Brainfuck/Text/Ook! obfuscator - deobfuscator. Decode and encode online.</title>
<style>
body {
font-size: 80%;
font-family: sans-serif;
}
a {
text-decoration: none;
color: #600;
}
textarea {
border: solid 1px #000;
width: 450px;
}
input, select {
border: solid 1px #000;
}
</style>
</head>
<body>
<form action="" method="post">
<textarea name="input" cols="80" rows="10"><?php echo $output?></textarea><br />
<input type="submit" name="do" value="Text to Ook!" />
<input type="submit" name="do" value="Text to short Ook!" />
<input type="submit" name="do" value="Ook! to Text" /><br />
<input type="submit" name="do" value="Text to Brainfuck" />
<input type="submit" name="do" value="Brainfuck to Text" />
</form>
</body>
</html>