Add 30 new production-grade cybersecurity skills: AI security, supply chain, firmware, cloud-native, compliance, deception, crypto, threat hunting, purple team, OT, privacy

This commit is contained in:
mukul975
2026-03-19 19:14:25 +01:00
parent d43cc7a766
commit d833f0eab9
125 changed files with 47874 additions and 334 deletions
@@ -43,7 +43,7 @@ class NessusScanAgent:
headers["X-Cookie"] = f"token={self.token}"
url = f"{self.base_url}{path}"
resp = requests.request(method, url, json=data, headers=headers,
verify=False, timeout=30)
verify=not os.environ.get("SKIP_TLS_VERIFY", "").lower() == "true", timeout=30) # Set SKIP_TLS_VERIFY=true for self-signed certs in lab environments
try:
return resp.json()
except (json.JSONDecodeError, ValueError):