firegex 3.4.8__tar.gz → 3.4.10__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.
- {firegex-3.4.8/firegex.egg-info → firegex-3.4.10}/PKG-INFO +1 -2
- firegex-3.4.10/firegex/__init__.py +5 -0
- {firegex-3.4.8 → firegex-3.4.10}/firegex/nfproxy/models/http.py +2 -2
- {firegex-3.4.8 → firegex-3.4.10/firegex.egg-info}/PKG-INFO +1 -2
- {firegex-3.4.8 → firegex-3.4.10}/firegex.egg-info/requires.txt +0 -1
- {firegex-3.4.8 → firegex-3.4.10}/requirements.txt +0 -1
- {firegex-3.4.8 → firegex-3.4.10}/setup.py +1 -1
- firegex-3.4.8/firegex/__init__.py +0 -5
- {firegex-3.4.8 → firegex-3.4.10}/MANIFEST.in +0 -0
- {firegex-3.4.8 → firegex-3.4.10}/README.md +0 -0
- {firegex-3.4.8 → firegex-3.4.10}/fgex +0 -0
- {firegex-3.4.8 → firegex-3.4.10}/firegex/__main__.py +0 -0
- {firegex-3.4.8 → firegex-3.4.10}/firegex/cli.py +0 -0
- {firegex-3.4.8 → firegex-3.4.10}/firegex/nfproxy/__init__.py +0 -0
- {firegex-3.4.8 → firegex-3.4.10}/firegex/nfproxy/internals/__init__.py +0 -0
- {firegex-3.4.8 → firegex-3.4.10}/firegex/nfproxy/internals/data.py +0 -0
- {firegex-3.4.8 → firegex-3.4.10}/firegex/nfproxy/internals/exceptions.py +0 -0
- {firegex-3.4.8 → firegex-3.4.10}/firegex/nfproxy/internals/models.py +0 -0
- {firegex-3.4.8 → firegex-3.4.10}/firegex/nfproxy/models/__init__.py +0 -0
- {firegex-3.4.8 → firegex-3.4.10}/firegex/nfproxy/models/tcp.py +0 -0
- {firegex-3.4.8 → firegex-3.4.10}/firegex/nfproxy/proxysim/__init__.py +0 -0
- {firegex-3.4.8 → firegex-3.4.10}/firegex.egg-info/SOURCES.txt +0 -0
- {firegex-3.4.8 → firegex-3.4.10}/firegex.egg-info/dependency_links.txt +0 -0
- {firegex-3.4.8 → firegex-3.4.10}/firegex.egg-info/top_level.txt +0 -0
- {firegex-3.4.8 → firegex-3.4.10}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: firegex
|
|
3
|
-
Version: 3.4.
|
|
3
|
+
Version: 3.4.10
|
|
4
4
|
Summary: Firegex client
|
|
5
5
|
Home-page: https://github.com/pwnzer0tt1/firegex
|
|
6
6
|
Author: Pwnzer0tt1
|
|
@@ -14,7 +14,6 @@ Requires-Dist: typer
|
|
|
14
14
|
Requires-Dist: pydantic>=2
|
|
15
15
|
Requires-Dist: typing-extensions>=4.7.1
|
|
16
16
|
Requires-Dist: pycryptodome
|
|
17
|
-
Requires-Dist: zstd
|
|
18
17
|
Requires-Dist: watchfiles
|
|
19
18
|
Requires-Dist: fgex
|
|
20
19
|
Requires-Dist: websockets
|
|
@@ -10,7 +10,7 @@ from firegex.nfproxy.internals.exceptions import (
|
|
|
10
10
|
from firegex.nfproxy.internals.models import FullStreamAction, ExceptionAction
|
|
11
11
|
from dataclasses import dataclass, field
|
|
12
12
|
from collections import deque
|
|
13
|
-
from
|
|
13
|
+
from compression import zstd
|
|
14
14
|
import gzip
|
|
15
15
|
import io
|
|
16
16
|
import zlib
|
|
@@ -200,7 +200,7 @@ class InternalCallbackHandler:
|
|
|
200
200
|
break
|
|
201
201
|
elif enc == "zstd":
|
|
202
202
|
try:
|
|
203
|
-
decoding_body =
|
|
203
|
+
decoding_body = zstd.decompress(decoding_body)
|
|
204
204
|
except Exception as e:
|
|
205
205
|
print(f"Error decompressing zstd: {e}: skipping", flush=True)
|
|
206
206
|
decode_success = False
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: firegex
|
|
3
|
-
Version: 3.4.
|
|
3
|
+
Version: 3.4.10
|
|
4
4
|
Summary: Firegex client
|
|
5
5
|
Home-page: https://github.com/pwnzer0tt1/firegex
|
|
6
6
|
Author: Pwnzer0tt1
|
|
@@ -14,7 +14,6 @@ Requires-Dist: typer
|
|
|
14
14
|
Requires-Dist: pydantic>=2
|
|
15
15
|
Requires-Dist: typing-extensions>=4.7.1
|
|
16
16
|
Requires-Dist: pycryptodome
|
|
17
|
-
Requires-Dist: zstd
|
|
18
17
|
Requires-Dist: watchfiles
|
|
19
18
|
Requires-Dist: fgex
|
|
20
19
|
Requires-Dist: websockets
|
|
@@ -6,7 +6,7 @@ with open("README.md", "r", encoding="utf-8") as fh:
|
|
|
6
6
|
with open('requirements.txt', 'r', encoding='utf-8') as f:
|
|
7
7
|
required = [ele.strip() for ele in f.read().splitlines() if not ele.strip().startswith("#") and ele.strip() != ""]
|
|
8
8
|
|
|
9
|
-
VERSION = "3.4.
|
|
9
|
+
VERSION = "3.4.10"
|
|
10
10
|
|
|
11
11
|
setuptools.setup(
|
|
12
12
|
name="firegex",
|
|
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
|