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.13
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 : first-bit.pl
#!/usr/bin/perl use warnings; use strict; use JSON::Parse 'assert_valid_json'; my $json = <<EOF; [ { "precision": "zip", "Latitude": 37.7668, "Longitude": -122.3959, "Address": "", "City": "SAN FRANCISCO", "State": "CA", "Zip": "94107", "Country": "US" }, { "precision": "zip", "Latitude": 37.371991, "Longitude": -122.026020, "Address": "", "City": "SUNNYVALE", "State": "CA", "Zip": "94085", "Country": "US" } ] EOF my $half = substr ($json, 0, length ($json)/2); eval { assert_valid_json ($half); }; if (! $@ || $@ =~ /unexpected end/i) { print "The first half of the JSON is valid.\n"; }
Close