Linux webserver 6.8.0-49-generic #49~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Wed Nov 6 17:42:15 UTC 2 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.1.1 & Your IP : 18.117.73.33
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
python3 /
dist-packages /
jeepney /
tests /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2024-02-16 18:45
__init__.py
0
B
-rw-r--r--
2017-02-25 18:45
secrets_introspect.xml
4.47
KB
-rw-r--r--
2017-05-29 13:15
test_auth.py
611
B
-rw-r--r--
2021-07-10 15:19
test_bindgen.py
1.07
KB
-rw-r--r--
2017-05-29 13:25
test_bus.py
847
B
-rw-r--r--
2017-02-26 16:47
test_bus_messages.py
3.15
KB
-rw-r--r--
2021-07-10 15:19
test_fds.py
1.78
KB
-rw-r--r--
2021-07-10 15:19
test_low_level.py
2.49
KB
-rw-r--r--
2018-09-11 19:07
test_routing.py
959
B
-rw-r--r--
2017-05-29 11:45
Save
Rename
import pytest from jeepney import auth def test_make_auth_external(): b = auth.make_auth_external() assert b.startswith(b'AUTH EXTERNAL') def test_make_auth_anonymous(): b = auth.make_auth_anonymous() assert b.startswith(b'AUTH ANONYMOUS') def test_parser(): p = auth.SASLParser() p.feed(b'OK 728d62bc2eb394') assert not p.authenticated p.feed(b'1ebbb0b42958b1e0d6\r\n') assert p.authenticated def test_parser_rejected(): p = auth.SASLParser() with pytest.raises(auth.AuthenticationError): p.feed(b'REJECTED EXTERNAL\r\n') assert not p.authenticated