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 /** * Validates based on {ident} CSS grammar production */ class HTMLPurifier_AttrDef_CSS_Ident extends HTMLPurifier_AttrDef { /** * @param string $string * @param HTMLPurifier_Config $config * @param HTMLPurifier_Context $context * @return bool|string */ public function validate($string, $config, $context) { $string = trim($string); // early abort: '' and '0' (strings that convert to false) are invalid if (!$string) { return false; } $pattern = '/^(-?[A-Za-z_][A-Za-z_\-0-9]*)$/'; if (!preg_match($pattern, $string)) { return false; } return $string; } } // vim: et sw=4 sts=4