Ghost Exploiter Team Official
Mass Deface
Directory >>
/
var
/
www
/
html
/
back
/
vendor
/
ezyang
/
htmlpurifier
/
library
/
HTMLPurifier
/
HTMLModule
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
type
file
dir
+File/Dir
Tidy
--
ren
Bdo.php
1.004KB
edt
ren
CommonAttributes.php
0.705KB
edt
ren
Edit.php
1.4KB
edt
ren
Forms.php
5.699KB
edt
ren
Hypertext.php
0.973KB
edt
ren
Iframe.php
1.252KB
edt
ren
Image.php
1.355KB
edt
ren
Legacy.php
5.718KB
edt
ren
List.php
1.864KB
edt
ren
Name.php
0.653KB
edt
ren
Nofollow.php
0.495KB
edt
ren
NonXMLCommonAttributes.php
0.346KB
edt
ren
Object.php
1.487KB
edt
ren
Presentation.php
1.382KB
edt
ren
Proprietary.php
0.972KB
edt
ren
Ruby.php
1.028KB
edt
ren
SafeEmbed.php
1.071KB
edt
ren
SafeObject.php
1.901KB
edt
ren
SafeScripting.php
1.233KB
edt
ren
Scripting.php
2.282KB
edt
ren
StyleAttribute.php
0.762KB
edt
ren
Tables.php
2.297KB
edt
ren
Target.php
0.585KB
edt
ren
TargetBlank.php
0.51KB
edt
ren
TargetNoopener.php
0.504KB
edt
ren
TargetNoreferrer.php
0.514KB
edt
ren
Text.php
3.354KB
edt
ren
Tidy.php
7.02KB
edt
ren
XMLCommonAttributes.php
0.344KB
edt
ren
<?php /** * XHTML 1.1 List Module, defines list-oriented elements. Core Module. */ class HTMLPurifier_HTMLModule_List extends HTMLPurifier_HTMLModule { /** * @type string */ public $name = 'List'; // According to the abstract schema, the List content set is a fully formed // one or more expr, but it invariably occurs in an optional declaration // so we're not going to do that subtlety. It might cause trouble // if a user defines "List" and expects that multiple lists are // allowed to be specified, but then again, that's not very intuitive. // Furthermore, the actual XML Schema may disagree. Regardless, // we don't have support for such nested expressions without using // the incredibly inefficient and draconic Custom ChildDef. /** * @type array */ public $content_sets = array('Flow' => 'List'); /** * @param HTMLPurifier_Config $config */ public function setup($config) { $ol = $this->addElement('ol', 'List', new HTMLPurifier_ChildDef_List(), 'Common'); $ul = $this->addElement('ul', 'List', new HTMLPurifier_ChildDef_List(), 'Common'); // XXX The wrap attribute is handled by MakeWellFormed. This is all // quite unsatisfactory, because we generated this // *specifically* for lists, and now a big chunk of the handling // is done properly by the List ChildDef. So actually, we just // want enough information to make autoclosing work properly, // and then hand off the tricky stuff to the ChildDef. $ol->wrap = 'li'; $ul->wrap = 'li'; $this->addElement('dl', 'List', 'Required: dt | dd', 'Common'); $this->addElement('li', false, 'Flow', 'Common'); $this->addElement('dd', false, 'Flow', 'Common'); $this->addElement('dt', false, 'Inline', 'Common'); } } // vim: et sw=4 sts=4
<=Back
Liking