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 /
amatya /
node_modules /
default-gateway /
[ HOME SHELL ]
Name
Size
Permission
Action
LICENSE
1.26
KB
-rw-r--r--
README.md
1.82
KB
-rw-r--r--
android.js
997
B
-rw-r--r--
darwin.js
1.15
KB
-rw-r--r--
freebsd.js
1.1
KB
-rw-r--r--
ibmi.js
1.02
KB
-rw-r--r--
index.js
850
B
-rw-r--r--
linux.js
1.52
KB
-rw-r--r--
openbsd.js
1.1
KB
-rw-r--r--
package.json
1.97
KB
-rw-r--r--
sunos.js
1.1
KB
-rw-r--r--
win32.js
1.74
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : win32.js
"use strict"; const execa = require("execa"); const ipRegex = require("ip-regex"); const gwArgs = "path Win32_NetworkAdapterConfiguration where IPEnabled=true get DefaultIPGateway,Index /format:table".split(" "); const ifArgs = "path Win32_NetworkAdapter get Index,NetConnectionID /format:table".split(" "); const parse = (gwTable, ifTable, family) => { let gateway, gwid, result; (gwTable || "").trim().split("\n").splice(1).some(line => { const results = line.trim().split(/} +/) || []; const gw = results[0]; const id = results[1]; gateway = (ipRegex[family]().exec((gw || "").trim()) || [])[0]; if (gateway) { gwid = id; return true; } }); (ifTable || "").trim().split("\n").splice(1).some(line => { const i = line.indexOf(" "); const id = line.substr(0, i).trim(); const name = line.substr(i + 1).trim(); if (id === gwid) { result = {gateway, interface: name ? name : null}; return true; } }); if (!result) { throw new Error("Unable to determine default gateway"); } return result; }; const spawnOpts = { windowsHide: true, }; const promise = family => { return Promise.all([ execa.stdout("wmic", gwArgs, spawnOpts), execa.stdout("wmic", ifArgs, spawnOpts), ]).then(results => { const gwTable = results[0]; const ifTable = results[1]; return parse(gwTable, ifTable, family); }); }; const sync = family => { const gwTable = execa.sync("wmic", gwArgs, spawnOpts).stdout; const ifTable = execa.sync("wmic", ifArgs, spawnOpts).stdout; return parse(gwTable, ifTable, family); }; module.exports.v4 = () => promise("v4"); module.exports.v6 = () => promise("v6"); module.exports.v4.sync = () => sync("v4"); module.exports.v6.sync = () => sync("v6");
Close