Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 uid=33(www-data) gid=33(www-data) groups=33(www-data) Safe-mode: OFF (not secure) /var/www/html/pmb/node_modules_old/default-gateway/ drwxrwxrwx | |
| Viewing file: Select action/file-type: "use strict";
const {isIP} = require("net");
const execa = require("execa");
const dests = new Set(["default", "0.0.0.0", "0.0.0.0/0", "::", "::/0"]);
const args = {
v4: ["-rn", "-f", "inet"],
v6: ["-rn", "-f", "inet6"],
};
const parse = stdout => {
let result;
(stdout || "").trim().split("\n").some(line => {
const [target, gateway, _, iface] = line.split(/ +/) || [];
if (dests.has(target) && gateway && isIP(gateway)) {
result = {gateway, interface: (iface ? iface : null)};
return true;
}
});
if (!result) {
throw new Error("Unable to determine default gateway");
}
return result;
};
const promise = async family => {
const {stdout} = await execa("netstat", args[family]);
return parse(stdout);
};
const sync = family => {
const {stdout} = execa.sync("netstat", args[family]);
return parse(stdout);
};
module.exports.v4 = () => promise("v4");
module.exports.v6 = () => promise("v6");
module.exports.v4.sync = () => sync("v4");
module.exports.v6.sync = () => sync("v6");
|
:: Command execute :: | |
--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0343 ]-- |