uawdijnntqw1x1x1
IP : 216.73.216.177
Hostname : xhost1.intravision.ru
Kernel : Linux xhost1.intravision.ru 3.16.0-7-amd64 #1 SMP Debian 3.16.59-1 (2018-10-03) x86_64
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,
OS : Linux
PATH:
/
var
/
www
/
tiskom
/
data
/
www
/
tiskom.xhost.intravision.ru
/
bitrix
/
modules
/
main
/
classes
/
general
/
.
/
asn.php
/
/
<? class CASNReader { protected $value; public function __construct($value='') { $this->value = $value; } public function Read(&$buf) { self::ReadByte($buf); $size = self::ReadByte($buf); if($size > 127) { $sizeLen = $size - 0x80; $size = self::ToInt(self::ReadBytes($buf, $sizeLen)); } $this->value = self::ReadBytes($buf, $size); } protected static function ReadBytes(&$buf, $len) { $res = substr($buf, 0, $len); $buf = substr($buf, $len); return $res; } protected static function ReadByte(&$buf) { return ord(self::ReadBytes($buf, 1)); } protected static function ToInt($bin) { $result = 0; $len = strlen($bin); for($i=0; $i<$len; $i++) { $byte = self::ReadByte($bin); $result += $byte << (($len-$i-1)*8); } return $result; } public function GetValue() { $result = $this->value; if(ord($result[0]) == 0x00) $result = substr($result, 1); return $result; } public function GetSequence() { $arResult = array(); $val = $this->value; while($val <> '') { $sequence = new CASNReader(); $sequence->Read($val); $arResult[] = $sequence; } return $arResult; } } ?>
/var/www/tiskom/data/www/tiskom.xhost.intravision.ru/bitrix/modules/main/classes/general/./asn.php