Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
local /
wp /
vendor /
nb /
oxymel /
[ HOME SHELL ]
Name
Size
Permission
Action
.travis.yml
60
B
-rw-r--r--
Oxymel.php
5.79
KB
-rw-r--r--
OxymelTest.php
4.88
KB
-rw-r--r--
README.md
1.59
KB
-rw-r--r--
composer.json
383
B
-rw-r--r--
phpunit.xml.dist
284
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : README.md
oxymel – a sweet XML builder [](https://travis-ci.org/nb/oxymel) ============================ ```php $oxymel = new Oxymel; echo $oxymel ->xml ->html->contains ->head->contains ->meta(array('charset' => 'utf-8')) ->title("How to seduce dragons") ->end ->body(array('class' => 'story'))->contains ->h1('How to seduce dragons', array('id' => 'begin')) ->h2('The fire manual') ->p('Once upon a time in a distant land there was an dragon.') ->p('In another very distant land')->contains ->text(' there was a very ')->strong('strong')->text(' warrrior') ->end ->p->contains->cdata('<b>who fought bold dragons</b>')->end ->raw('<p>with not fake <b>bold</b> dragons, too</p>') ->tag('dragon:identity', array('name' => 'Jake')) ->comment('no dragons were harmed during the generation of this XML document') ->end ->end ->to_string(); ``` Outputs: ```xml <?xml version="1.0" encoding="UTF-8"?> <html> <head> <meta charset="utf-8"/> <title>How to seduce dragons</title> </head> <body class="story"> <h1 id="begin">How to seduce dragons</h1> <h2>The fire manual</h2> <p>Once upon a time in a distant land there was an dragon.</p> <p>In another very distant land there was a very <strong>strong</strong> warrrior</p> <p><![CDATA[<b>who fought bold dragons</b>]]></p> <p>with not fake <b>bold</b> dragons, too</p> <dragon:identity name="Jake"/> <!--no dragons were harmed during the generation of this XML document--> </body> </html> ```
Close