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 a ratio as defined by the CSS spec. */ class HTMLPurifier_AttrDef_CSS_Ratio extends HTMLPurifier_AttrDef { /** * @param string $ratio Ratio to validate * @param HTMLPurifier_Config $config Configuration options * @param HTMLPurifier_Context $context Context * * @return string|boolean * * @warning Some contexts do not pass $config, $context. These * variables should not be used without checking HTMLPurifier_Length */ public function validate($ratio, $config, $context) { $ratio = $this->parseCDATA($ratio); $parts = explode('/', $ratio, 2); $length = count($parts); if ($length < 1 || $length > 2) { return false; } $num = new \HTMLPurifier_AttrDef_CSS_Number(); if ($length === 1) { return $num->validate($parts[0], $config, $context); } $num1 = $num->validate($parts[0], $config, $context); $num2 = $num->validate($parts[1], $config, $context); if ($num1 === false || $num2 === false) { return false; } return $num1 . '/' . $num2; } } // vim: et sw=4 sts=4
<=Back
Liking