Software: Apache. PHP/8.1.30 uname -a: Linux server1.tuhinhossain.com 5.15.0-163-generic #173-Ubuntu SMP Tue Oct 14 17:51:00 UTC uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root) Safe-mode: OFF (not secure) /home/picotech/domains/inventory.picotech.app/public_html/node_modules/default-gateway/ drwxr-xr-x | |
| Viewing file: Select action/file-type: "use strict";
const {isIP} = require("net");
const execa = require("execa");
const args = {
v4: ["-4", "r"],
v6: ["-6", "r"],
};
const parse = stdout => {
let result;
(stdout || "").trim().split("\n").some(line => {
const [_, gateway, iface] = /default via (.+?) dev (.+?)( |$)/.exec(line) || [];
if (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("ip", args[family]);
return parse(stdout, family);
};
const sync = family => {
const {stdout} = execa.sync("ip", 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.0034 ]-- |