360 Search

PassAudited by ClawScan on May 1, 2026.

Overview

It appears to be a normal 360 Search tool, but it uses an automated browser and sends search terms to 360 Search, while its packaging documentation is incomplete.

This looks reasonable for a search skill, but use it with the expectation that queries go to 360 Search through an automated browser. Do not search for secrets or sensitive private data, and install any Playwright/browser dependencies only from trusted sources.

Findings (3)

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

Search terms may be visible to 360 Search, and search results/snippets should be treated as untrusted web content.

Why it was flagged

The skill builds a search URL from the user's query and navigates a browser to it. This is purpose-aligned for search, but it means user queries are sent to the external 360 Search service.

Skill content
url = f"{self.base_url}/s?q={query}"
self.page.goto(url, timeout=self.timeout)
Recommendation

Avoid putting secrets or highly sensitive personal data in queries, and verify important results before relying on them.

What this means

Installation or execution may require undeclared dependencies or browser components, so users may need to choose and trust their own dependency source.

Why it was flagged

The code depends on Playwright/Chromium, but the metadata and install section declare no required binaries, environment variables, or install spec. This is a packaging/provenance gap rather than evidence of malicious behavior.

Skill content
from playwright.sync_api import sync_playwright, Page, Browser
Recommendation

Install dependencies only from trusted package sources; the publisher should add a requirements/lock file and accurate install instructions.

What this means

A user may expect lightweight API calls, while the skill actually launches an automated browser and depends on web-page structure.

Why it was flagged

The included implementation uses browser automation against www.so.com rather than a documented API. The functionality is still search-related, but the description may understate how the skill works.

Skill content
Description: Provides search functionalities including image and news retrieval using the 360 Search API.
Recommendation

Treat this as a browser-based search/scraping skill unless the publisher updates the description and documentation.