@@ -30,11 +30,11 @@ |
||
| 30 | 30 | </div> |
| 31 | 31 | <br /> |
| 32 | 32 | <div class="so-datatables"> |
| 33 | - <?php if (! empty($last_cached_time)) : ?> |
|
| 33 | + <?php if (!empty($last_cached_time)) : ?> |
|
| 34 | 34 | <?php _e('panel', 'log_label_cache_time', 'Report generated time'); ?>: <strong class="text-info"><?php echo $last_cached_time; ?></strong> |
| 35 | 35 | |
| 36 | 36 | <?php endif; ?> |
| 37 | - <?php if (! empty($ipStatus)) : ?> |
|
| 37 | + <?php if (!empty($ipStatus)) : ?> |
|
| 38 | 38 | <pre><?php echo nl2br($ipStatus); ?></pre> |
| 39 | 39 | <?php endif; ?> |
| 40 | 40 | </div> |
@@ -17,7 +17,7 @@ |
||
| 17 | 17 | var captchaCount = <?php echo ($period_data['captcha_count'] ?? 0); ?>; |
| 18 | 18 | |
| 19 | 19 | // Today |
| 20 | - <?php if (! empty($past_seven_hours)) : ?> |
|
| 20 | + <?php if (!empty($past_seven_hours)) : ?> |
|
| 21 | 21 | var pageviewChartString = [<?php echo ($past_seven_hours['pageview_chart_string'] ?? ''); ?>]; |
| 22 | 22 | var captchaChartString = [<?php echo ($past_seven_hours['captcha_chart_string'] ?? ''); ?>]; |
| 23 | 23 | var labelChartString = [<?php echo ($past_seven_hours['label_chart_string'] ?? ''); ?>]; |
@@ -45,7 +45,7 @@ |
||
| 45 | 45 | public function isDenied(): bool |
| 46 | 46 | { |
| 47 | 47 | if (!empty($this->deniedList)) { |
| 48 | - if (preg_match('/(' . implode('|', $this->deniedList). ')/i', $this->rdns)) { |
|
| 48 | + if (preg_match('/(' . implode('|', $this->deniedList) . ')/i', $this->rdns)) { |
|
| 49 | 49 | return true; |
| 50 | 50 | } |
| 51 | 51 | } |
@@ -49,19 +49,19 @@ discard block |
||
| 49 | 49 | $this->deniedList = [ |
| 50 | 50 | |
| 51 | 51 | // Backlink crawlers |
| 52 | - 'Ahrefs', // http://ahrefs.com/robot/ |
|
| 53 | - 'roger', // rogerbot (SEOMOZ) |
|
| 54 | - 'moz.com', // SEOMOZ crawlers |
|
| 55 | - 'MJ12bot', // Majestic crawlers |
|
| 56 | - 'findlinks', // http://wortschatz.uni-leipzig.de/findlinks |
|
| 57 | - 'Semrush', // http://www.semrush.com/bot.html |
|
| 52 | + 'Ahrefs', // http://ahrefs.com/robot/ |
|
| 53 | + 'roger', // rogerbot (SEOMOZ) |
|
| 54 | + 'moz.com', // SEOMOZ crawlers |
|
| 55 | + 'MJ12bot', // Majestic crawlers |
|
| 56 | + 'findlinks', // http://wortschatz.uni-leipzig.de/findlinks |
|
| 57 | + 'Semrush', // http://www.semrush.com/bot.html |
|
| 58 | 58 | |
| 59 | 59 | // Web information crawlers |
| 60 | - 'domain', // Domain name information crawlers. |
|
| 61 | - 'copyright', // Copyright information crawlers. |
|
| 60 | + 'domain', // Domain name information crawlers. |
|
| 61 | + 'copyright', // Copyright information crawlers. |
|
| 62 | 62 | |
| 63 | 63 | // Others |
| 64 | - 'archive', // Wayback machine |
|
| 64 | + 'archive', // Wayback machine |
|
| 65 | 65 | ]; |
| 66 | 66 | } |
| 67 | 67 | |
@@ -71,7 +71,7 @@ discard block |
||
| 71 | 71 | public function isDenied(): bool |
| 72 | 72 | { |
| 73 | 73 | if (!empty($this->deniedList)) { |
| 74 | - if (preg_match('/(' . implode('|', $this->deniedList). ')/i', $this->userAgent)) { |
|
| 74 | + if (preg_match('/(' . implode('|', $this->deniedList) . ')/i', $this->userAgent)) { |
|
| 75 | 75 | return true; |
| 76 | 76 | } |
| 77 | 77 | } |
@@ -40,19 +40,19 @@ discard block |
||
| 40 | 40 | protected $deniedList = [ |
| 41 | 41 | |
| 42 | 42 | // Backlink crawlers |
| 43 | - 'Ahrefs', // http://ahrefs.com/robot/ |
|
| 44 | - 'roger', // rogerbot (SEOMOZ) |
|
| 45 | - 'moz.com', // SEOMOZ crawlers |
|
| 46 | - 'MJ12bot', // Majestic crawlers |
|
| 47 | - 'findlinks', // http://wortschatz.uni-leipzig.de/findlinks |
|
| 48 | - 'Semrush', // http://www.semrush.com/bot.html |
|
| 43 | + 'Ahrefs', // http://ahrefs.com/robot/ |
|
| 44 | + 'roger', // rogerbot (SEOMOZ) |
|
| 45 | + 'moz.com', // SEOMOZ crawlers |
|
| 46 | + 'MJ12bot', // Majestic crawlers |
|
| 47 | + 'findlinks', // http://wortschatz.uni-leipzig.de/findlinks |
|
| 48 | + 'Semrush', // http://www.semrush.com/bot.html |
|
| 49 | 49 | |
| 50 | 50 | // Web information crawlers |
| 51 | - 'domain', // Domain name information crawlers. |
|
| 52 | - 'copyright', // Copyright information crawlers. |
|
| 51 | + 'domain', // Domain name information crawlers. |
|
| 52 | + 'copyright', // Copyright information crawlers. |
|
| 53 | 53 | |
| 54 | 54 | // Others |
| 55 | - 'archive', // Wayback machine |
|
| 55 | + 'archive', // Wayback machine |
|
| 56 | 56 | ]; |
| 57 | 57 | |
| 58 | 58 | /** |
@@ -65,7 +65,7 @@ discard block |
||
| 65 | 65 | public function __construct(array $deniedList = []) |
| 66 | 66 | { |
| 67 | 67 | if (!empty($deniedList)) { |
| 68 | - $this->deniedList =$deniedList; |
|
| 68 | + $this->deniedList = $deniedList; |
|
| 69 | 69 | } |
| 70 | 70 | } |
| 71 | 71 | |
@@ -86,7 +86,7 @@ discard block |
||
| 86 | 86 | } |
| 87 | 87 | |
| 88 | 88 | if (!empty($this->deniedList)) { |
| 89 | - if (preg_match('/(' . implode('|', $this->deniedList). ')/i', $userAgent)) { |
|
| 89 | + if (preg_match('/(' . implode('|', $this->deniedList) . ')/i', $userAgent)) { |
|
| 90 | 90 | return (new Response)->withStatus(self::HTTP_STATUS_CODE); |
| 91 | 91 | } |
| 92 | 92 | } |
@@ -51,7 +51,7 @@ |
||
| 51 | 51 | public function __construct(array $fieldList = []) |
| 52 | 52 | { |
| 53 | 53 | if (!empty($fieldList)) { |
| 54 | - $this->fieldList =$fieldList; |
|
| 54 | + $this->fieldList = $fieldList; |
|
| 55 | 55 | } |
| 56 | 56 | } |
| 57 | 57 | |
@@ -53,8 +53,8 @@ |
||
| 53 | 53 | |
| 54 | 54 | // Check if your IP is from localhost, perhaps your are in development environment? |
| 55 | 55 | if ( |
| 56 | - (substr($this->ip, 0 , 8) === '192.168.') || |
|
| 57 | - (substr($this->ip, 0 , 6) === '127.0.') |
|
| 56 | + (substr($this->ip, 0, 8) === '192.168.') || |
|
| 57 | + (substr($this->ip, 0, 6) === '127.0.') |
|
| 58 | 58 | ) { |
| 59 | 59 | $this->setRdns('localhost'); |
| 60 | 60 | } else { |
@@ -33,7 +33,7 @@ |
||
| 33 | 33 | */ |
| 34 | 34 | public function __construct(array &$data = []) |
| 35 | 35 | { |
| 36 | - $this->data =& $data; |
|
| 36 | + $this->data = & $data; |
|
| 37 | 37 | } |
| 38 | 38 | |
| 39 | 39 | /** |
@@ -89,13 +89,13 @@ discard block |
||
| 89 | 89 | |
| 90 | 90 | $this->deniedRegexList = [ |
| 91 | 91 | 'javascript\s*:', |
| 92 | - '\bon\w+=\S+(?=.*>)', // Inline JavaScript. |
|
| 92 | + '\bon\w+=\S+(?=.*>)', // Inline JavaScript. |
|
| 93 | 93 | '(document|(document\.)?window)\.(location|on\w*)', |
| 94 | 94 | 'expression\s*(\(|&\#40;)', // CSS and IE |
| 95 | - 'vbscript\s*:', // IE, surprise! |
|
| 96 | - 'wscript\s*:', // IE |
|
| 97 | - 'jscript\s*:', // IE |
|
| 98 | - 'vbs\s*:', // IE |
|
| 95 | + 'vbscript\s*:', // IE, surprise! |
|
| 96 | + 'wscript\s*:', // IE |
|
| 97 | + 'jscript\s*:', // IE |
|
| 98 | + 'vbs\s*:', // IE |
|
| 99 | 99 | 'Redirect\s+30\d:', |
| 100 | 100 | "([\"'])?data\s*:[^\\1]*?base64[^\\1]*?,[^\\1]*?\\1?", |
| 101 | 101 | ]; |
@@ -222,9 +222,9 @@ discard block |
||
| 222 | 222 | */ |
| 223 | 223 | $words = [ |
| 224 | 224 | 'javascript', 'expression', 'vbscript', 'jscript', 'wscript', |
| 225 | - 'vbs', 'script', 'base64', 'applet', 'alert', |
|
| 226 | - 'document', 'write', 'cookie', 'window', 'confirm', |
|
| 227 | - 'prompt', 'eval', |
|
| 225 | + 'vbs', 'script', 'base64', 'applet', 'alert', |
|
| 226 | + 'document', 'write', 'cookie', 'window', 'confirm', |
|
| 227 | + 'prompt', 'eval', |
|
| 228 | 228 | ]; |
| 229 | 229 | |
| 230 | 230 | foreach ($words as $word) { |
@@ -279,7 +279,7 @@ discard block |
||
| 279 | 279 | ); |
| 280 | 280 | } |
| 281 | 281 | |
| 282 | - } while($original !== $str); |
|
| 282 | + } while ($original !== $str); |
|
| 283 | 283 | |
| 284 | 284 | unset($original); |
| 285 | 285 | |
@@ -581,17 +581,17 @@ discard block |
||
| 581 | 581 | "'", '"', '&', '$', '#', |
| 582 | 582 | '{', '}', '[', ']', '=', |
| 583 | 583 | ';', '?', '%20', '%22', |
| 584 | - '%3c', // < |
|
| 585 | - '%253c', // < |
|
| 586 | - '%3e', // > |
|
| 587 | - '%0e', // > |
|
| 588 | - '%28', // ( |
|
| 589 | - '%29', // ) |
|
| 590 | - '%2528', // ( |
|
| 591 | - '%26', // & |
|
| 592 | - '%24', // $ |
|
| 593 | - '%3f', // ? |
|
| 594 | - '%3b', // ; |
|
| 584 | + '%3c', // < |
|
| 585 | + '%253c', // < |
|
| 586 | + '%3e', // > |
|
| 587 | + '%0e', // > |
|
| 588 | + '%28', // ( |
|
| 589 | + '%29', // ) |
|
| 590 | + '%2528', // ( |
|
| 591 | + '%26', // & |
|
| 592 | + '%24', // $ |
|
| 593 | + '%3f', // ? |
|
| 594 | + '%3b', // ; |
|
| 595 | 595 | '%3d' // = |
| 596 | 596 | ]; |
| 597 | 597 | |
@@ -637,19 +637,19 @@ discard block |
||
| 637 | 637 | protected function sanitizeNaughtyHtml(array $matches): string |
| 638 | 638 | { |
| 639 | 639 | static $naughtyTags = [ |
| 640 | - 'alert', 'prompt', 'confirm', 'applet', 'audio', |
|
| 641 | - 'basefont', 'base', 'behavior', 'bgsound', 'blink', |
|
| 642 | - 'body', 'embed', 'expression', 'form', 'frameset', |
|
| 643 | - 'frame', 'head', 'html', 'ilayer', 'iframe', |
|
| 644 | - 'input', 'button', 'select', 'isindex', 'layer', |
|
| 645 | - 'link', 'meta', 'keygen', 'object', 'plaintext', |
|
| 646 | - 'style', 'script', 'textarea', 'title', 'math', |
|
| 647 | - 'video', 'svg', 'xml', 'xss', |
|
| 640 | + 'alert', 'prompt', 'confirm', 'applet', 'audio', |
|
| 641 | + 'basefont', 'base', 'behavior', 'bgsound', 'blink', |
|
| 642 | + 'body', 'embed', 'expression', 'form', 'frameset', |
|
| 643 | + 'frame', 'head', 'html', 'ilayer', 'iframe', |
|
| 644 | + 'input', 'button', 'select', 'isindex', 'layer', |
|
| 645 | + 'link', 'meta', 'keygen', 'object', 'plaintext', |
|
| 646 | + 'style', 'script', 'textarea', 'title', 'math', |
|
| 647 | + 'video', 'svg', 'xml', 'xss', |
|
| 648 | 648 | ]; |
| 649 | 649 | |
| 650 | 650 | static $evilAttributes = [ |
| 651 | - 'on\w+', 'style', 'xmlns', 'seekSegmentTime', |
|
| 652 | - 'form', 'xlink:href', 'FSCommand', 'formaction', |
|
| 651 | + 'on\w+', 'style', 'xmlns', 'seekSegmentTime', |
|
| 652 | + 'form', 'xlink:href', 'FSCommand', 'formaction', |
|
| 653 | 653 | ]; |
| 654 | 654 | |
| 655 | 655 | // First, escape unclosed tags |
@@ -706,7 +706,7 @@ discard block |
||
| 706 | 706 | |
| 707 | 707 | $attributes = empty($attributes) |
| 708 | 708 | ? '' |
| 709 | - : ' '.implode(' ', $attributes); |
|
| 709 | + : ' ' . implode(' ', $attributes); |
|
| 710 | 710 | return '<' . $matches['slash'] . $matches['tagName'] . $attributes . '>'; |
| 711 | 711 | } |
| 712 | 712 | |