Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.20
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
nodejs /
browserify-aes /
modes /
[ HOME SHELL ]
Name
Size
Permission
Action
cbc.js
342
B
-rw-r--r--
cfb.js
869
B
-rw-r--r--
cfb1.js
917
B
-rw-r--r--
cfb8.js
518
B
-rw-r--r--
ctr.js
908
B
-rw-r--r--
ecb.js
175
B
-rw-r--r--
index.js
364
B
-rw-r--r--
list.json
3.01
KB
-rw-r--r--
ofb.js
415
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : cfb8.js
var Buffer = require('safe-buffer').Buffer function encryptByte (self, byteParam, decrypt) { var pad = self._cipher.encryptBlock(self._prev) var out = pad[0] ^ byteParam self._prev = Buffer.concat([ self._prev.slice(1), Buffer.from([decrypt ? byteParam : out]) ]) return out } exports.encrypt = function (self, chunk, decrypt) { var len = chunk.length var out = Buffer.allocUnsafe(len) var i = -1 while (++i < len) { out[i] = encryptByte(self, chunk[i], decrypt) } return out }
Close