Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.217.117
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
lftp /
Delete
Unzip
Name
Size
Permission
Date
Action
convert-mozilla-cookies
1.74
KB
-rwxr-xr-x
2022-07-27 00:33
import-ncftp
621
B
-rwxr-xr-x
2022-07-27 00:33
import-netscape
857
B
-rwxr-xr-x
2022-07-27 00:33
verify-file
2.98
KB
-rwxr-xr-x
2022-07-27 00:33
xdg-move
789
B
-rwxr-xr-x
2022-07-27 00:33
Save
Rename
#!/bin/sh # This script is based on draft by Sam Steingold # Copyright (c) 1998 by Alexander V. Lukyanov # This script can be distributed and modified freely under GNU GPL, see COPYING set -e NCFTP="$HOME/.ncftp/bookmarks" OLD="${LFTP_HOME:-$HOME/.lftp}/bookmarks" NEW="$OLD.new.$$" grep "," "$NCFTP" | cut -d, -f1,2,3,6 | sed \ -e "s?,,?/?" \ -e "s?//?/?" \ -e "s?,? ftp://?" \ -e "s?ftp://\([^,]*\),\([^,]*\),/*?ftp://\2@\1/?" \ -e "s?^?NC-?" > "$NEW" if [ -f "$OLD" ]; then sort -u "$OLD" "$NEW" -o "$NEW" mv -f "$OLD" "$OLD~" # backup else sort -u "$NEW" -o "$NEW" fi mv -f "$NEW" "$OLD"