release: v1.0.4

This commit is contained in:
nox-project
2026-04-22 15:49:51 +02:00
parent 294c7cbf84
commit 61bd9b5555
13 changed files with 55 additions and 20 deletions
+17
View File
@@ -2,6 +2,23 @@
All notable changes to NOX are documented here.
## [1.0.4] — 2026-04-22
### Engine
- **Fixed:** `_build_ssl_context` — custom TLS context had zero CA certificates loaded, causing `SSLCertVerificationError` on all HTTPS connections. CA bundle now loaded via `certifi` with `load_default_certs()` fallback.
- **Fixed:** `_NOISE_RE` in reporting — `ssl.`, `aiohttp.`, `asyncio.` were substring-matched, silently zeroing legitimate emails and domains (e.g. `user@ssl.example.com`). Patterns now anchored to start-of-string or whitespace.
- **Fixed:** `COMBO_RE` in `ScrapeEngine` — multiline greedy match produced credentials with embedded newlines in email/password fields. Pattern now excludes newlines from both capture groups.
- **Fixed:** `_in_flight` dict in `AvalancheScanner` — entries were never removed after processing, causing unbounded memory growth on deep scans. Entry is now popped in the `finally` block after the future resolves.
- **Fixed:** `DorkingEngine.__init__``ProxyManager.get_proxies()` was called eagerly on every `Orchestrator` instantiation, triggering a proxy fetch and OPSEC warning even for local-only commands (`--crack`, `--list-sources`, `--analyze`). Proxy fetch is now lazy.
- **Fixed:** `ScrapeEngine._fetch_content` — IntelX paste content fetch used `DB.get_key("intelx")` which does not read `apikeys.json`. Replaced with `Vault.get("INTELX_API_KEY")` for consistent key resolution.
- **Fixed:** `AsyncSource._rec` and `RiskEngine.score` — plugin `confidence` values were stored in `NoxSourceProvider._confidence` but never transferred to `Record.source_confidence`. All 124 plugin records received a flat `0.5` confidence regardless of their declared value. `_rec()` now injects `self._confidence` into the record; `RiskEngine.score()` uses `record.source_confidence` as fallback when the source is not in `_SRC_CONFIDENCE`.
- **Fixed:** `ConfigManager.get_key``None` results were cached, preventing env vars set after the first lookup from being detected in the same session. Only positive values are now cached.
- **Fixed:** Recursive Avalanche Engine — identifiers extracted from paste content (`paste["patterns"]`) were not being harvested as pivot seeds. All `scrape_res["pastes"]` pattern matches are now fed into `_extract_ids_from_text`.
### Sources
- **Fixed:** `circl_hashlookup` — endpoint hardcoded to `/lookup/md5/{target}` but `input_type=hash` accepts SHA1/SHA256. SHA1 and SHA256 backup endpoints added; engine now routes each hash type to the correct path.
- **Updated:** `crt_sh``reliability_score` lowered from 5 to 3, `is_volatile=true` added to reflect documented intermittent availability.
## [1.0.3] — 2026-04-15
### Engine
+1 -1
View File
@@ -11,7 +11,7 @@
**Cyber Threat Intelligence Framework**
[![Status](https://img.shields.io/badge/Status-v1.0.3-success)](https://github.com/nox-project/nox-framework/releases/tag/v1.0.3)
[![Status](https://img.shields.io/badge/Status-v1.0.4-success)](https://github.com/nox-project/nox-framework/releases/tag/v1.0.4)
[![Python](https://img.shields.io/badge/Python-3.8%2B-blue?logo=python&logoColor=white)](https://www.python.org/)
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](LICENSE.txt)
[![Kali Linux](https://img.shields.io/badge/Kali%20Linux-Ready-557C94?logo=kalilinux&logoColor=white)](https://www.kali.org/)
+2 -2
View File
@@ -1,10 +1,10 @@
#!/usr/bin/env bash
set -e
# NOX v1.0.3 — .deb build script (FPM)
# NOX v1.0.4 — .deb build script (FPM)
# Requires: fpm → gem install fpm
VERSION="1.0.3"
VERSION="1.0.4"
PKG_NAME="nox-cli"
ARCH="all"
OUT_DIR="dist"
+6 -2
View File
@@ -188,7 +188,7 @@ FREE_PUBLIC_SOURCES: List[SourceConfig] = [
input_type="domain", output_type=["domain"],
normalization_map={"name_value": "domain"},
tags=["passive", "fast"],
health_check_url="https://crt.sh", reliability_score=5),
health_check_url="https://crt.sh", reliability_score=3, is_volatile=True),
_base("hackertarget_hostsearch", "dns_recon",
"https://api.hackertarget.com/hostsearch/?q={target}", "GET",
@@ -521,7 +521,11 @@ FREE_PUBLIC_SOURCES: List[SourceConfig] = [
normalization_map={"FileName": "filename", "MD5": "hash_md5"},
tags=["passive", "fast"],
health_check_url="https://hashlookup.circl.lu",
reliability_score=5),
reliability_score=5,
backup_endpoints=[
"https://hashlookup.circl.lu/lookup/sha1/{target}",
"https://hashlookup.circl.lu/lookup/sha256/{target}",
]),
_base("ipapi_is", "geolocation",
"https://api.ipapi.is/?q={target}", "GET",
+1 -1
View File
@@ -1,4 +1,4 @@
.TH NOX\-CLI 1 "2026-03-30" "1.0.0" "NOX Framework"
.TH NOX\-CLI 1 "2026-04-16" "1.0.4" "NOX Framework"
.SH NAME
nox-cli \- Advanced Asynchronous Cyber Threat Intelligence Framework
.SH SYNOPSIS
+13 -5
View File
@@ -150,7 +150,7 @@ except Exception:
VERSION = _sp2.check_output(["dpkg-query", "-W", "-f=${Version}", "nox-cli"], stderr=_sp2.DEVNULL).decode().strip() or VERSION
except Exception:
pass
BUILD_DATE = "2026-04-15"
BUILD_DATE = "2026-04-16"
# ── Smart Path Layout ──────────────────────────────────────────────────
HOME_NOX = Path.home() / ".nox"
@@ -646,7 +646,7 @@ class RiskEngine:
@staticmethod
def score(record: "Record") -> "Record":
conf = _SRC_CONFIDENCE.get(record.source, 0.5)
conf = _SRC_CONFIDENCE.get(record.source, record.source_confidence)
record.source_confidence = conf
dtypes_str = " ".join(record.data_types).lower() if record.data_types else ""
@@ -1540,6 +1540,11 @@ def _build_ssl_context() -> ssl.SSLContext:
ctx.set_ciphers(Cfg.TLS_CIPHERS)
ctx.check_hostname = True
ctx.verify_mode = ssl.CERT_REQUIRED
try:
import certifi
ctx.load_verify_locations(certifi.where())
except Exception:
ctx.load_default_certs()
return ctx
@@ -1702,6 +1707,7 @@ class AsyncSource(ABC):
def _rec(self, **kw) -> Record:
kw.setdefault("source", self.name)
kw.setdefault("source_confidence", getattr(self, "_confidence", 0.5))
sev = kw.pop("severity", Severity.MEDIUM)
r = Record(**{k: v for k, v in kw.items() if k in Record.__dataclass_fields__})
r.severity = sev
@@ -2236,10 +2242,12 @@ class DorkingEngine(Src):
super().__init__(*args, **kwargs)
self._dead_proxies: set = set()
self._proxy_index: int = 0
self.proxies = ProxyManager.get_proxies()
self.proxies: list = []
self._dead_instances: set = set()
def _get_next_proxy(self) -> Optional[str]:
if not self.proxies:
self.proxies = ProxyManager.get_proxies()
live = [p for p in self.proxies if p not in self._dead_proxies]
if not live:
return None
@@ -2498,7 +2506,7 @@ class ScrapeEngine:
CRED_RE = re.compile(r"[\w.+-]+@[\w-]+\.[\w.-]+\s*[:;|]\s*\S+", re.IGNORECASE)
EMAIL_RE = re.compile(r"[\w.+-]+@[\w-]+\.[\w.]+")
HASH_RE = re.compile(r"\b[a-f0-9]{32,128}\b", re.IGNORECASE)
COMBO_RE = re.compile(r"^[^:]+:[^:]+$", re.MULTILINE)
COMBO_RE = re.compile(r"^[^\n:]+:[^\n:]+$", re.MULTILINE)
PATTERNS = [
(re.compile(r"(?:password|passwd|pass|pwd)\s*[:=]\s*\S+", re.I), "Password"),
@@ -2722,7 +2730,7 @@ class ScrapeEngine:
return ""
raw_urls: dict = {} # paste fetch URLs — resolved per site name
if site == "IntelX":
key = self.db.get_key("intelx")
key = Vault.get("INTELX_API_KEY")
if key:
resp = self.s.get(f"https://2.intelx.io/file/read?type=1&systemid={pid}&k={key}", timeout=15)
if resp.ok:
+1 -1
View File
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
[project]
name = "nox-cli"
version = "1.0.3"
version = "1.0.4"
description = "Advanced Asynchronous Cyber Threat Intelligence Framework"
readme = { file = "README.md", content-type = "text/markdown" }
license = { text = "Apache-2.0" }
+1 -1
View File
@@ -9,7 +9,7 @@ requirements = [
setup(
name="nox-cli",
version="1.0.0",
version="1.0.4",
author="nox-project",
description="Advanced Asynchronous Cyber Threat Intelligence Framework",
long_description=Path("README.md").read_text(),
+4 -1
View File
@@ -26,6 +26,9 @@
"health_check_url": "https://hashlookup.circl.lu",
"expected_status": 200,
"reliability_score": 5,
"backup_endpoints": [],
"backup_endpoints": [
"https://hashlookup.circl.lu/lookup/sha1/{target}",
"https://hashlookup.circl.lu/lookup/sha256/{target}"
],
"confidence": 1.0
}
+3 -2
View File
@@ -25,7 +25,8 @@
],
"health_check_url": "https://crt.sh",
"expected_status": 200,
"reliability_score": 5,
"reliability_score": 3,
"is_volatile": true,
"backup_endpoints": [],
"confidence": 1.0
"confidence": 0.7
}
+2 -1
View File
@@ -228,7 +228,8 @@ class ConfigManager:
return cls._cache[key_name]
val = os.environ.get(key_name, "") or cls._get_store().get(key_name, "")
result = None if (not val or val == UNIVERSAL_PLACEHOLDER) else val
cls._cache[key_name] = result
if result is not None:
cls._cache[key_name] = result
return result
# Backward-compatible alias used by nox.py internals
+3 -3
View File
@@ -14,9 +14,9 @@ from typing import Any, Dict, List
# ── Noise patterns stripped from all report output ────────────────────
_NOISE_RE = re.compile(
r"(Traceback \(most recent|File \".*\.py\"|TimeoutError|ProxyError"
r"|ConnectionError|aiohttp\.|ClientConnector|ssl\.|asyncio\."
r"|Task exception|NoneType|Object of type)",
re.I,
r"|ConnectionError|ClientConnector|Task exception|NoneType|Object of type"
r"|(?:^|[\s(])aiohttp\.|(?:^|[\s(])asyncio\.|(?:^|[\s(])ssl\.)",
re.I | re.MULTILINE,
)
_CTRL_RE = re.compile(r"[\x00-\x08\x0b\x0c\x0e-\x1f\x7f-\x9f]")
+1
View File
@@ -227,6 +227,7 @@ class AvalancheScanner:
finally:
if not fut.done():
fut.set_result(None)
self._in_flight.pop(key, None)
# ── Core pipeline ─────────────────────────────────────────────────