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
/
home /
amatya /
quiz1 /
node_modules /
jsonpath /
lib /
[ HOME SHELL ]
Name
Size
Permission
Action
aesprim.js
499
B
-rw-rw-rw-
dict.js
241
B
-rw-rw-rw-
grammar.js
4.87
KB
-rw-rw-rw-
handlers.js
7.39
KB
-rw-rw-rw-
index.js
6.17
KB
-rw-rw-rw-
parser.js
410
B
-rw-rw-rw-
slice.js
1.25
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : slice.js
module.exports = function(arr, start, end, step) { if (typeof start == 'string') throw new Error("start cannot be a string"); if (typeof end == 'string') throw new Error("end cannot be a string"); if (typeof step == 'string') throw new Error("step cannot be a string"); var len = arr.length; if (step === 0) throw new Error("step cannot be zero"); step = step ? integer(step) : 1; // normalize negative values start = start < 0 ? len + start : start; end = end < 0 ? len + end : end; // default extents to extents start = integer(start === 0 ? 0 : !start ? (step > 0 ? 0 : len - 1) : start); end = integer(end === 0 ? 0 : !end ? (step > 0 ? len : -1) : end); // clamp extents start = step > 0 ? Math.max(0, start) : Math.min(len, start); end = step > 0 ? Math.min(end, len) : Math.max(-1, end); // return empty if extents are backwards if (step > 0 && end <= start) return []; if (step < 0 && start <= end) return []; var result = []; for (var i = start; i != end; i += step) { if ((step < 0 && i <= end) || (step > 0 && i >= end)) break; result.push(arr[i]); } return result; } function integer(val) { return String(val).match(/^[0-9]+$/) ? parseInt(val) : Number.isFinite(val) ? parseInt(val, 10) : 0; }
Close