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 # Show a QR code based on parameters use strict; use warnings; no warnings 'redefine'; no warnings 'uninitialized'; $main::no_acl_check = 1; require './twofactor-lib.pl'; our (%in, %text, %gconfig, %config); &ReadParse(); &error_setup($text{'qr_err'}); $in{'str'} || &error($text{'qr_estr'}); my ($img, $mime) = &generate_qr_code($in{'str'}, $in{'size'}); $img || &error($mime); &PrintHeader(undef, $mime); print $img;