ROOTPLOIT
Server: Apache
System: Linux node6122.myfcloud.com 6.14.3-x86_64-linode168 #1 SMP PREEMPT_DYNAMIC Mon Apr 21 19:47:55 EDT 2025 x86_64
User: bashacomputer (1004)
PHP: 7.4.33
Disabled: exec,passthru,shell_exec,system
Upload Files
File: //usr/local/bin/ghost
#!/usr/bin/env node
'use strict';

// provide a title to the process
process.title = 'ghost';

const argv = process.argv.slice(2);

if (argv.length === 0) {
    console.error('No command specified. Run `ghost help` for usage');
    process.exit(1);
}

const yargs = require('yargs');
const bootstrap = require('../lib/bootstrap');
bootstrap.run(argv, yargs);