Linux localhost 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64
Apache/2.4.41 (Ubuntu)
: 23.92.16.63 | : 162.158.63.34
Cant Read [ /etc/named.conf ]
8.1.5
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
/
usr /
lib /
nodejs /
cyclist /
[ HOME SHELL ]
Name
Size
Permission
Action
index.js
683
B
-rw-r--r--
package.json
679
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.js
var twoify = function (n) { if (n && !(n & (n - 1))) return n var p = 1 while (p < n) p <<= 1 return p } var Cyclist = function (size) { if (!(this instanceof Cyclist)) return new Cyclist(size) size = twoify(size) this.mask = size - 1 this.size = size this.values = new Array(size) } Cyclist.prototype.put = function (index, val) { var pos = index & this.mask this.values[pos] = val return pos } Cyclist.prototype.get = function (index) { return this.values[index & this.mask] } Cyclist.prototype.del = function (index) { var pos = index & this.mask var val = this.values[pos] this.values[pos] = undefined return val } module.exports = Cyclist
Close