-
Notifications
You must be signed in to change notification settings - Fork 0
/
parser.php
149 lines (135 loc) · 4.84 KB
/
parser.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
<?php
error_reporting(0);
//inculde semua file
function setVariabel($name, $value)
{
$_SESSION[$name] = $value;
}
$a = $argv[1];
if(isset($_GET['kode'])){
$baca = $_GET['kode'];
}
$mulai_perbaris = explode(PHP_EOL, $baca);
foreach ($mulai_perbaris as $for_mulai) {
$pisahkan = explode('::', $for_mulai);
foreach ($pisahkan as $for_Pisahkan) {
if ($for_Pisahkan == 'tulis') {
$rep = str_replace('tulis::', '', $for_mulai);
echo $rep;
} elseif ($for_Pisahkan == '#') {
continue;
} elseif ($for_Pisahkan == '<?fadhil') {
continue;
} elseif ($for_Pisahkan == '?>') {
exit;
} elseif ($for_Pisahkan == '/n') {
echo PHP_EOL;
} elseif ($for_Pisahkan == 'acak') {
echo rand();
} elseif ($for_Pisahkan == 'var') {
$rep = str_replace('var::', '', $for_mulai);
$h = explode('::', $rep);
if (!isset($h[0])) {
echo 'Error yang fatal. KEY var tidak ditemukan. ERR syntax';
} elseif (!isset($h[1])) {
echo 'Error yang fatal. VALUE var tidak ditemukan. ERR syntax';
} elseif ($h[1] == 'lihat_bool') {
setVariabel($h[0], $h[1]);
echo 'BOOL: 1';
} else {
setVariabel($h[0], $h[1]);
}
} elseif ($for_Pisahkan == 'lihat_var') {
$rep = str_replace('lihat_var::', '', $for_mulai);
$h = explode('::', $rep);
if (!isset($h[0])) {
echo 'Error yang fatal. KEY var tidak ditemukan. ERR syntax';
} else {
echo $_SESSION[$h[0]];
}
} elseif ($for_Pisahkan == 'base64') {
$rep = str_replace('ulang::', '', $for_mulai);
$h = explode('::', $rep);
if (!isset($h[0])) {
echo 'Error yang fatal. STR tidak ditemukan. ERR syntax';
} else {
echo base64_encode($h[0]);
}
} elseif ($for_Pisahkan == 'ulang') {
$rep = str_replace('ulang::', '', $for_mulai);
$h = explode('::', $rep);
if (!isset($h[0])) {
echo 'Error yang fatal. INT parameters tidak ditemukan. ERR syntax';
} elseif (!isset($h[1])) {
echo 'Error yang fatal. STR tidak ditemukan. ERR syntax';
} elseif (@$h[2] == '/n') {
for ($a = 1; $a <= $h[0]; $a++) {
echo $h[1] . PHP_EOL;
}
} else {
for ($a = 1; $a <= $h[0]; $a++) {
echo $h[1];
}
}
} elseif ($for_Pisahkan == 'jika') {
$rep = str_replace('jika::', '', $for_mulai);
$h = explode('::', $rep);
switch ($h[1]) {
case '>':
$booleanJika = $h[0] > $h[2];
break;
case '<':
$booleanJika = $h[0] < $h[2];
break;
case '<=':
$booleanJika = $h[0] <= $h[2];
break;
case '==':
$booleanJika = $h[0] == $h[2];
break;
case '===':
$booleanJika = $h[0] === $h[2];
break;
case '||':
$booleanJika = $h[0] || $h[2];
break;
default:
echo 'Notifikasi : argument tidak valid!' . PHP_EOL;
echo 'Thread sistem : ' . bin2hex(rand(1, 888999));
break;
}
if ($booleanJika == 1) {
echo $h[3];
} else {
echo $h[4];
}
} elseif ($for_Pisahkan == 'matematika') {
$rep = str_replace('matematika::', '', $for_mulai);
$h = explode('::', $rep);
switch ($h[1]) {
case '+':
echo $h[0] + $h[2];
break;
case '-':
echo $h[0] - $h[2];
break;
case '*':
echo $h[0] * $h[2];
break;
case '/':
echo $h[0] / $h[2];
break;
case '%':
echo $h[0] % $h[2];
break;
default:
echo 'Notifikasi : Modul selain operasi matematika tidak ditemukan. tersedia +-/*%' . PHP_EOL;
echo 'Thread sistem : ' . bin2hex(rand(1, 888999));
break;
}
//var_dump($math);
} elseif ($for_Pisahkan == 'systemOut.akhiri_program') {
echo PHP_EOL . PHP_EOL . PHP_EOL . 'Procces excited in ' . date('h:i');
}
}
}