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.213
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 /
jailkit /
[ HOME SHELL ]
Name
Size
Permission
Action
help
[ DIR ]
drwxr-xr-x
lang
[ DIR ]
drwxr-xr-x
LICENSE
34.32
KB
-rw-r--r--
README.md
62
B
-rw-r--r--
config
32
B
-rw-r--r--
config.info
61
B
-rw-r--r--
delete_jail.cgi
1.25
KB
-rwxr-xr-x
edit_jail.cgi
2.71
KB
-rwxr-xr-x
index.cgi
1022
B
-rwxr-xr-x
install-type
4
B
-rw-r--r--
install_check.pl
376
B
-rwxr-xr-x
jailkit-lib.pl
1
KB
-rwxr-xr-x
module.info
86
B
-rw-r--r--
save_jail.cgi
1.97
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : delete_jail.cgi
#!/usr/bin/perl use strict; use warnings; our (%text, %in); require './jailkit-lib.pl'; ReadParse(); my $jk_init_ini = get_jk_init_ini(); my @sections = $jk_init_ini->Sections(); my %jail_params; my @d = split(/\0/, $in{'d'}); # If we've already confirmed go ahead an delete it if (defined $in{'confirmed'}) { foreach my $jail (@d) { if ($jk_init_ini->SectionExists($jail)) { $jk_init_ini->DeleteSection($jail); } else { # Does this jail exist? error( text('error_jail_not_found', "$jail", "<br>\n")); } } write_jk_init_ini($jk_init_ini); redirect(''); } else { ui_print_header(undef, $text{'index_delete_jail'}, ""); print "<center>\n"; # Check to be sure we really want these jails gone print ui_form_start("delete_jail.cgi", "post"); foreach my $jail (@d) { # Re-send all of the d_* items with a confirmed field print ui_hidden("d", $jail); } print $text{'delete_are_you_sure'}; print "<p>\n"; foreach my $del_jail (@d) { print "<i>$del_jail</i><br>\n"; } print "</p>\n"; print ui_hidden("confirmed", "1"); #print ui_submit($text{delete_confirm}, "confirm"); print ui_form_end([ [ "confirm", $text{'delete_confirm'} ] ]); print "</center>\n"; ui_print_footer(""); } ui_print_footer("");
Close