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 03:00:00
MySQL : OFF | MSSQL : OFF | cURL : ON | Oracle : OFF | wget : ON | Perl : ON

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

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

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

<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Framework\Oauth; /** * TokenProviderInterface provides token manipulation, such as creating a request token and getting an access token * as well as methods for performing certain validations on tokens and token requests. Consumer methods are also * provided to help clients manipulating tokens validate and acquire the associated token consumer. * * @api * @since 100.0.2 */ interface TokenProviderInterface { /** * Validate the consumer. * * @param ConsumerInterface $consumer The consumer. * @return bool True if the consumer is valid. * @throws \Magento\Framework\Oauth\Exception Validation errors. */ public function validateConsumer($consumer); /** * Create a request token for the specified consumer. * Example: * <pre> * array( * 'oauth_token' => 'gshsjkndtyhwjhdbutfgbsnhtrequikf, * 'oauth_token_secret' => 'gshsjkndtyhwjhdbutfgbsnhtrequikf' * ) * </pre> * * @param ConsumerInterface $consumer * @return array The request token and secret. * @throws \Magento\Framework\Oauth\Exception Validation errors. */ public function createRequestToken($consumer); /** * Validates the request token and verifier. Verifies the request token is associated with the consumer. * * @param string $requestToken The 'oauth_token' request token value. * @param ConsumerInterface $consumer The consumer given the 'oauth_consumer_key'. * @param string $oauthVerifier The 'oauth_verifier' value. * @return string The request token secret (i.e. 'oauth_token_secret'). * @throws \Magento\Framework\Oauth\Exception Validation errors. */ public function validateRequestToken($requestToken, $consumer, $oauthVerifier); /** * Retrieve access token for the specified consumer given the consumer key. * Example: * <pre> * array( * 'oauth_token' => 'gshsjkndtyhwjhdbutfgbsnhtrequikf, * 'oauth_token_secret' => 'gshsjkndtyhwjhdbutfgbsnhtrequikf' * ) * </pre> * * @param ConsumerInterface $consumer The consumer given the 'oauth_consumer_key'. * @return array The access token and secret. * @throws \Magento\Framework\Oauth\Exception Validation errors. */ public function getAccessToken($consumer); /** * Validates the Oauth token type and verifies that it's associated with the consumer. * * @param string $accessToken The 'oauth_token' access token value. * @param ConsumerInterface $consumer The consumer given the 'oauth_consumer_key'. * @return string The access token secret. * @throws \Magento\Framework\Oauth\Exception Validation errors. */ public function validateAccessTokenRequest($accessToken, $consumer); /** * Validate an access token string. * * @param string $accessToken The 'oauth_token' access token string. * @return int Consumer ID if the access token is valid. * @throws \Magento\Framework\Oauth\Exception Validation errors. */ public function validateAccessToken($accessToken); /** * Perform basic validation of an Oauth token, of any type (e.g. request, access, etc.). * * @param string $oauthToken The token string. * @return bool True if the Oauth token passes basic validation. */ public function validateOauthToken($oauthToken); /** * Retrieve a consumer given the consumer's key. * * @param string $consumerKey The 'oauth_consumer_key' value. * @return ConsumerInterface * @throws \Magento\Framework\Oauth\Exception */ public function getConsumerByKey($consumerKey); }