Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
lftp /
[ HOME SHELL ]
Name
Size
Permission
Action
convert-mozilla-cookies
1.74
KB
-rwxr-xr-x
import-ncftp
621
B
-rwxr-xr-x
import-netscape
857
B
-rwxr-xr-x
verify-file
2.98
KB
-rwxr-xr-x
xdg-move
789
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : import-ncftp
#!/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"
Close