GuardianUnivalle-Benito-Yucra 0.1.21__py3-none-any.whl → 0.1.22__py3-none-any.whl

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 GuardianUnivalle-Benito-Yucra might be problematic. Click here for more details.

@@ -59,6 +59,36 @@ def get_client_ip(request):
59
59
 
60
60
 
61
61
  class SQLIDefenseMiddleware(MiddlewareMixin):
62
+ def process_request(self, request):
63
+ # Excluir paths
64
+ exempt_paths = getattr(settings, "SQLI_DEFENSE_EXEMPT_PATHS", [])
65
+ if any(request.path.startswith(p) for p in exempt_paths):
66
+ return None
67
+
68
+ client_ip = get_client_ip(request)
69
+ trusted_ips = getattr(settings, "SQLI_DEFENSE_TRUSTED_IPS", [])
70
+ if client_ip in trusted_ips:
71
+ return None
72
+
73
+ text = extract_payload_text(request)
74
+ if not text:
75
+ return None
76
+
77
+ flagged, descripcion = detect_sql_attack(text)
78
+ if flagged:
79
+ request.sql_attack_info = {
80
+ "ip": client_ip,
81
+ "tipos": ["SQL"],
82
+ "descripcion": descripcion,
83
+ "payload": text,
84
+ }
85
+ logger.warning(
86
+ f"Ataque SQL detectado desde IP {client_ip}: {descripcion}, payload: {text}"
87
+ )
88
+ return None
89
+
90
+
91
+ """ class SQLIDefenseMiddleware(MiddlewareMixin):
62
92
  def process_request(self, request):
63
93
  client_ip = get_client_ip(request)
64
94
  trusted_ips = getattr(settings, "SQLI_DEFENSE_TRUSTED_IPS", [])
@@ -88,4 +118,4 @@ class SQLIDefenseMiddleware(MiddlewareMixin):
88
118
  f"Ataque SQL detectado desde IP {client_ip}: {descripcion}, payload: {text}"
89
119
  )
90
120
  # No devolvemos JsonResponse, solo marcamos el ataque
91
- return None
121
+ return None """
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: GuardianUnivalle-Benito-Yucra
3
- Version: 0.1.21
3
+ Version: 0.1.22
4
4
  Summary: Middleware y detectores de seguridad (SQLi, XSS, CSRF, DoS, Keylogger) para Django/Flask
5
5
  Author-email: Andres Benito Calle Yucra <benitoandrescalle035@gmail.com>
6
6
  License: MIT
@@ -7,14 +7,14 @@ GuardianUnivalle_Benito_Yucra/criptografia/kdf.py,sha256=_sbepEY1qHEKga0ExrX2WRg
7
7
  GuardianUnivalle_Benito_Yucra/detectores/detector_csrf.py,sha256=EAYfLkHuxGC5rXSu4mZJ4yZDCbwBpTX8xZWGKz7i5wA,692
8
8
  GuardianUnivalle_Benito_Yucra/detectores/detector_dos.py,sha256=lMWmCw6nccCEnek53nVjpoBCeiBqLdrSXxqRuI7VP2I,696
9
9
  GuardianUnivalle_Benito_Yucra/detectores/detector_keylogger.py,sha256=rEDG-Q_R56OsG2ypfHVBK7erolYjdvATnAxB3yvPXts,729
10
- GuardianUnivalle_Benito_Yucra/detectores/detector_sql.py,sha256=mLLs6FRObxwntu6tpIV8zc8IIKnUJrjf-TlPFDvLkB4,3206
10
+ GuardianUnivalle_Benito_Yucra/detectores/detector_sql.py,sha256=v1Z82Bzyhg7PNFzUOJDuufJUC0KvZ4b9DZTW4qajz00,4217
11
11
  GuardianUnivalle_Benito_Yucra/detectores/detector_xss.py,sha256=66V_xuxNOZEwluvWOT4-6pk5MJ3zWE1IwcVkBl7MZSg,719
12
12
  GuardianUnivalle_Benito_Yucra/middleware_web/middleware_web.py,sha256=23pLLYqliUoMrIC6ZEwz3hKXeDjWfHSm9vYPWGmDDik,495
13
13
  GuardianUnivalle_Benito_Yucra/mitigacion/limitador_peticion.py,sha256=ipMOebYhql-6mSyHs0ddYXOcXq9w8P_IXLlpiIqGncw,246
14
14
  GuardianUnivalle_Benito_Yucra/mitigacion/lista_bloqueo.py,sha256=6AYWII4mrmwCLHCvGTyoBxR4Oasr4raSHpFbVjqn7d8,193
15
15
  GuardianUnivalle_Benito_Yucra/puntuacion/puntuacion_amenaza.py,sha256=Wx5XfcII4oweLvZsTBEJ7kUc9pMpP5-36RfI5C5KJXo,561
16
- guardianunivalle_benito_yucra-0.1.21.dist-info/licenses/LICENSE,sha256=5e4IdL542v1E8Ft0A24GZjrxZeTsVK7XrS3mZEUhPtM,37
17
- guardianunivalle_benito_yucra-0.1.21.dist-info/METADATA,sha256=c5s3NE0dZvg4WrIczje6qUCbIkUcj0OgyG8sNvZXrWo,1893
18
- guardianunivalle_benito_yucra-0.1.21.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
19
- guardianunivalle_benito_yucra-0.1.21.dist-info/top_level.txt,sha256=HTWfZM64WAV_QYr5cnXnLuabQt92dvlxqlR3pCwpbDQ,30
20
- guardianunivalle_benito_yucra-0.1.21.dist-info/RECORD,,
16
+ guardianunivalle_benito_yucra-0.1.22.dist-info/licenses/LICENSE,sha256=5e4IdL542v1E8Ft0A24GZjrxZeTsVK7XrS3mZEUhPtM,37
17
+ guardianunivalle_benito_yucra-0.1.22.dist-info/METADATA,sha256=h3ClBPXiWTINUZjI3N4pLYVZuHR3LIZm8VML-QQs1MI,1893
18
+ guardianunivalle_benito_yucra-0.1.22.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
19
+ guardianunivalle_benito_yucra-0.1.22.dist-info/top_level.txt,sha256=HTWfZM64WAV_QYr5cnXnLuabQt92dvlxqlR3pCwpbDQ,30
20
+ guardianunivalle_benito_yucra-0.1.22.dist-info/RECORD,,