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.216.250
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
local /
bin /
Delete
Unzip
Name
Size
Permission
Date
Action
budi
618
B
-rwxr-xr-x
1985-10-26 08:15
loganon.pl
2.74
KB
-rwxr-xr-x
2022-02-01 17:19
wp
6.81
MB
-rwxr-xr-x
2026-07-29 13:00
Save
Rename
#!/usr/bin/env node const { getCommands } = require("./options") const { Command } = require("commander") const { getHelpDescription } = require("./utils") // add hosting config async function init() { const program = new Command() .addHelpCommand("help", getHelpDescription("Help with Budibase commands.")) .helpOption(false) program.helpOption() // add commands for (let command of getCommands()) { command.configure(program) } // this will stop the program if no command found await program.parseAsync(process.argv) } init().catch(err => { console.error(`Unexpected error - `, err) })