!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/usr/lib/python3/dist-packages/macaroonbakery/tests/   drwxr-xr-x
Free 13.25 GB of 57.97 GB (22.86%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     test_httpbakery.py (1.26 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
from unittest import TestCase

import macaroonbakery.httpbakery as httpbakery
import macaroonbakery.bakery as bakery


class TestWebBrowserInteractionInfo(TestCase):

    def test_from_dict(self):
        info_dict = {
            'VisitURL': 'https://example.com/visit',
            'WaitTokenURL': 'https://example.com/wait'}
        interaction_info = httpbakery.WebBrowserInteractionInfo.from_dict(info_dict)
        self.assertEqual(
            interaction_info.visit_url, 'https://example.com/visit')
        self.assertEqual(
            interaction_info.wait_token_url, 'https://example.com/wait')


class TestError(TestCase):

    def test_from_dict_upper_case_fields(self):
        err = httpbakery.Error.from_dict({
            'Message': 'm',
            'Code': 'c',
        })
        self.assertEqual(err, httpbakery.Error(
            code='c',
            message='m',
            info=None,
            version=bakery.LATEST_VERSION,
        ))

    def test_from_dict_lower_case_fields(self):
        err = httpbakery.Error.from_dict({
            'message': 'm',
            'code': 'c',
        })
        self.assertEqual(err, httpbakery.Error(
            code='c',
            message='m',
            info=None,
            version=bakery.LATEST_VERSION,
        ))

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0237 ]--