ghidra-agent-cli
Audited by Socket on May 5, 2026
7 alerts found:
Anomalyx7This is not a typical benign library module; it is a Frida runtime tracing harness that broadly hooks all exported functions of a selected native module and logs callers, arguments (first four), and return values to stdout. While it does not show direct malware behaviors like persistence or network exfiltration, the comprehensive instrumentation and unredacted capture of runtime arguments/returns create a meaningful risk of sensitive data exposure if run against real applications or in unauthorized contexts.
This is a Frida runtime tracing script that automatically selects a non-system native module and hooks all its exported functions, capturing up to four arguments plus return values with timing and outputting them as JSON to console. While it does not show network exfiltration or persistence in this fragment, its broad capture-and-log pattern is a strong indicator of surveillance/data-harvesting capability and should be treated as a security risk in adversarial or production contexts.
No direct indicators of intentional malware are present in this Bash installer helper. The primary risks are supply-chain and trust-model issues inherent to installing a network-downloaded binary: the download origin can be redirected via GITHUB_REPOSITORY, and checksum verification is based on a checksum retrieved from the same release source with no independent signature/anchoring. Additionally, remote tar extraction is performed without explicit hardening/validation of archive contents. Overall: likely legitimate, but it should only be used with trusted config/release/tag and in controlled environments.
This fragment is a dual-use Frida instrumentation utility: it actively hooks native exported functions selected via a non-system module heuristic and an operator-controlled function list, then logs structured samples of observed call arguments/returns (including pointer-like values) to stdout. While it does not show classic malware behaviors such as network exfiltration, filesystem modification, persistence, or command execution in the provided code, the ability to instrument arbitrary application/native functions and dump runtime values is inherently intrusive and can facilitate sensitive data exposure in adversarial contexts. Treat as security-sensitive and restrict/monitor its usage, especially how %%FUNCS%% is provided and where stdout/stderr logs are stored.
No direct evidence of malware payload (e.g., network exfiltration, persistence, destructive actions) is present in this fragment. However, it is an invasive Frida hooking tool that enumerates modules, hooks a chosen exported function, and logs its arguments and return values (and timing) as structured JSON to stdout/stderr. Depending on how %%FUNC%% is supplied and what function is hooked, the script can capture sensitive data, making the security risk moderate to high for untrusted/unauthorized use. Overall, behavior is consistent with dynamic analysis/spying rather than stealthy malware; risk is primarily privacy/data exposure and misuse potential.
This fragment is best characterized as a Frida runtime call-tracing tool: it dynamically hooks many native function entry/exit points within a selected module and outputs batched JSON telemetry containing function names and timing/depth information. There is no direct evidence of classic malware behaviors (no exfiltration, persistence, or file/process modification) in the provided code, but the capability for deep in-process observation is highly sensitive and could be misused for behavioral profiling. Overall risk is moderate-to-high mainly due to invasiveness and potential privacy/leakage through console output, plus robustness issues (global depth counter and silent error suppression).
This module is best characterized as a Frida/Stalker profiling/coverage tool that continuously traces call/return events in a heuristically chosen native module, aggregates call-target frequencies in memory, and periodically logs the hottest addresses. Within the provided code, there are no direct malware behaviors (no exfiltration, credential theft, or command execution), but it is security-relevant due to intrusive runtime monitoring and potentially sensitive logging of execution telemetry. It should be controlled/authorized in deployment and treated as high-sensitivity instrumentation code.