External Transmission
Medium
- Category
- Data Exfiltration
- Content
使用OpenAlex API搜索: ```bash curl -s "https://api.openalex.org/works?search=YOUR_QUERY&per_page=10" ``` 支持的筛选参数:
- Confidence
- 88% confidence
- Finding
- https://api.openalex.org/
Security audit
Security checks across malware telemetry and agentic risk
This is an instruction-only academic search helper that discloses its use of public scholarly APIs and shows no hidden persistence, credential access, or destructive behavior.
Reasonable to install for public academic search and citation formatting. Avoid sending confidential research topics or private identifiers through the provided API examples, and treat CNKI-specific claims as limited because the skill does not directly access CNKI or institutional subscriptions.
使用OpenAlex API搜索: ```bash curl -s "https://api.openalex.org/works?search=YOUR_QUERY&per_page=10" ``` 支持的筛选参数:
local limit="${2:-10}"
local year_filter="${3:-}"
local url="https://api.openalex.org/works?search=${query}&per_page=${limit}"
if [ -n "$year_filter" ]; then
url="${url}&filter=publication_year:${year_filter}"```bash
get_paper_by_doi() {
local doi="$1"
curl -s "https://api.openalex.org/works/doi:${doi}"
}
``````bash
generate_apa() {
local doi="$1"
curl -s "https://api.openalex.org/works/doi:${doi}" | python3 -c "
import json, sys
w = json.load(sys.stdin)
authors = []63/63 vendors flagged this skill as clean.
No suspicious patterns detected.