SILENT KILLERPanel

Current Path: > home > transcarter > > www > wp-content > plugins > wordfence > > vendor > > wordfence > mmdb-reader > > src


Operation   : Linux host59.registrar-servers.com 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64
Software     : Apache
Server IP    : 198.54.126.42 | Your IP: 216.73.216.135
Domains      : 1034 Domain(s)
Permission   : [ 0755 ]

Files and Folders in: /home/transcarter//www/wp-content/plugins/wordfence//vendor//wordfence/mmdb-reader//src

NameTypeSizeLast ModifiedActions
Exception Directory - -
Io Directory - -
ControlByte.php File 2556 bytes July 17 2025 21:05:48.
DataFieldParser.php File 5114 bytes July 17 2025 21:05:48.
Database.php File 6161 bytes July 17 2025 21:05:48.
DatabaseMetadata.php File 1911 bytes July 17 2025 21:05:48.
Endianness.php File 699 bytes July 17 2025 21:05:48.
IntegerParser.php File 265 bytes July 17 2025 21:05:48.
IpAddress.php File 2619 bytes July 17 2025 21:05:48.
IpAddressInterface.php File 497 bytes July 17 2025 21:05:48.
Node.php File 566 bytes July 17 2025 21:05:48.
NodeReader.php File 2092 bytes July 17 2025 21:05:48.
NodeRecord.php File 1251 bytes July 17 2025 21:05:48.

Reading File: /home/transcarter//www/wp-content/plugins/wordfence//vendor//wordfence/mmdb-reader//src/Node.php

<?php

namespace Wordfence\MmdbReader;

class Node {

	const SIDE_LEFT = 0;
	const SIDE_RIGHT = 1;

	private $reader;
	private $data;
	private $left, $right;

	public function __construct($reader, $data) {
		$this->reader = $reader;
		$this->data = $data;
	}

	public function getRecord($side) {
		$value = $this->reader->extractRecord($this->data, $side);
		return new NodeRecord($this->reader, $value);
	}

	public function getLeft() {
		return $this->getRecord(self::SIDE_LEFT);
	}

	public function getRight() {
		return $this->getRecord(self::SIDE_RIGHT);
	}

}

SILENT KILLER Tool