Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.1
Cant Read [ /etc/named.conf ]
8.1.31
www-data
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 /
quiz1 /
node_modules /
default-gateway /
[ HOME SHELL ]
Name
Size
Permission
Action
LICENSE
1.26
KB
-rw-rw-rw-
README.md
1.77
KB
-rw-rw-rw-
android.js
940
B
-rw-rw-rw-
darwin.js
1.34
KB
-rw-rw-rw-
freebsd.js
1.01
KB
-rw-rw-rw-
ibmi.js
1.02
KB
-rw-rw-rw-
index.js
867
B
-rw-rw-rw-
linux.js
1.51
KB
-rw-rw-rw-
openbsd.js
1.08
KB
-rw-rw-rw-
package.json
781
B
-rw-rw-rw-
sunos.js
1.08
KB
-rw-rw-rw-
win32.js
3.1
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.js
"use strict"; const {platform, type} = require("os"); const supportedPlatforms = new Set([ "aix", "android", "darwin", "freebsd", "linux", "openbsd", "sunos", "win32" ]); const plat = platform(); if (supportedPlatforms.has(plat)) { let file = plat; if (plat === "aix") { file = type() === "OS400" ? "ibmi" : "sunos"; // AIX `netstat` output is compatible with Solaris } const m = require(`./${file}.js`); module.exports.v4 = () => m.v4(); module.exports.v6 = () => m.v6(); module.exports.v4.sync = () => m.v4.sync(); module.exports.v6.sync = () => m.v6.sync(); } else { const err = new Error(`Unsupported Platform: ${plat}`); module.exports.v4 = () => Promise.reject(err); module.exports.v6 = () => Promise.reject(err); module.exports.v4.sync = () => { throw err; }; module.exports.v6.sync = () => { throw err; }; }
Close