Private Deep Search

ReviewAudited by ClawScan on May 10, 2026.

Overview

The skill largely performs the advertised private search function, but its privacy claims are overstated and its Docker setup may expose a persistent search service beyond localhost.

Review before installing. If you use it, bind Docker to localhost, consider pinning the SearXNG image, use a VPN/Tor for sensitive searches, and remember that the container keeps running until you stop it.

Findings (5)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

A user may enter sensitive searches believing they never leave the machine, when search engines and fetched websites can still see queries or request metadata.

Why it was flagged

The privacy guide makes an absolute claim that no third party sees queries while also acknowledging that external search engines receive the query and IP information.

Skill content
### 2. Self-Hosted = No Logs
- SearXNG runs on YOUR machine
- No third-party sees your queries
...
| **DuckDuckGo** | Your IP*, search query | Nothing else |
Recommendation

Treat search queries as shared with external engines and result sites; use a VPN/Tor if needed and avoid searching highly sensitive secrets.

ConcernMedium Confidence
ASI02: Tool Misuse and Exploitation
What this means

Other devices that can reach the host may be able to use the SearXNG instance, potentially exposing search activity or abusing the user's network.

Why it was flagged

A Docker Compose port mapping without an explicit 127.0.0.1 bind commonly publishes the service on all host interfaces, which is broader than the localhost-only framing in the documentation.

Skill content
ports:
  - "8888:8080"
Recommendation

Bind the port to localhost, for example `127.0.0.1:8888:8080`, and use a firewall or access controls if the machine is on an untrusted network.

What this means

Search providers and fetched websites may see queries, URLs requested, IP address, timing, and related metadata.

Why it was flagged

External search providers are part of the intended workflow, so query data leaves the local machine even though the tool is self-hosted.

Skill content
melt queries DuckDuckGo, Brave, Startpage, and friends.
Recommendation

Do not assume full anonymity; use a VPN or Tor for stronger network privacy and avoid sensitive personal or confidential queries.

What this means

The installed container can change over time, making behavior less reproducible and harder to audit.

Why it was flagged

The setup uses a mutable `latest` container tag, so future installs may run different upstream code than what was reviewed.

Skill content
image: searxng/searxng:latest
Recommendation

Pin the SearXNG image to a specific version or digest and review updates before applying them.

NoteHigh Confidence
ASI10: Rogue Agents
What this means

The local search service may continue running after a research task finishes.

Why it was flagged

The service is designed to persist and restart in the background until manually stopped.

Skill content
restart: unless-stopped
Recommendation

Stop the container when not needed, for example with `docker-compose down`, and document cleanup steps for users.