Linux v69820.1blu.de 4.15.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
Apache/2.4.58
Server IP : 195.90.215.149 & Your IP : 216.73.217.80
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
doc /
node-readable-stream /
examples /
Delete
Unzip
Name
Size
Permission
Date
Action
capslocktyper.js
748
B
-rw-r--r--
2023-01-25 01:13
typer.js
416
B
-rw-r--r--
2023-01-25 01:13
Save
Rename
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(Buffer.from(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'); });