Kernel : Linux vmw02p.internet-indee.net 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Tue Nov 16 14:42:35 UTC 2021 x86_64
Disable function : NONE
Safe mode : OFF
Host : firofichi.it | Server ip : 5.196.164.15 | Your ip : 3.144.16.152 | Time @ Server : 19 Oct 2024 05:33:06
MySQL : OFF | MSSQL : OFF | cURL : ON | Oracle : OFF | wget : ON | Perl : ON

/home/webmaster/firofichi/www/vendor/magento/framework/Math/

HOME about upload exec mass file domain root vuln newfile newfolder kill me

File Path : /home/webmaster/firofichi/www/vendor/magento/framework/Math/Division.php

<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Framework\Math; /** * Division library * * @api * @since 100.0.2 */ class Division { /** * Const for correct dividing decimal values */ const DIVIDE_EPSILON = 10000; /** * Returns the floating point remainder (modulo) of the division of the arguments * * @param float|int $dividend * @param float|int $divisor * @return float|int */ public function getExactDivision($dividend, $divisor) { $epsilon = $divisor / self::DIVIDE_EPSILON; $remainder = fmod($dividend, $divisor); if (abs($remainder - $divisor) < $epsilon || abs($remainder) < $epsilon) { $remainder = 0; } return $remainder; } }