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 /
css-select /
lib /
[ HOME SHELL ]
Name
Size
Permission
Action
pseudo-selectors
[ DIR ]
dr-xr-xr-x
attributes.d.ts
427
B
-rw-rw-rw-
attributes.d.ts.map
453
B
-rw-rw-rw-
attributes.js
7.36
KB
-rw-rw-rw-
compile.d.ts
962
B
-rw-rw-rw-
compile.d.ts.map
878
B
-rw-rw-rw-
compile.js
4.44
KB
-rw-rw-rw-
general.d.ts
423
B
-rw-rw-rw-
general.d.ts.map
455
B
-rw-rw-rw-
general.js
5.68
KB
-rw-rw-rw-
index.d.ts
3.21
KB
-rw-rw-rw-
index.d.ts.map
875
B
-rw-rw-rw-
index.js
6.69
KB
-rw-rw-rw-
procedure.d.ts
279
B
-rw-rw-rw-
procedure.d.ts.map
348
B
-rw-rw-rw-
procedure.js
491
B
-rw-rw-rw-
sort.d.ts
333
B
-rw-rw-rw-
sort.d.ts.map
237
B
-rw-rw-rw-
sort.js
2.46
KB
-rw-rw-rw-
types.d.ts
4.71
KB
-rw-rw-rw-
types.d.ts.map
2.72
KB
-rw-rw-rw-
types.js
77
B
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : sort.js
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var css_what_1 = require("css-what"); var procedure_1 = require("./procedure"); var attributes = { exists: 10, equals: 8, not: 7, start: 6, end: 6, any: 5, hyphen: 4, element: 4, }; /** * Sort the parts of the passed selector, * as there is potential for optimization * (some types of selectors are faster than others) * * @param arr Selector to sort */ function sortByProcedure(arr) { var procs = arr.map(getProcedure); for (var i = 1; i < arr.length; i++) { var procNew = procs[i]; if (procNew < 0) continue; for (var j = i - 1; j >= 0 && procNew < procs[j]; j--) { var token = arr[j + 1]; arr[j + 1] = arr[j]; arr[j] = token; procs[j + 1] = procs[j]; procs[j] = procNew; } } } exports.default = sortByProcedure; function getProcedure(token) { var proc = procedure_1.procedure[token.type]; if (token.type === css_what_1.SelectorType.Attribute) { proc = attributes[token.action]; if (proc === attributes.equals && token.name === "id") { // Prefer ID selectors (eg. #ID) proc = 9; } if (token.ignoreCase) { /* * IgnoreCase adds some overhead, prefer "normal" token * this is a binary operation, to ensure it's still an int */ proc >>= 1; } } else if (token.type === css_what_1.SelectorType.Pseudo) { if (!token.data) { proc = 3; } else if (token.name === "has" || token.name === "contains") { proc = 0; // Expensive in any case } else if (Array.isArray(token.data)) { // "matches" and "not" proc = 0; for (var i = 0; i < token.data.length; i++) { // TODO better handling of complex selectors if (token.data[i].length !== 1) continue; var cur = getProcedure(token.data[i][0]); // Avoid executing :has or :contains if (cur === 0) { proc = 0; break; } if (cur > proc) proc = cur; } if (token.data.length > 1 && proc > 0) proc -= 1; } else { proc = 1; } } return proc; }
Close