crawlemoon
PyPI
v1.1.11
Published by an unidentified publisher — no publish provenance and no public repository, so the publisher could not be verified and the source cannot be independently located.
Advanced Web Crawling Platform with Deep Analysis and MCP Server
The grade answers one question — how safe is this server for you to adopt — so it is computed in two auditable stages. Nothing below is an opinion or an LLM's guess; every line is a real term the deterministic engine applied, and the same input always yields the same number.
1. Threat score — 100 − 6.3 = 94. What the published surface and source actually contain:
| Points | What was found | Category |
|---|---|---|
| −6.3 | Unsafe deserialization MTC-SRC-007 | permissions |
2. Client adoption risk — 94 − 8 = 86. Three small, subtract-only factors that reflect your risk in adopting it — a clean scan proves less on a powerful, unverified or barely-inspectable package, so the grade says so plainly:
| Points | Adoption-risk factor |
|---|---|
| −6 | capability blast radius (high) — client exposure if the model is manipulated |
| −2 | publisher verification (unlinked) — no provenance/repo link, but the shipped source was fully read |
Capability observations and info notes are shown under Findings but never scored.
Open any row's finding below for the file, line and evidence behind a deduction.
Tool "execute_js" appears to run shell commands or evaluate code (parameter "script"). Arbitrary execution driven by model input is one of the most dangerous MCP capabilities; combined with any untrusted input it becomes RCE.
Fix: Sandbox execution, allowlist commands/arguments, and never pass model output to a shell unescaped.
Location: tool execute_js
In the server's implementation (`src/core/browser/xray.py:96`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: try: res = subprocess.run([system_cmd, "xray"], stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True,
Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.
Location: server src/core/browser/xray.py
In the server's implementation (`src/mcp/server.py:1325`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: benchmark processes to spawn (default: 5)", "default": 5 }
Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.
Location: server src/mcp/server.py
Untrusted-input tools ([check_robots, crawl]) co-exist with external-action tools ([stealth_request, execute_js]). A prompt injection could cause unwanted external actions, though no direct sensitive-data leak path was found.
Evidence: untrusted [check_robots, crawl] → sinks [stealth_request, execute_js]
Fix: Require confirmation for state-changing/egress actions triggered after processing untrusted content.
Location: flow check_robots → stealth_request
Tool "check_robots" takes a URL/host parameter "url" with no allowlist/pattern. An outbound-request tool with an unbounded destination enables SSRF and cloud-metadata access (e.g. 169.254.169.254).
Fix: Allowlist destinations or constrain the parameter; block private/link-local addresses server-side.
Location: tool check_robots · inputSchema.properties.url
Tool "stealth_request" takes a URL/host parameter "url" with no allowlist/pattern. An outbound-request tool with an unbounded destination enables SSRF and cloud-metadata access (e.g. 169.254.169.254).
Fix: Allowlist destinations or constrain the parameter; block private/link-local addresses server-side.
Location: tool stealth_request · inputSchema.properties.url
Tool "crawl" takes a URL/host parameter "url" with no allowlist/pattern. An outbound-request tool with an unbounded destination enables SSRF and cloud-metadata access (e.g. 169.254.169.254).
Fix: Allowlist destinations or constrain the parameter; block private/link-local addresses server-side.
Location: tool crawl · inputSchema.properties.url
Tool "execute_js" takes a command-shaped parameter "script" with no enum/pattern constraint. Free-form, model- or attacker-controlled arguments reaching a shell is the command-injection precondition.
Fix: Constrain the parameter (enum/pattern), or build the command from a fixed template with escaped args.
Location: tool execute_js · inputSchema.properties.script
In the server's implementation (`src/core/cache/manager.py:74`): Deserializing untrusted data with these APIs can execute arbitrary code (a well-known RCE gadget class). This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: None return pickle.loads(data) except pickle.UnpicklingError as exc: raise CacheSerializ
Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.
Location: server src/core/cache/manager.py
In a packaging/dev/install script (shipped, but not the server runtime) (`tests/test_js_analyzer.py:23`): A hardcoded outbound call to a fixed external host inside server code is a classic exfiltration/telemetry channel — especially paired with reads of local data. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: code = """ fetch('https://api.example.com/users') fetch("https://api.example.com/posts") """
Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.
Location: server tests/test_js_analyzer.py
In a packaging/dev/install script (shipped, but not the server runtime) (`tests/test_mcp_server.py:115`): A hardcoded outbound call to a fixed external host inside server code is a classic exfiltration/telemetry channel — especially paired with reads of local data. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: ts = { "code": "fetch('https://api.example.com');", } result = await handle_extract_from_js(argumen
Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.
Location: server tests/test_mcp_server.py
Tool "execute_js" can mutate/egress but declares no destructiveHint. Clients that don't default to spec-safe behavior may not prompt before running it.
Fix: Declare accurate annotations, and gate destructive tools on user confirmation regardless.
Location: tool execute_js
In a packaging/dev/install script (shipped, but not the server runtime) (`tests/test_js_deobfuscator.py:293`): Evaluating strings as code is the most direct RCE primitive; if any tool input reaches it, the server executes attacker-chosen code. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: function a() { eval(atob("Y29uc29sZS5sb2coJ3Rlc3QnKQ==")); return; console.log("dead code");
Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.
Location: server tests/test_js_deobfuscator.py
In a packaging/dev/install script (shipped, but not the server runtime) (`tests/test_js_security.py:34`): Evaluating strings as code is the most direct RCE primitive; if any tool input reaches it, the server executes attacker-chosen code. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: l('1+1')", "new Function('return 1')()", "document.write('xss')", "import('http://ev
Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.
Location: server tests/test_js_security.py
Each tool and what it can reach — statically extracted from the published source.
check_robotsingests untrusted inputcrawlingests untrusted inputexecute_jsruns code / shellstealth_requestnetwork egressadd_proxyno sensitive capabilityanalyze_authno sensitive capabilityanalyze_resourcesno sensitive capabilityanalyze_sitemapno sensitive capabilityanalyze_websocketno sensitive capabilitycheck_accessibilityno sensitive capabilityclear_cacheno sensitive capabilitycompare_pagesno sensitive capabilityconfigure_proxiesno sensitive capabilityconfigure_rate_limitno sensitive capabilityconfigure_xray_subscriptionno sensitive capabilityconvert_to_markdownno sensitive capabilitydeep_analyzeno sensitive capabilitydelete_recordingno sensitive capabilitydeobfuscate_jsno sensitive capabilitydetect_protectionno sensitive capabilitydetect_technologyno sensitive capabilitydiscover_apisno sensitive capabilityexecute_cdpno sensitive capabilityexecute_graphqlno sensitive capabilityexport_recordingno sensitive capabilityextract_articleno sensitive capabilityextract_formsno sensitive capabilityextract_from_jsno sensitive capabilityextract_linksno sensitive capabilityextract_metadatano sensitive capabilityextract_tablesno sensitive capabilityfill_formno sensitive capabilitygenerate_crawlerno sensitive capabilityget_cache_statsno sensitive capabilityget_cookiesno sensitive capabilityget_dom_treeno sensitive capabilityget_proxy_statsno sensitive capabilityget_rate_limit_statsno sensitive capabilityget_recording_statusno sensitive capabilityget_storageno sensitive capabilityget_xray_statusno sensitive capabilityhealth_checkno sensitive capabilityintrospect_graphqlno sensitive capabilitylist_recordingsno sensitive capabilitylist_sessionsno sensitive capabilityload_sessionno sensitive capabilitymeasure_performanceno sensitive capabilitymonitor_networkno sensitive capabilityrecord_sessionno sensitive capabilityremove_proxyno sensitive capabilityrotate_xray_nodeno sensitive capabilitysave_sessionno sensitive capabilitysmart_extractno sensitive capabilitysolve_captchano sensitive capabilitystop_recordingno sensitive capabilitystructured_extractno sensitive capabilitytake_screenshotno sensitive capabilitytest_proxyno sensitive capabilitytest_xray_nodesno sensitive capabilitywait_and_extractno sensitive capabilityCross-tool combinations that form a data-exfiltration primitive (untrusted input → sensitive source → external sink).
Scan history per published version. The engine is deterministic — the same version always yields the same score, so a changed score means the package itself changed.
| Version | Score | Findings | Engine | Scanned |
|---|---|---|---|---|
v1.1.11 latest |
B 86/100 | 14 | 1.13.0 | 2026-08-25 |
Show this server's live Trust Score in your README, docs or website. The badge is served straight from the registry and updates automatically after every rescan — no API key needed. It links back to this page, so anyone who sees the grade can also read the findings behind it instead of taking a number on faith.
The score above is reproducible: the same package version always yields the same result. Run it locally or over the free API — no account, no LLM, fully deterministic.
npx mcptrustchecker scan crawlemoon --online --registry pypi
Hotel booking MCP server — 300K+ properties, real confirmation numbers, loyalty programs. Builders monetize every booking via Stripe Connect. The first MCP server that completes real hotel reservations inside AI conversations.
Manage AdGuard Home through AI assistants
Read-only Azure DevOps for MCP clients using only your existing browser session — no PAT, no Azure CLI. Browse work items, pull requests, comments, attachments and Artifacts feeds across every project, repo and feed you can access.
MCP server for Adobe Experience Manager Assets integration development
Servidor MCP para el tiempo oficial de España (API pública OpenData de AEMET). Predicción, observación y avisos como herramientas MCP tipadas.
A standalone MCP stdio bridge for Affinity by Canva's local MCP SSE server.