Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.41
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
html_old /
pigeon /
node_modules /
.bin /
Delete
Unzip
Name
Size
Permission
Date
Action
cake
195
B
-rwxr-xr-x
2011-11-09 00:07
cleancss
2.14
KB
-rwxr-xr-x
2013-03-19 21:24
coffee
198
B
-rwxr-xr-x
2011-11-09 00:07
coffeelint
1.07
KB
-rwxr-xr-x
2016-10-03 01:14
sshpk-conv
5.6
KB
-rwxr-xr-x
1985-10-26 09:15
sshpk-sign
3.92
KB
-rwxr-xr-x
1985-10-26 09:15
sshpk-verify
3.47
KB
-rwxr-xr-x
1985-10-26 09:15
strip-json-comments
870
B
-rwxr-xr-x
2015-08-01 03:14
stylus
13.32
KB
-rwxr-xr-x
2012-10-23 18:12
uglifyjs
10.86
KB
-rwxr-xr-x
2013-02-05 18:11
uuid
1.54
KB
-rwxr-xr-x
1985-10-26 09:15
wscat
4.73
KB
-rwxr-xr-x
2012-06-09 18:03
Save
Rename
#!/usr/bin/env node 'use strict'; var fs = require('fs'); var strip = require('./strip-json-comments'); var input = process.argv[2]; function getStdin(cb) { var ret = ''; process.stdin.setEncoding('utf8'); process.stdin.on('data', function (data) { ret += data; }); process.stdin.on('end', function () { cb(ret); }); } if (process.argv.indexOf('-h') !== -1 || process.argv.indexOf('--help') !== -1) { console.log('strip-json-comments input-file > output-file'); console.log('or'); console.log('strip-json-comments < input-file > output-file'); return; } if (process.argv.indexOf('-v') !== -1 || process.argv.indexOf('--version') !== -1) { console.log(require('./package').version); return; } if (input) { process.stdout.write(strip(fs.readFileSync(input, 'utf8'))); return; } getStdin(function (data) { process.stdout.write(strip(data)); });