nopasaran 0.2.105__tar.gz → 0.2.106__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {nopasaran-0.2.105 → nopasaran-0.2.106}/PKG-INFO +1 -1
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/tools/tcp_dns_socket_server.py +1 -1
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/tools/udp_dns_socket_server.py +1 -1
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran.egg-info/PKG-INFO +1 -1
- {nopasaran-0.2.105 → nopasaran-0.2.106}/setup.py +1 -1
- {nopasaran-0.2.105 → nopasaran-0.2.106}/LICENSE +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/README.md +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/__init__.py +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/__main__.py +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/controllers/__init__.py +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/controllers/controller.py +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/controllers/factory.py +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/controllers/protocol.py +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/decorators.py +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/definitions/__init__.py +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/definitions/commands.py +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/definitions/control_channel.py +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/definitions/events.py +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/definitions/transitions.py +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/errors/__init__.py +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/errors/parsing_error.py +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/http_2_utils.py +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/interpreters/__init__.py +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/interpreters/action_interpreter.py +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/interpreters/condition_interpreter.py +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/interpreters/interpreter.py +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/interpreters/transition_interpreter.py +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/machines/__init__.py +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/machines/action_queue.py +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/machines/state_machine.py +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/parsers/__init__.py +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/parsers/interpreter_parser.py +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/parsers/state_machine_parser.py +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/primitives/__init__.py +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/primitives/action_primitives/__init__.py +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/primitives/action_primitives/action_primitives.py +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/primitives/action_primitives/certificate_primitives.py +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/primitives/action_primitives/client_echo_primitives.py +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/primitives/action_primitives/control_channel_primitives.py +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/primitives/action_primitives/data_channel_primitives.py +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/primitives/action_primitives/data_manipulation.py +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/primitives/action_primitives/dns_primitives.py +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/primitives/action_primitives/event_primitives.py +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/primitives/action_primitives/http_1_request_primitives.py +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/primitives/action_primitives/http_1_response_primitives.py +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/primitives/action_primitives/http_2_client_primitives.py +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/primitives/action_primitives/http_2_server_primitives.py +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/primitives/action_primitives/http_simple_client_primitives.py +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/primitives/action_primitives/https_1_request_primitives.py +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/primitives/action_primitives/https_1_response_primitives.py +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/primitives/action_primitives/icmp_primitives.py +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/primitives/action_primitives/io_primitives.py +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/primitives/action_primitives/ip_primitives.py +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/primitives/action_primitives/nested_machine_utils.py +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/primitives/action_primitives/probing_primitives.py +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/primitives/action_primitives/replay_primitives.py +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/primitives/action_primitives/server_echo_primitives.py +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/primitives/action_primitives/signaling_primitive.py +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/primitives/action_primitives/tcp_dns_request_primitives.py +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/primitives/action_primitives/tcp_dns_response_primitives.py +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/primitives/action_primitives/tcp_primitives.py +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/primitives/action_primitives/timing_primitives.py +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/primitives/action_primitives/tls_primitives.py +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/primitives/action_primitives/udp_dns_request_primitives.py +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/primitives/action_primitives/udp_dns_response_primitives.py +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/primitives/action_primitives/udp_primitives.py +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/primitives/condition_primitives/__init__.py +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/primitives/condition_primitives/condition_primitives.py +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/primitives/condition_primitives/variable_comparisons.py +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/primitives/primitives.py +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/primitives/transition_primitives/__init__.py +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/primitives/transition_primitives/assignment_transitions.py +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/primitives/transition_primitives/transition_primitives.py +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/sniffers/__init__.py +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/sniffers/sniffer.py +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/tools/__init__.py +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/tools/checks.py +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/tools/echo_socket_server.py +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/tools/http_1_socket_server.py +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/tools/http_2_overwrite.py +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/tools/http_2_socket_base.py +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/tools/http_2_socket_client.py +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/tools/http_2_socket_server.py +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/tools/https_1_socket_server.py +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/utils.py +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran.egg-info/SOURCES.txt +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran.egg-info/dependency_links.txt +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran.egg-info/entry_points.txt +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran.egg-info/requires.txt +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran.egg-info/top_level.txt +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/setup.cfg +0 -0
- {nopasaran-0.2.105 → nopasaran-0.2.106}/tests/__init__.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: nopasaran
|
3
|
-
Version: 0.2.
|
3
|
+
Version: 0.2.106
|
4
4
|
Summary: NoPASARAN is an advanced network tool designed to detect, fingerprint, and locate network middleboxes in a unified framework.
|
5
5
|
Home-page: https://github.com/BenIlies/NoPASARAN
|
6
6
|
Author: Ilies Benhabbour
|
@@ -126,7 +126,7 @@ class TCPDNSSocketServer:
|
|
126
126
|
|
127
127
|
try:
|
128
128
|
# Get the numeric type directly from the string using QTYPE
|
129
|
-
rtype = QTYPE
|
129
|
+
rtype = QTYPE.reverse.get(response_type)
|
130
130
|
if rtype is None:
|
131
131
|
logging.warning(f"Unsupported response_type: {response_type}")
|
132
132
|
return query_record.reply()
|
@@ -78,7 +78,7 @@ class UDPDNSSocketServer:
|
|
78
78
|
|
79
79
|
try:
|
80
80
|
# Get the numeric type directly from the string using QTYPE
|
81
|
-
rtype = QTYPE
|
81
|
+
rtype = QTYPE.reverse.get(response_type)
|
82
82
|
if rtype is None:
|
83
83
|
logging.warning(f"Unsupported response_type: {response_type}")
|
84
84
|
return query_record.reply()
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: nopasaran
|
3
|
-
Version: 0.2.
|
3
|
+
Version: 0.2.106
|
4
4
|
Summary: NoPASARAN is an advanced network tool designed to detect, fingerprint, and locate network middleboxes in a unified framework.
|
5
5
|
Home-page: https://github.com/BenIlies/NoPASARAN
|
6
6
|
Author: Ilies Benhabbour
|
@@ -13,7 +13,7 @@ with open(requirements_file, "r") as f:
|
|
13
13
|
# Version will automatically be updated when pushed on the main branch
|
14
14
|
setup(
|
15
15
|
name="nopasaran",
|
16
|
-
version='0.2.
|
16
|
+
version='0.2.106',
|
17
17
|
author="Ilies Benhabbour",
|
18
18
|
author_email="ilies.benhabbour@kaust.edu.sa",
|
19
19
|
description="NoPASARAN is an advanced network tool designed to detect, fingerprint, and locate network middleboxes in a unified framework.",
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/primitives/action_primitives/action_primitives.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/primitives/action_primitives/data_manipulation.py
RENAMED
File without changes
|
{nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/primitives/action_primitives/dns_primitives.py
RENAMED
File without changes
|
{nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/primitives/action_primitives/event_primitives.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/primitives/action_primitives/icmp_primitives.py
RENAMED
File without changes
|
{nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/primitives/action_primitives/io_primitives.py
RENAMED
File without changes
|
{nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/primitives/action_primitives/ip_primitives.py
RENAMED
File without changes
|
File without changes
|
{nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/primitives/action_primitives/probing_primitives.py
RENAMED
File without changes
|
{nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/primitives/action_primitives/replay_primitives.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/primitives/action_primitives/tcp_primitives.py
RENAMED
File without changes
|
{nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/primitives/action_primitives/timing_primitives.py
RENAMED
File without changes
|
{nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/primitives/action_primitives/tls_primitives.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
{nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/primitives/action_primitives/udp_primitives.py
RENAMED
File without changes
|
{nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/primitives/condition_primitives/__init__.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{nopasaran-0.2.105 → nopasaran-0.2.106}/nopasaran/primitives/transition_primitives/__init__.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|