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 /
osticket /
upload /
include /
client /
[ HOME SHELL ]
Name
Size
Permission
Action
templates
[ DIR ]
drwxr-xr-x
accesslink.inc.php
2.19
KB
-rw-r--r--
edit.inc.php
863
B
-rw-r--r--
faq-category.inc.php
2.41
KB
-rw-r--r--
faq.inc.php
1.86
KB
-rw-r--r--
footer.inc.php
1003
B
-rw-r--r--
header.inc.php
7.8
KB
-rw-r--r--
kb-categories.inc.php
3.94
KB
-rw-r--r--
kb-search.inc.php
1.99
KB
-rw-r--r--
knowledgebase.inc.php
1.07
KB
-rw-r--r--
login.inc.php
2.55
KB
-rw-r--r--
open.inc.php
4.93
KB
-rw-r--r--
profile.inc.php
3.07
KB
-rw-r--r--
pwreset.login.php
960
B
-rw-r--r--
pwreset.request.php
913
B
-rw-r--r--
pwreset.sent.php
598
B
-rw-r--r--
register.confirm.inc.php
582
B
-rw-r--r--
register.confirmed.inc.php
652
B
-rw-r--r--
register.inc.php
3.15
KB
-rw-r--r--
tickets.inc.php
10.51
KB
-rw-r--r--
view.inc.php
8.37
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : profile.inc.php
<h1><?php echo __('Manage Your Profile Information'); ?></h1> <p><?php echo __( 'Use the forms below to update the information we have on file for your account' ); ?> </p> <form action="profile.php" method="post"> <?php csrf_token(); ?> <table width="800" class="padded"> <?php foreach ($user->getForms() as $f) { $f->render(['staff' => false]); } if ($acct = $thisclient->getAccount()) { $info=$acct->getInfo(); $info=Format::htmlchars(($errors && $_POST)?$_POST:$info); ?> <tr> <td colspan="2"> <div><hr><h3><?php echo __('Preferences'); ?></h3> </div> </td> </tr> <tr> <td width="180"> <?php echo __('Time Zone');?>: </td> <td> <?php $TZ_NAME = 'timezone'; $TZ_TIMEZONE = $info['timezone']; include INCLUDE_DIR.'staff/templates/timezone.tmpl.php'; ?> <div class="error"><?php echo $errors['timezone']; ?></div> </td> </tr> <?php if ($cfg->getSecondaryLanguages()) { ?> <tr> <td width="180"> <?php echo __('Preferred Language'); ?>: </td> <td> <?php $langs = Internationalization::getConfiguredSystemLanguages(); ?> <select name="lang"> <option value="">— <?php echo __('Use Browser Preference'); ?> —</option> <?php foreach($langs as $l) { $selected = ($info['lang'] == $l['code']) ? 'selected="selected"' : ''; ?> <option value="<?php echo $l['code']; ?>" <?php echo $selected; ?>><?php echo Internationalization::getLanguageDescription($l['code']); ?></option> <?php } ?> </select> <span class="error"> <?php echo $errors['lang']; ?></span> </td> </tr> <?php } if ($acct->isPasswdResetEnabled()) { ?> <tr> <td colspan="2"> <div><hr><h3><?php echo __('Access Credentials'); ?></h3></div> </td> </tr> <?php if (!isset($_SESSION['_client']['reset-token'])) { ?> <tr> <td width="180"> <?php echo __('Current Password'); ?>: </td> <td> <input type="password" size="18" name="cpasswd" value="<?php echo $info['cpasswd']; ?>"> <span class="error"> <?php echo $errors['cpasswd']; ?></span> </td> </tr> <?php } ?> <tr> <td width="180"> <?php echo __('New Password'); ?>: </td> <td> <input type="password" size="18" name="passwd1" value="<?php echo $info['passwd1']; ?>"> <span class="error"> <?php echo $errors['passwd1']; ?></span> </td> </tr> <tr> <td width="180"> <?php echo __('Confirm New Password'); ?>: </td> <td> <input type="password" size="18" name="passwd2" value="<?php echo $info['passwd2']; ?>"> <span class="error"> <?php echo $errors['passwd2']; ?></span> </td> </tr> <?php } ?> <?php } ?> </table> <hr> <p style="text-align: center;"> <input type="submit" value="Update"/> <input type="reset" value="Reset"/> <input type="button" value="Cancel" onclick="javascript: window.location.href='index.php';"/> </p> </form>
Close