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 : faq-category.inc.php
<?php if(!defined('OSTCLIENTINC') || !$category || !$category->isPublic()) die('Access Denied'); ?> <div class="row"> <div class="span8"> <h1><?php echo $category->getFullName(); ?></h1> <p> <?php echo Format::safe_html($category->getLocalDescriptionWithImages()); ?> </p> <?php if (($subs=$category->getSubCategories(array('public' => true)))) { echo '<div>'; foreach ($subs as $c) { echo sprintf('<div><i class="icon-folder-open-alt"></i> <a href="faq.php?cid=%d">%s (%d)</a></div>', $c->getId(), $c->getLocalName(), $c->getNumFAQs() ); } echo '</div>'; } ?> <hr> <?php $faqs = FAQ::objects() ->filter(array('category'=>$category)) ->exclude(array('ispublished'=>FAQ::VISIBILITY_PRIVATE)) ->annotate(array('has_attachments' => SqlAggregate::COUNT(SqlCase::N() ->when(array('attachments__inline'=>0), 1) ->otherwise(null) ))) ->order_by('-ispublished', 'question'); if ($faqs->exists(true)) { echo ' <h2>'.__('Frequently Asked Questions').'</h2> <div id="faq"> <ol>'; foreach ($faqs as $F) { $attachments=$F->has_attachments?'<span class="Icon file"></span>':''; echo sprintf(' <li><a href="faq.php?id=%d" >%s %s</a></li>', $F->getId(),Format::htmlchars($F->question), $attachments); } echo ' </ol> </div>'; } elseif (!$category->children) { echo '<strong>'.__('This category does not have any FAQs.').' <a href="index.php">'.__('Back To Index').'</a></strong>'; } ?> </div> <div class="span4"> <div class="sidebar"> <div class="searchbar"> <form method="get" action="faq.php"> <input type="hidden" name="a" value="search"/> <input type="text" name="q" class="search" placeholder="<?php echo __('Search our knowledge base'); ?>"/> <input type="submit" style="display:none" value="search"/> </form> </div> <div class="content"> <section> <div class="header"><?php echo __('Help Topics'); ?></div> <?php foreach (Topic::objects() ->filter(array('faqs__faq__category__category_id'=>$category->getId())) ->distinct('topic_id') as $t) { ?> <a href="?topicId=<?php echo urlencode($t->getId()); ?>" ><?php echo $t->getFullName(); ?></a> <?php } ?> </section> </div> </div> </div> </div>
Close