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 : 18.221.56.241 | Time @ Server : 19 Oct 2024 08:26:16
MySQL : OFF | MSSQL : OFF | cURL : ON | Oracle : OFF | wget : ON | Perl : ON

/home/webmaster/firofichi/www/vendor/magento/framework/Stdlib/Cookie/

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

File Path : /home/webmaster/firofichi/www/vendor/magento/framework/Stdlib/Cookie/PublicCookieMetadata.php

<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Framework\Stdlib\Cookie; /** * Class PublicCookieMetadata * * @api * @since 100.0.2 */ class PublicCookieMetadata extends CookieMetadata { /** * Set the number of seconds until the cookie expires * * The cookie duration can be translated into an expiration date at the time the cookie is sent. * * @param int $duration Time in seconds. * @return $this */ public function setDuration($duration) { return $this->set(self::KEY_DURATION, $duration); } /** * Set the cookie duration to one year * * @return $this */ public function setDurationOneYear() { return $this->setDuration(3600 * 24 * 365); } /** * Get the number of seconds until the cookie expires * * The cookie duration can be translated into an expiration date at the time the cookie is sent. * * @return int|null Time in seconds. */ public function getDuration() { return $this->get(self::KEY_DURATION); } /** * Set HTTPOnly flag * * @param bool $httpOnly * @return $this */ public function setHttpOnly($httpOnly) { return $this->set(self::KEY_HTTP_ONLY, $httpOnly); } /** * Set whether the cookie is only available under HTTPS * * @param bool $secure * @return $this */ public function setSecure($secure) { return $this->set(self::KEY_SECURE, $secure); } }