Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
362 changes: 362 additions & 0 deletions src/skillspector/nodes/analyzers/behavioral_fingerprint.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,362 @@
# SPDX-FileCopyrightText: Copyright (c) 2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

"""Behavioral fingerprint analyzer: extract and hash behavioral signatures from skills.

Computes a behavioral fingerprint of each skill by extracting:
- Import statements (what modules it uses)
- Function calls (what APIs it invokes)
- File access patterns (what paths it reads/writes)
- Network access patterns (what URLs/domains it contacts)
- Environment variable access (what secrets it reads)

The fingerprint is a deterministic JSON hash that enables:
- Quick comparison against known-bad fingerprints
- Drift detection between skill versions
- Community threat intelligence sharing
"""

from __future__ import annotations

import ast
import hashlib
import json
import re

from skillspector.logging_config import get_logger
from skillspector.models import AnalyzerFinding, Finding, Location, Severity
from skillspector.state import AnalyzerNodeResponse, SkillspectorState

from .common import build_import_aliases, get_context_from_lines, get_source_segment, resolve_call_name
from .static_runner import MAX_FILE_BYTES, analyzer_finding_to_finding

ANALYZER_ID = "behavioral_fingerprint"
logger = get_logger(__name__)

_TAG = "Behavioral Fingerprint"

# Known dangerous module groups
_DANGEROUS_MODULE_GROUPS = {
"network": {"requests", "urllib", "httpx", "aiohttp", "socket", "websocket"},
"execution": {"subprocess", "os", "shlex", "popen", "pty"},
"file_io": {"pathlib", "shutil", "glob", "fnmatch", "tempfile"},
"crypto": {"hashlib", "hmac", "cryptography", "bcrypt"},
"serialization": {"pickle", "marshal", "shelve", "json", "yaml"},
"env": {"os", "dotenv"},
}

# Patterns for detecting network URLs in code/strings
_URL_PATTERN = re.compile(
r"https?://[^\s\"']+|"
r"wss?://[^\s\"']+|"
r"(?:POST|GET|PUT|DELETE|PATCH)\s+[^\s\"']+",

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The (?:POST|GET|PUT|DELETE|PATCH)\s+[^\s\"']+ alternative is compiled with re.IGNORECASE, so ordinary prose matches: "get started,", "put the", "delete old" are all captured as URLs and reported as external network endpoints under FP3 (verified). Drop IGNORECASE for the HTTP-verb alternative (verbs are conventionally uppercase) and/or require a path-like operand (e.g. /\S+ or a scheme).

re.IGNORECASE,
)

# Patterns for detecting file path access
_PATH_ACCESS_PATTERNS = [
re.compile(r"(?:open|read|write|read_text|write_text)\s*\(\s*['\"]([^'\"]+)['\"]"),
re.compile(r"(?:Path|PurePath)\s*\(\s*['\"]([^'\"]+)['\"]"),
re.compile(r"(?:os\.path\.join|os\.path\.expanduser)\s*\(\s*['\"]([^'\"]+)['\"]"),
re.compile(r"~/(?:\.ssh|\.aws|\.config|\.env|\.git|Library)"),
]

# Patterns for detecting env var access
_ENV_VAR_PATTERNS = [
re.compile(r"os\.environ(?:\.get|\.pop|\[)\s*\(\s*['\"]([A-Z_]+)['\"]"),
re.compile(r"os\.getenv\s*\(\s*['\"]([A-Z_]+)['\"]"),
re.compile(r"ENV\s+([A-Z_]+)="),
]

# Dangerous file paths that indicate credential access
_SENSITIVE_PATHS = frozenset({
"~/.ssh", "~/.aws", "~/.config", "~/.env", "~/.git",
"/etc/passwd", "/etc/shadow", "/etc/hosts",
"~/.bashrc", "~/.zshrc", "~/.profile",
})


def _extract_imports(tree: ast.Module) -> list[str]:
"""Extract all import names from a Python AST."""
imports = []
for node in ast.walk(tree):
if isinstance(node, ast.Import):
for alias in node.names:
imports.append(alias.name)
elif isinstance(node, ast.ImportFrom):
module = node.module or ""
for alias in node.names:
imports.append(f"{module}.{alias.name}" if module else alias.name)
return sorted(set(imports))


def _extract_function_calls(tree: ast.Module, aliases: dict[str, str]) -> list[str]:
"""Extract all function call names from a Python AST."""
calls = []
for node in ast.walk(tree):
if isinstance(node, ast.Call):
name = resolve_call_name(node, aliases)
if name:
calls.append(name)
return sorted(set(calls))


def _extract_string_literals(tree: ast.Module) -> list[str]:
"""Extract all string literals from a Python AST."""
strings = []
for node in ast.walk(tree):
if isinstance(node, ast.Constant) and isinstance(node.value, str):
if len(node.value) > 3:
strings.append(node.value)
return strings


def _detect_urls_in_strings(strings: list[str]) -> list[str]:
"""Find URLs in string literals."""
urls = set()
for s in strings:
for match in _URL_PATTERN.finditer(s):
urls.add(match.group(0).strip())
return sorted(urls)


def _detect_file_paths_in_strings(strings: list[str]) -> list[str]:
"""Find file path references in string literals."""
paths = set()
for s in strings:
for pattern in _PATH_ACCESS_PATTERNS:
for match in pattern.finditer(s):
paths.add(match.group(1) if match.lastindex else match.group(0))
for sensitive in _SENSITIVE_PATHS:
if sensitive in s:
paths.add(sensitive)
return sorted(paths)


def _detect_env_vars(content: str) -> list[str]:
"""Find environment variable accesses in code."""
env_vars = set()
for pattern in _ENV_VAR_PATTERNS:
for match in pattern.finditer(content):
env_vars.add(match.group(1))
return sorted(env_vars)


def _classify_imports(imports: list[str]) -> dict[str, list[str]]:
"""Classify imports into behavioral categories."""
classified: dict[str, list[str]] = {}
for imp in imports:
root = imp.split(".")[0]
for category, modules in _DANGEROUS_MODULE_GROUPS.items():
if root in modules:
classified.setdefault(category, []).append(imp)
return classified


def _compute_fingerprint(
imports: list[str],
calls: list[str],
urls: list[str],
file_paths: list[str],
env_vars: list[str],
) -> str:
"""Compute a deterministic SHA-256 hash of the behavioral fingerprint."""
fingerprint_data = {
"imports": imports,
"calls": calls,
"urls": urls,
"file_paths": file_paths,
"env_vars": env_vars,
}
canonical = json.dumps(fingerprint_data, sort_keys=True, separators=(",", ":"))
return hashlib.sha256(canonical.encode()).hexdigest()


def _analyze_python_fingerprint(
content: str, file_path: str
) -> tuple[list[str], list[str], list[str], list[str], list[str]]:
"""Extract behavioral features from a Python file."""
try:
tree = ast.parse(content, filename=file_path)
except SyntaxError:
return [], [], [], [], []

aliases = build_import_aliases(tree)
imports = _extract_imports(tree)
calls = _extract_function_calls(tree, aliases)
strings = _extract_string_literals(tree)
urls = _detect_urls_in_strings(strings)
file_paths = _detect_file_paths_in_strings(strings)
env_vars = _detect_env_vars(content)
return imports, calls, urls, file_paths, env_vars


def _analyze_markdown_fingerprint(content: str) -> tuple[list[str], list[str], list[str]]:
"""Extract behavioral features from markdown/config files."""
urls = sorted(set(m.group(0).strip() for m in _URL_PATTERN.finditer(content)))
env_vars = set()
for pattern in _ENV_VAR_PATTERNS:
for match in pattern.finditer(content):
env_vars.add(match.group(1))
file_paths = set()
for pattern in _PATH_ACCESS_PATTERNS:
for match in pattern.finditer(content):
file_paths.add(match.group(1) if match.lastindex else match.group(0))
for sensitive in _SENSITIVE_PATHS:
if sensitive in content:
file_paths.add(sensitive)
return urls, sorted(file_paths), sorted(env_vars)


def analyze(content: str, file_path: str, file_type: str) -> list[AnalyzerFinding]:
"""Analyze content and extract behavioral fingerprint features."""
findings: list[AnalyzerFinding] = []

if file_type == "python":
imports, calls, urls, file_paths, env_vars = _analyze_python_fingerprint(content, file_path)
elif file_type in ("markdown", "yaml", "json", "toml"):
urls, file_paths, env_vars = _analyze_markdown_fingerprint(content)
imports, calls = [], []
else:
return findings

# FP1: Sensitive file path access
sensitive_access = [p for p in file_paths if p in _SENSITIVE_PATHS]
if sensitive_access:
findings.append(
AnalyzerFinding(
rule_id="FP1",
message=f"Sensitive file path access detected: {', '.join(sensitive_access)}",
severity=Severity.HIGH,
location=Location(file=file_path, start_line=1),
confidence=0.8,
tags=[_TAG],
context=f"Accessed paths: {', '.join(sensitive_access)}",
matched_text=", ".join(sensitive_access),
)
)

# FP2: Credential-related env var access
credential_envs = [v for v in env_vars if any(
kw in v for kw in ("KEY", "SECRET", "TOKEN", "PASSWORD", "CREDENTIAL", "AUTH")
)]
if credential_envs:
findings.append(
AnalyzerFinding(
rule_id="FP2",
message=f"Credential environment variable access: {', '.join(credential_envs)}",
severity=Severity.MEDIUM,
location=Location(file=file_path, start_line=1),
confidence=0.7,
tags=[_TAG],
context=f"Env vars: {', '.join(credential_envs)}",
matched_text=", ".join(credential_envs),
)
)

# FP3: External network endpoints
external_urls = [u for u in urls if not u.startswith(("http://localhost", "http://127.", "http://0."))]
if external_urls:
findings.append(
AnalyzerFinding(
rule_id="FP3",
message=f"External network endpoints referenced: {len(external_urls)} URL(s)",
severity=Severity.LOW,
location=Location(file=file_path, start_line=1),
confidence=0.5,
tags=[_TAG],
context=f"URLs: {', '.join(external_urls[:5])}",
matched_text=", ".join(external_urls[:5]),
)
)

# FP4: Dangerous import combination
if imports:
classified = _classify_imports(imports)
dangerous_combos = []
if "execution" in classified and "network" in classified:
dangerous_combos.append("execution + network")
if "file_io" in classified and "network" in classified:
dangerous_combos.append("file_io + network")
if "serialization" in classified and "execution" in classified:
dangerous_combos.append("serialization + execution")
if dangerous_combos:
findings.append(
AnalyzerFinding(
rule_id="FP4",
message=f"Dangerous import combination: {', '.join(dangerous_combos)}",
severity=Severity.MEDIUM,
location=Location(file=file_path, start_line=1),
confidence=0.65,
tags=[_TAG],
context=f"Modules: {', '.join(imports[:10])}",
matched_text=", ".join(dangerous_combos),
)
)

return findings


def node(state: SkillspectorState) -> AnalyzerNodeResponse:
"""Compute behavioral fingerprints and detect risky behavioral patterns."""
components: list[str] = state.get("components") or []
file_cache: dict[str, str] = state.get("file_cache") or {}
all_findings: list[Finding] = []

for path in components:
content = file_cache.get(path)
if content is None or len(content) > MAX_FILE_BYTES:
continue
idx = path.rfind(".")
suffix = path[idx:].lower() if idx >= 0 else ""
file_type = {
".py": "python", ".md": "markdown", ".yaml": "yaml", ".yml": "yaml",
".json": "json", ".toml": "toml",
}.get(suffix, "other")
if file_type == "other":
continue
raw = analyze(content, path, file_type)
all_findings.extend(analyzer_finding_to_finding(af) for af in raw)

# Compute the aggregate fingerprint across all files
all_imports, all_calls, all_urls, all_paths, all_envs = [], [], [], [], []
for path in components:
content = file_cache.get(path)
if content is None or len(content) > MAX_FILE_BYTES:
continue
idx = path.rfind(".")
suffix = path[idx:].lower() if idx >= 0 else ""
if suffix == ".py":
i, c, u, p, e = _analyze_python_fingerprint(content, path)
all_imports.extend(i)
all_calls.extend(c)
all_urls.extend(u)
all_paths.extend(p)
all_envs.extend(e)
elif suffix in (".md", ".yaml", ".yml", ".json", ".toml"):
u, p, e = _analyze_markdown_fingerprint(content)
all_urls.extend(u)
all_paths.extend(p)
all_envs.extend(e)

fingerprint = _compute_fingerprint(
sorted(set(all_imports)),
sorted(set(all_calls)),
sorted(set(all_urls)),
sorted(set(all_paths)),
sorted(set(all_envs)),
)
logger.info("%s: %d findings, fingerprint=%s", ANALYZER_ID, len(all_findings), fingerprint[:12])
return {"findings": all_findings}
Loading