Skill flagged — suspicious patterns detected

ClawHub Security flagged this skill as suspicious. Review the scan results before using.

全网搜

Integrates with the web search API to fetch news and articles from Baidu, Google, or a pre-indexed Elasticsearch database. Use when the user needs to search...

MIT-0 · Free to use, modify, and redistribute. No attribution required.
0 · 41 · 0 current installs · 0 all-time installs
MIT-0
Security Scan
VirusTotalVirusTotal
Pending
View report →
OpenClawOpenClaw
Suspicious
medium confidence
Purpose & Capability
Name/description match the SKILL.md: the skill is an instruction-only adapter to a web-search backend (supports Baidu/Google/ES). It does not request unrelated binaries, system paths, or credentials in the metadata.
!
Instruction Scope
The runtime instructions tell the agent to POST form data including an API key header to a hard-coded base URL at an IP address (http://1.95.148.209:9003). The instructions do not ask the agent to read local files or unrelated environment variables, but they do instruct transmitting an API key over unencrypted HTTP to an opaque remote service, which raises risk of credential interception and exfiltration.
Install Mechanism
This is an instruction-only skill with no install spec and no code files, so nothing is written to disk by an installer; that minimizes local install risk.
!
Credentials
The skill requires an API key in the X-Appbuilder-Authorization header according to SKILL.md, but the registry metadata lists no required credentials. That by itself is not a major mismatch (the key can be provided at runtime), however the instructions have you send that key over plain HTTP to an untrusted IP. The skill provides no guidance on how to obtain/rotate/secure the key or any privacy/usage terms for the backend.
Persistence & Privilege
always is false and there is no claim the skill will persist or modify other agent/system settings. The skill does not request elevated or permanent presence.
What to consider before installing
Before installing, consider that this skill forwards your API key and search queries to an opaque remote service at a raw IP address over unencrypted HTTP. That can expose credentials and query contents. Ask the publisher for provenance (domain, who runs the service, privacy/retention policy), insist on HTTPS (TLS), and prefer using a dedicated or short-lived API key for testing. If you cannot confirm the backend operator or require confidentiality, do not use production credentials with this skill. Also consider whether scraping Google via a third-party service complies with legal/terms-of-service requirements for your use case.

Like a lobster shell, security has layers — review code before you run it.

Current versionv1.0.0
Download zip
latestvk97d32gqadysrz1apssma10gex83hvc7

License

MIT-0
Free to use, modify, and redistribute. No attribution required.

Runtime requirements

🔍 Clawdis

SKILL.md

全网搜索 (Whole Network Search)

This skill guides the agent to call the web search API for retrieving articles and news from multiple sources.

When to Use

Apply this skill when the user:

  • Asks to search the web or gather information online
  • Needs news articles or references by keyword
  • Wants to retrieve content from Baidu, Google, or a local ES index
  • Requires real-time web search or pre-indexed warehouse search

API Overview

Endpoint: POST /web_search

Base URL: http://1.95.148.209:9003

Authentication: Required header X-Appbuilder-Authorization with API key

Request

Headers

HeaderRequiredDescription
X-Appbuilder-AuthorizationYesAPI key for authentication
Content-TypeYesapplication/x-www-form-urlencoded (form data)

Form Parameters

ParameterTypeRequiredDefaultDescription
keywordstringYes-Search keyword
search_sourcestringNobaidu_searchEngine: baidu_search, google_search, baidu_search_ai
modestringNonetworknetwork = live crawl, warehouse = ES index
pageintNo1Page number (starts from 1)

Parameter Constraints

  • search_source: One of baidu_search, google_search, baidu_search_ai
  • mode: One of network, warehouse
  • When mode=warehouse, search is performed against the Elasticsearch index (ignores search_source)
  • When mode=network, use search_source to select Baidu, Google, or Baidu AI search

Response Format

{
  "code": 200,
  "message": "success",
  "references": [
    {
      "title": "Article title",
      "sourceAddress": "https://example.com/article",
      "origin": "Source name",
      "publishDate": "2025-03-24 12:00:00",
      "summary": "Article summary or snippet"
    }
  ]
}

Usage Examples

Example 1: Search Baidu news

POST http://1.95.148.209:9003/web_search
Headers: X-Appbuilder-Authorization: <api_key>
Body (form): keyword=人工智能&search_source=baidu_search&mode=network&page=1

Example 2: Search Google news

POST http://1.95.148.209:9003/web_search
Headers: X-Appbuilder-Authorization: <api_key>
Body (form): keyword=AI&search_source=google_search&mode=network&page=1

Example 3: Search warehouse (ES index)

POST http://1.95.148.209:9003/web_search
Headers: X-Appbuilder-Authorization: <api_key>
Body (form): keyword=机器学习&mode=warehouse&page=1

Example 4: cURL

curl -X POST "http://1.95.148.209:9003/web_search" \
  -H "X-Appbuilder-Authorization: <api_key>" \
  -d "keyword=科技新闻&search_source=baidu_search&mode=network&page=1"

Error Codes

CodeMessageCause
401X-Appbuilder-Authorization参数缺失Missing auth header
402ApiKey错误,请申请ApiKeyInvalid API key
400search_source参数错误Invalid search_source value
400mode参数错误Invalid mode value
400page参数错误Invalid page (non-integer or 0)

Integration Steps

  1. API base URL: http://1.95.148.209:9003,获取 API key 后配置
  2. Determine the desired search_source (Baidu / Google / Baidu AI) or mode (network / warehouse)
  3. Call POST /web_search with form-encoded parameters
  4. Parse references from the response and use title, sourceAddress, summary as needed

Files

2 total
Select a file
Select a file to preview.

Comments

Loading comments…