HEX
Server: LiteSpeed
System: Linux srv158.niagahoster.com 4.18.0-553.30.1.lve.el8.x86_64 #1 SMP Tue Dec 3 01:21:19 UTC 2024 x86_64
User: u1694298 (3732)
PHP: 7.4.33
Disabled: symlink,shell_exec,exec,popen,system,dl,passthru,escapeshellarg,escapeshellcmd,show_source,pcntl_exec
Upload Files
File: /home/u1694298/www/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/IntegerParser.php
<?php

namespace Wordfence\MmdbReader;

class IntegerParser {

	public static function parseUnsigned($handle, $length) {
		$value = 0;
		for ($i = 0; $i < $length; $i++) {
			$byte = $handle->readByte();
			$value = ($value << 8) + $byte;
		}
		return $value;
	}

}