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-netscape
#!/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"
Close