Linux sagir-us1.hostever.us 5.14.0-570.51.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Oct 8 09:41:34 EDT 2025 x86_64
LiteSpeed
Server IP : 104.247.108.91 & Your IP : 216.73.216.105
Domains : 74 Domain
User : georgeto
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
local /
lsws /
admin /
html.open /
lib /
Delete
Unzip
Name
Size
Permission
Date
Action
ows
[ DIR ]
drwxr-xr-x
2025-02-25 04:01
util
[ DIR ]
drwxr-xr-x
2025-02-25 04:01
CAuthorizer.php
9.56
KB
-rw-r--r--
2025-02-25 04:01
CData.php
36.55
KB
-rw-r--r--
2025-02-25 04:01
CNode.php
21.42
KB
-rw-r--r--
2025-02-25 04:01
CValidation.php
21.7
KB
-rw-r--r--
2025-02-25 04:01
ControllerBase.php
15.46
KB
-rw-r--r--
2025-02-25 04:01
DAttrBase.php
12.63
KB
-rw-r--r--
2025-02-25 04:01
DAttrHelp.php
2.05
KB
-rw-r--r--
2025-02-25 04:01
DInfo.php
16.55
KB
-rw-r--r--
2025-02-25 04:01
DKeywordAlias.php
1.49
KB
-rw-r--r--
2025-02-25 04:01
DMsg.php
8.01
KB
-rw-r--r--
2025-02-25 04:01
DPage.php
3.62
KB
-rw-r--r--
2025-02-25 04:01
DTbl.php
19.03
KB
-rw-r--r--
2025-02-25 04:01
DTblDefBase.php
64.83
KB
-rw-r--r--
2025-02-25 04:01
DTblMap.php
5.29
KB
-rw-r--r--
2025-02-25 04:01
LogViewer.php
7.64
KB
-rw-r--r--
2025-02-25 04:01
PathTool.php
4.63
KB
-rw-r--r--
2025-02-25 04:01
PlainConfParser.php
9.46
KB
-rw-r--r--
2025-02-25 04:01
SInfo.php
7.28
KB
-rw-r--r--
2025-02-25 04:01
XmlParser.php
2.45
KB
-rw-r--r--
2025-02-25 04:01
blowfish.php
25.68
KB
-rw-r--r--
2025-02-25 04:01
jCryption.php
19.15
KB
-rw-r--r--
2025-02-25 04:01
Save
Rename
<?php class DAttrHelp { private $name; private $desc; private $tips; private $syntax; private $example; function __construct($name, $desc, $tips = null, $syntax = null, $example = null) { $this->name = $name; $this->desc = $desc; if ($tips) { $this->tips = str_replace('<br>', '<br/>', $tips); } $this->syntax = $syntax; $this->example = $example; } public function Render($blocked_version = 0) { $buf = '<a href="javascript:void(0);" rel="popover" data-placement="right" data-original-title="<i class=\'fa fa-fw fa-tag\'></i> <strong>' . $this->name . '</strong>" data-html="true" data-content=\'<div>'; switch ($blocked_version) { case 0: break; case 1: // LSWS ENTERPRISE; $buf .= ' <i>' . DMsg::UIStr('note_entfeature') . '</i>'; break; case 2: // LSWS 2CPU + case 3: // LSLB 2CPU + $buf .= ' <i>' . DMsg::UIStr('note_multicpufeature') . '</i>'; break; } $buf .= $this->desc . '<br><br>'; if ($this->syntax) { $buf .= '<div class="popover-mono"><strong>' . DMsg::UIStr('note_syntax') . ':</strong> ' . $this->syntax . '</div><br>'; } if ($this->example) { $buf .= '<div class="popover-mono"><strong>' . DMsg::UIStr('note_example') . ':</strong> ' . $this->example . '</div><br>'; } if ($this->tips) { $buf .= '<strong>' . DMsg::UIStr('note_tips') . ':</strong><ul type=circle>'; $tips = explode('<br/>', $this->tips); foreach ($tips as $ti) { $ti = trim($ti); if ($ti != '') $buf .= '<li>' . $ti . '</li>'; } $buf .= '</ul>'; } $buf .= '</div>\'><i class="icon-prepend fa fa-question-circle text-muted"></i></a>'; return $buf; } }