aiwaf 0.1.5__tar.gz → 0.1.6__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.
Potentially problematic release.
This version of aiwaf might be problematic. Click here for more details.
- {aiwaf-0.1.5 → aiwaf-0.1.6}/PKG-INFO +2 -3
- {aiwaf-0.1.5 → aiwaf-0.1.6}/README.md +1 -2
- {aiwaf-0.1.5 → aiwaf-0.1.6}/aiwaf.egg-info/PKG-INFO +2 -3
- {aiwaf-0.1.5 → aiwaf-0.1.6}/pyproject.toml +2 -2
- {aiwaf-0.1.5 → aiwaf-0.1.6}/setup.py +1 -1
- {aiwaf-0.1.5 → aiwaf-0.1.6}/LICENSE +0 -0
- {aiwaf-0.1.5 → aiwaf-0.1.6}/aiwaf/__init__.py +0 -0
- {aiwaf-0.1.5 → aiwaf-0.1.6}/aiwaf/apps.py +0 -0
- {aiwaf-0.1.5 → aiwaf-0.1.6}/aiwaf/blacklist_manager.py +0 -0
- {aiwaf-0.1.5 → aiwaf-0.1.6}/aiwaf/management/__init__.py +0 -0
- {aiwaf-0.1.5 → aiwaf-0.1.6}/aiwaf/management/commands/__init__.py +0 -0
- {aiwaf-0.1.5 → aiwaf-0.1.6}/aiwaf/management/commands/detect_and_train.py +0 -0
- {aiwaf-0.1.5 → aiwaf-0.1.6}/aiwaf/middleware.py +0 -0
- {aiwaf-0.1.5 → aiwaf-0.1.6}/aiwaf/models.py +0 -0
- {aiwaf-0.1.5 → aiwaf-0.1.6}/aiwaf/resources/model.pkl +0 -0
- {aiwaf-0.1.5 → aiwaf-0.1.6}/aiwaf/storage.py +0 -0
- {aiwaf-0.1.5 → aiwaf-0.1.6}/aiwaf/template_tags/__init__.py +0 -0
- {aiwaf-0.1.5 → aiwaf-0.1.6}/aiwaf/template_tags/aiwaf_tags.py +0 -0
- {aiwaf-0.1.5 → aiwaf-0.1.6}/aiwaf/trainer.py +0 -0
- {aiwaf-0.1.5 → aiwaf-0.1.6}/aiwaf/utils.py +0 -0
- {aiwaf-0.1.5 → aiwaf-0.1.6}/aiwaf.egg-info/SOURCES.txt +0 -0
- {aiwaf-0.1.5 → aiwaf-0.1.6}/aiwaf.egg-info/dependency_links.txt +0 -0
- {aiwaf-0.1.5 → aiwaf-0.1.6}/aiwaf.egg-info/top_level.txt +0 -0
- {aiwaf-0.1.5 → aiwaf-0.1.6}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: aiwaf
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.6
|
|
4
4
|
Summary: AI-powered Web Application Firewall
|
|
5
5
|
Home-page: https://github.com/aayushgauba/aiwaf
|
|
6
6
|
Author: Aayush Gauba
|
|
@@ -128,7 +128,7 @@ Add in **this** order to your `MIDDLEWARE` list:
|
|
|
128
128
|
|
|
129
129
|
```python
|
|
130
130
|
MIDDLEWARE = [
|
|
131
|
-
"aiwaf.middleware.
|
|
131
|
+
"aiwaf.middleware.IPAndKeywordBlockMiddleware",
|
|
132
132
|
"aiwaf.middleware.RateLimitMiddleware",
|
|
133
133
|
"aiwaf.middleware.AIAnomalyMiddleware",
|
|
134
134
|
"aiwaf.middleware.HoneypotMiddleware",
|
|
@@ -180,7 +180,6 @@ python manage.py detect_and_train
|
|
|
180
180
|
| AIAnomalyMiddleware | ML‑driven behavior analysis + block on anomaly |
|
|
181
181
|
| HoneypotMiddleware | Detects bots filling hidden inputs in forms |
|
|
182
182
|
| UUIDTamperMiddleware | Blocks guessed/nonexistent UUIDs across all models in an app |
|
|
183
|
-
|
|
184
183
|
---
|
|
185
184
|
|
|
186
185
|
## License
|
|
@@ -112,7 +112,7 @@ Add in **this** order to your `MIDDLEWARE` list:
|
|
|
112
112
|
|
|
113
113
|
```python
|
|
114
114
|
MIDDLEWARE = [
|
|
115
|
-
"aiwaf.middleware.
|
|
115
|
+
"aiwaf.middleware.IPAndKeywordBlockMiddleware",
|
|
116
116
|
"aiwaf.middleware.RateLimitMiddleware",
|
|
117
117
|
"aiwaf.middleware.AIAnomalyMiddleware",
|
|
118
118
|
"aiwaf.middleware.HoneypotMiddleware",
|
|
@@ -164,7 +164,6 @@ python manage.py detect_and_train
|
|
|
164
164
|
| AIAnomalyMiddleware | ML‑driven behavior analysis + block on anomaly |
|
|
165
165
|
| HoneypotMiddleware | Detects bots filling hidden inputs in forms |
|
|
166
166
|
| UUIDTamperMiddleware | Blocks guessed/nonexistent UUIDs across all models in an app |
|
|
167
|
-
|
|
168
167
|
---
|
|
169
168
|
|
|
170
169
|
## License
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: aiwaf
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.6
|
|
4
4
|
Summary: AI-powered Web Application Firewall
|
|
5
5
|
Home-page: https://github.com/aayushgauba/aiwaf
|
|
6
6
|
Author: Aayush Gauba
|
|
@@ -128,7 +128,7 @@ Add in **this** order to your `MIDDLEWARE` list:
|
|
|
128
128
|
|
|
129
129
|
```python
|
|
130
130
|
MIDDLEWARE = [
|
|
131
|
-
"aiwaf.middleware.
|
|
131
|
+
"aiwaf.middleware.IPAndKeywordBlockMiddleware",
|
|
132
132
|
"aiwaf.middleware.RateLimitMiddleware",
|
|
133
133
|
"aiwaf.middleware.AIAnomalyMiddleware",
|
|
134
134
|
"aiwaf.middleware.HoneypotMiddleware",
|
|
@@ -180,7 +180,6 @@ python manage.py detect_and_train
|
|
|
180
180
|
| AIAnomalyMiddleware | ML‑driven behavior analysis + block on anomaly |
|
|
181
181
|
| HoneypotMiddleware | Detects bots filling hidden inputs in forms |
|
|
182
182
|
| UUIDTamperMiddleware | Blocks guessed/nonexistent UUIDs across all models in an app |
|
|
183
|
-
|
|
184
183
|
---
|
|
185
184
|
|
|
186
185
|
## License
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "aiwaf"
|
|
3
|
-
version = "0.1.
|
|
3
|
+
version = "0.1.6"
|
|
4
4
|
description = "AI-powered Web Application Firewall"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
requires-python = ">=3.8"
|
|
7
7
|
license = {text = "MIT"}
|
|
8
8
|
authors = [{ name = "Aayush Gauba", email = "gauba.aayush@gmail.com" }]
|
|
9
|
-
dependencies = [ ]
|
|
9
|
+
dependencies = [ ]
|
|
@@ -9,7 +9,7 @@ long_description = (HERE / "README.md").read_text(encoding="utf-8")
|
|
|
9
9
|
|
|
10
10
|
setup(
|
|
11
11
|
name="aiwaf",
|
|
12
|
-
version="0.1.
|
|
12
|
+
version="0.1.6",
|
|
13
13
|
description="AI‑driven, self‑learning Web Application Firewall for Django",
|
|
14
14
|
long_description=long_description,
|
|
15
15
|
long_description_content_type="text/markdown",
|
|
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
|