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 /
scp /
[ HOME SHELL ]
Name
Size
Permission
Action
apps
[ DIR ]
drwxr-xr-x
css
[ DIR ]
drwxr-xr-x
images
[ DIR ]
drwxr-xr-x
js
[ DIR ]
drwxr-xr-x
admin.inc.php
2.77
KB
-rw-r--r--
admin.php
70
B
-rw-r--r--
ajax.php
15.5
KB
-rw-r--r--
apikeys.php
5.44
KB
-rw-r--r--
audits.php
939
B
-rw-r--r--
autocron.php
2.32
KB
-rw-r--r--
banlist.php
7.15
KB
-rw-r--r--
canned.php
8.51
KB
-rw-r--r--
categories.php
7.2
KB
-rw-r--r--
dashboard.php
1.75
KB
-rw-r--r--
departments.php
13.45
KB
-rw-r--r--
directory.php
797
B
-rw-r--r--
emails.php
3.77
KB
-rw-r--r--
emailsettings.php
1.32
KB
-rw-r--r--
emailtest.php
5.49
KB
-rw-r--r--
export.php
757
B
-rw-r--r--
faq.php
6.7
KB
-rw-r--r--
filters.php
6.83
KB
-rw-r--r--
forms.php
6.82
KB
-rw-r--r--
helptopics.php
11.05
KB
-rw-r--r--
index.php
548
B
-rw-r--r--
kb.php
1.05
KB
-rw-r--r--
lists.php
8.39
KB
-rw-r--r--
login.php
3.7
KB
-rw-r--r--
logo.php
1.32
KB
-rw-r--r--
logout.php
1.12
KB
-rw-r--r--
logs.php
2.25
KB
-rw-r--r--
orgs.php
4.86
KB
-rw-r--r--
pages.php
6.75
KB
-rw-r--r--
plugins.php
2.05
KB
-rw-r--r--
profile.php
2.06
KB
-rw-r--r--
pwreset.php
2.99
KB
-rw-r--r--
queues.php
3.65
KB
-rw-r--r--
roles.php
5.84
KB
-rw-r--r--
schedules.php
2.49
KB
-rw-r--r--
settings.php
2
KB
-rw-r--r--
slas.php
6.07
KB
-rw-r--r--
staff.inc.php
4.83
KB
-rw-r--r--
staff.php
8.79
KB
-rw-r--r--
system.php
772
B
-rw-r--r--
tasks.php
9.96
KB
-rw-r--r--
teams.php
5.93
KB
-rw-r--r--
templates.php
9.04
KB
-rw-r--r--
tickets.php
23.35
KB
-rw-r--r--
upgrade.php
3.32
KB
-rw-r--r--
users.php
9.03
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : orgs.php
<?php /********************************************************************* orgs.php Peter Rotich <peter@osticket.com> Jared Hancock <jared@osticket.com> Copyright (c) 2006-2014 osTicket http://www.osticket.com Released under the GNU General Public License WITHOUT ANY WARRANTY. See LICENSE.TXT for details. vim: expandtab sw=4 ts=4 sts=4: **********************************************************************/ require('staff.inc.php'); require_once INCLUDE_DIR . 'class.organization.php'; require_once INCLUDE_DIR . 'class.note.php'; $org = null; if ($_REQUEST['id'] || $_REQUEST['org_id']) $org = Organization::lookup($_REQUEST['org_id'] ?: $_REQUEST['id']); if ($_POST) { switch ($_REQUEST['a']) { case 'import-users': if (!$org) { $errors['err'] = __('Organization ID must be specified for import'); break; } $status = User::importFromPost($_FILES['import'] ?: $_POST['pasted'], array('org_id'=>$org->getId())); if (is_numeric($status)) $msg = sprintf(__('Successfully imported %1$d %2$s'), $status, _N('end user', 'end users', $status)); else $errors['err'] = $status; break; case 'remove-users': if (!$org) $errors['err'] = __('Trying to remove end users from an unknown organization'); elseif (!$_POST['ids'] || !is_array($_POST['ids']) || !count($_POST['ids'])) { $errors['err'] = sprintf(__('You must select at least %s.'), __('one end user')); } else { $i = 0; foreach ($_POST['ids'] as $k=>$v) { if (($u=User::lookup($v)) && $org->removeUser($u)) $i++; } $num = count($_POST['ids']); if ($i && $i == $num) $msg = sprintf(__('Successfully removed %s.'), _N('selected end user', 'selected end users', $count)); elseif ($i > 0) $warn = sprintf(__('%1$d of %2$d %3$s removed'), $i, $count, _N('selected end user', 'selected end users', $count)); elseif (!$errors['err']) $errors['err'] = sprintf(__('Unable to remove %s'), _N('selected end user', 'selected end users', $count)); } break; case 'mass_process': if (!$_POST['ids'] || !is_array($_POST['ids']) || !count($_POST['ids'])) { $errors['err'] = sprintf(__('You must select at least %s.'), __('one organization')); } else { $orgs = Organization::objects()->filter( array('id__in' => $_POST['ids']) ); $count = 0; switch (strtolower($_POST['do'])) { case 'delete': foreach ($orgs as $O) { if ($O->delete()) $count++; } break; default: $errors['err']=sprintf('%s - %s', __('Unknown action'), __('Get technical help!')); } if (!$errors['err'] && !$count) { $errors['err'] = __('Unable to manage any of the selected organizations'); } elseif ($_POST['count'] && $count != $_POST['count']) { $warn = __('Not all selected items were updated'); } elseif ($count) { $msg = __('Successfully managed selected organizations'); } } break; default: $errors['err'] = __('Unknown action'); } } elseif (!$org && $_REQUEST['a'] == 'export') { require_once(INCLUDE_DIR.'class.export.php'); $ts = strftime('%Y%m%d'); if (!($query=$_SESSION[':Q:orgs'])) $errors['err'] = __('Query token not found'); elseif (!Export::saveOrganizations($query, __('organizations')."-$ts.csv", 'csv')) $errors['err'] = __('Unable to export results.') .' '.__('Internal error occurred'); } $page = 'orgs.inc.php'; if ($org) { $page = 'org-view.inc.php'; switch (strtolower($_REQUEST['t'])) { case 'tickets': if (isset($_SERVER['HTTP_X_PJAX'])) { $page='templates/tickets.tmpl.php'; $pjax_container = @$_SERVER['HTTP_X_PJAX_CONTAINER']; require(STAFFINC_DIR.$page); return; } elseif ($_REQUEST['a'] == 'export' && ($query=$_SESSION[':O:tickets'])) { $filename = sprintf('%s-tickets-%s.csv', $org->getName(), strftime('%Y%m%d')); if (!Export::saveTickets($query, NULL, $filename, 'csv')) $errors['err'] = __('Unable to dump query results.') .' '.__('Internal error occurred'); } break; } } $nav->setTabActive('users'); require(STAFFINC_DIR.'header.inc.php'); require(STAFFINC_DIR.$page); include(STAFFINC_DIR.'footer.inc.php'); ?>
Close