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.216.28
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 NS="$HOME/.netscape/bookmarks.html" OLD="${LFTP_HOME:-$HOME/.lftp}/bookmarks" NEW="$OLD.new.$$" prepend_hash() { n=$$ while read line; do u=`echo $line | sed -e 's|\(ftp://[^:]*\):[^@]*@|\1|'` t=`expr "$u" : "ftp://\([^.]*\)"` if [ "$t" = ftp -o -z "$t" ]; then t=`expr "$u" : "ftp://[^.]*.\([^.]*\)"` if [ "$t" = ftp -o -z "$t" ]; then t="$n" n=`expr $n + 1` fi fi echo "NS-$t $line" done } grep ftp:// "$NS" | cut "-d\"" -f2 | prepend_hash > "$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"