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 /
hoopy /
[ HOME SHELL ]
Name
Size
Permission
Action
.eslintrc
4.91
KB
-rw-rw-rw-
.gitlab-ci.yml
316
B
-rw-rw-rw-
AUTHORS
106
B
-rw-rw-rw-
CHANGELOG.md
763
B
-rw-rw-rw-
CONTRIBUTING.md
464
B
-rw-rw-rw-
LICENSE
1.03
KB
-rw-rw-rw-
README.md
3.21
KB
-rw-rw-rw-
index.js
1.87
KB
-rw-rw-rw-
package.json
852
B
-rw-rw-rw-
test.js
6.5
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.js
'use strict' class Hoopy extends Array { constructor (size) { let index, isIndexOverflowed if (! isPositiveInteger(size)) { throw new TypeError('Argument `size` must be a positive integer.') } super(size) this.grow = by => { if (! isPositiveInteger(by)) { throw new TypeError('Argument `by` must be a positive integer.') } let i const newSize = size + by for (i = size; i < newSize; ++i) { this[i] = undefined } if (isIndexOverflowed) { for (i = 0; i <= index; ++i) { let j = size + i if (j >= newSize) { j %= newSize } this[j] = this[i] this[i] = undefined } } size = newSize } return new Proxy(this, { get (target, key) { if (isInteger(key)) { return target[getIndex(key, size)] } return target[key] }, set (target, key, value) { if (isInteger(key)) { index = getIndex(key, size) target[index] = value if (Math.abs(key) >= size) { isIndexOverflowed = true } else { isIndexOverflowed = false } } else { target[key] = value } return true } }) } } function isPositiveInteger (thing) { return isInteger(thing) && thing > 0 } function isInteger (thing) { try { return +thing % 1 === 0 } catch (error) { // Coercing symbols to numbers throws an error } return false } function getIndex (key, size) { if (key === 0) { return 0 } if (key < 0) { return (size - Math.abs(key)) % size } return key % size } function nop () { throw new Error('Not implemented') } Hoopy.prototype.push = nop Hoopy.prototype.pop = nop Hoopy.prototype.shift = nop Hoopy.prototype.unshift = nop module.exports = Hoopy
Close