-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathjson-formatter.php
216 lines (206 loc) · 10.6 KB
/
json-formatter.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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
<?php
/* =============== DESCRIPTION FILE ======================================== */
/* */
/* Module : ZEROC0D3 JSON DECODE FORMATTER */
/* Type : JSON DECODER TOOLS */
/* Author : ZEROC0D3 Team */
/* Date : July 2015 */
/* */
/* __________ _________ _______ .___________ */
/* \____ /___________ ____ \_ ___ \\ _ \ __| _/\_____ \ Team */
/* / // __ \_ __ \/ _ \/ \ \// /_\ \ / __ | _(__ < */
/* / /\ ___/| | \( <_> ) \___\ \_/ \/ /_/ | / \ */
/* /_______ \___ >__| \____/ \______ /\_____ /\____ | /______ / */
/* \/ \/ \/ \/ \/ \/ */
/* */
/* ZeroC0d3 Team */
/* [ N0th1ng Imp0ss1bl3, Grey Hat Coder ] */
/* -------------------------------------------------------- */
/* http://pastebin.com/u/zeroc0d3 */
/* */
/* ========================================================================= */
global $zver;
global $snap_date, $start, $end;
global $str_plain;
global $json, $result, $str_format;
global $style1, $style2, $style3;
$GLOBALS['zver'] = "ver 1.2.1";
date_default_timezone_set('Asia/Jakarta');
error_reporting(0);
@ini_set('display_errors', 'Off');
@ini_set('log_errors', 'Off');
@ini_set('html_errors', 'Off');
@ini_set('safe_mode', 'Off');
@ini_set('register_globals', 'Off');
@ini_set('post_max_size', '128M');
@ini_set('memory_limit', '128M');
@set_time_limit(0);
function cssFile()
{
echo "<style>";
echo ".block { width: 270px; display: inline-block; height: 170px; padding-left: 30px; padding-bottom: 30px; text-align: center; vertical-align: top; position: relative; } .block2 { margin: 0 auto; text-align: center; } textarea, input, select { border: #777 1px solid; padding: 5px 0; } .hiddenInput { display: inline-block; width: 240px; } .code { display: none; } .attn { color: #c00; } .button50 { width: 40%; height: 40px; border-width: 1px; border-color: #000000; font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif; font-size: 11pt; font-weight: bold; font-color: #FFFFFF; color: #FFFFFF; background-color: #000000; vertical-align: middle; } .button100 { width: 90%; height: 40px; border-width: 1px; border-color: #000000; font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif; font-size: 11pt; font-weight: bold; font-color: #FFFFFF; color: #FFFFFF; background-color: #000000; vertical-align: middle; } .no-print { display: none; } .disable { font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif; font-size: 11pt; font-weight: bold; background: #DFDFDF; color: #000000; } .disable1 { font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif; font-size: 8pt; font-weight: bold; background: #1B1B1B; color: #000000; } .title { font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif; font-size: 16pt; font-weight: bold; color: #1B1B1B; vertical-align: middle; text-align: center; height: 50px; } .title1 { font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif; font-size: 14pt; font-weight: bold; font-color: #000000; background-color: #AFAFAF; vertical-align: middle; text-align: center; height: 30px; } .style0 { font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif; font-size: 9pt; font-weight: bold; color: #1B1B1B; vertical-align: middle; text-align: left; } .style0:hover { background-color: #FFFF99; } .style1 { font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif; font-size: 7pt; color: #1B1B1B; padding-left: 5px; padding-right: 5px; vertical-align: middle; text-align: left; } .style1:hover { background-color: #FFFF99; } .style2 { font-family: \"Monospace\", \"Ubuntu Mono\", \"Courier New\", Tahoma, Verdana, Arial, Helvetica, sans-serif; font-size: 9pt; font-weight: bold; color: #1B1B1B; vertical-align: middle; text-align: left; } .style2:hover { background-color: #FFFF99; }";
echo "</style>";
}
function formatJSON($json)
{
global $snap_date, $start, $end;
global $str_plain;
global $json, $result, $str_format;
global $style1, $style2, $style3;
if (!is_string($json)) {
if (phpversion() && phpversion() >= 5.4) {
return json_encode($json, JSON_PRETTY_PRINT);
}
$json = json_encode($json);
}
$result = '';
$pos = 0; // indentation level
$strLen = strlen($json);
$indentStr = "\t";
$newLine = "\n";
$prevChar = '';
$outOfQuotes = true;
for ($i = 0; $i < $strLen; $i++) {
// Speedup: copy blocks of input which don't matter re string detection and formatting.
$copyLen = strcspn($json, $outOfQuotes ? " \t\r\n\",:[{}]" : "\\\"", $i);
if ($copyLen >= 1) {
$copyStr = substr($json, $i, $copyLen);
// Also reset the tracker for escapes: we won't be hitting any right now
// and the next round is the first time an 'escape' character can be seen again at the input.
$prevChar = '';
$result .= $copyStr;
$i += $copyLen - 1; // correct for the for(;;) loop
continue;
}
// Grab the next character in the string
$char = substr($json, $i, 1);
// Are we inside a quoted string encountering an escape sequence?
if (!$outOfQuotes && $prevChar === '\\') {
// Add the escaped character to the result string and ignore it for the string enter/exit detection:
$result .= $char;
$prevChar = '';
continue;
}
// Are we entering/exiting a quoted string?
if ($char === '"' && $prevChar !== '\\') {
$outOfQuotes = !$outOfQuotes;
}
// If this character is the end of an element,
// output a new line and indent the next line
else if ($outOfQuotes && ($char === '}' || $char === ']')) {
$result .= $newLine;
$pos--;
for ($j = 0; $j < $pos; $j++) {
$result .= $indentStr;
}
} // eat all non-essential whitespace in the input as we do our own here and it would only mess up our process
else if ($outOfQuotes && false !== strpos(" \t\r\n", $char)) {
continue;
}
// Add the character to the result string
$result .= $char;
// always add a space after a field colon:
if ($outOfQuotes && $char === ':') {
$result .= ' ';
}
// If the last character was the beginning of an element,
// output a new line and indent the next line
else if ($outOfQuotes && ($char === ',' || $char === '{' || $char === '[')) {
$result .= $newLine;
if ($char === '{' || $char === '[') {
$pos++;
}
for ($j = 0; $j < $pos; $j++) {
$result .= $indentStr;
}
}
$prevChar = $char;
}
$str_format = $result;
return $result;
}
if ($_GET['action'] == "format_json") {
if (isset($_POST['json_unformat'])) {
$json_unformat = $_POST['json_unformat'];
$start = microtime(true);
formatJSON($json = $json_unformat);
$style1 = $str_format;
$end = microtime(true);
$snap_date = date("D, Y-m-d H:i");
}
}
?>
<html>
<head>
<title>ZeroC0d3 JSON DECODE FORMATER</title>
<?php echo cssFile(); ?>
</head>
<body>
<table width="780" border="1" align="center">
<tr>
<th colspan="3" class="title" scope="col" bgcolor="#AFAFAF"> <strong>ZeroC0d3 JSON DECODE FORMATER (<?php echo $GLOBALS['zver']; ?>)</strong></th>
</tr>
<form id="form1" name="form1" method="post" action="<?php echo basename($_SERVER['PHP_SELF']); ?>?action=format_json">
<tr>
<th scope="row" class="style0" width="250px"> JSON (Unformat) </th>
<td class="style0" style="text-align:center" width="5">
<center> : </center>
</td>
<td>
<textarea name="json_unformat" cols="80" rows="5"><?php if ($start > 0) {
echo $json_unformat . "\n"; } ?></textarea>
</td>
</tr>
<tr>
<th colspan="3" style="text-align:left" scope="row">
<center>
<input type="submit" name="json_text" id=" " value="FORMAT JSON" class="button100"/>
</center>
</th>
</tr>
</form>
<tr>
<th colspan="3" class="title1" scope="col"> <strong>JSON FORMATED :: RESULTS</strong></th>
</tr>
<tr>
<th scope="row" class="style0" width="250px"> Visual Decoded (Style-1) </th>
<td class="style0" style="text-align:center" width="5">
<center> : </center>
</td>
<td>
<textarea name="vstyle1" cols="80" rows="30" readonly><?php if ($start > 0) {
echo $style1 . "\n";
} ?></textarea>
</td>
</tr>
<tr>
<th scope="row" class="style0" width="250px"> Visual Decoded (Style-2) </th>
<td class="style0" style="text-align:center" width="5">
<center> : </center>
</td>
<td>
<textarea name="vstyle2" cols="80" rows="10" readonly><?php if ($start > 0) {
$style2 = var_dump(json_decode($style1, true));
echo $style2 . "\n";
} ?></textarea>
</td>
</tr>
<tr>
<th scope="row" class="style0" width="250px"> Visual Decoded (Style-3) </th>
<td class="style0" style="text-align:center" width="5">
<center> : </center>
</td>
<td>
<textarea name="vstyle3" cols="80" rows="10" readonly><?php if ($start > 0) {
$style3 = var_dump(json_decode($style1, false, 512, JSON_BIGINT_AS_STRING));
echo $style3 . "\n";
} ?></textarea>
</td>
</tr>
<tr>
<th colspan="3" class="style1" scope="row"> Execution Time (s)
: <?php echo "<strong>" . ($end - $start) . " | Last Activities : " . $snap_date . " </strong>"; ?></th>
</tr>
</table>
</body>
</html>