External Transmission
Medium
- Category
- Data Exfiltration
- Content
const fs=require("fs"); const apiKey=JSON.parse(fs.readFileSync(process.env.HOME+"/.xcrawl/config.json","utf8")).XCRAWL_API_KEY; const body={url:"https://example.com",crawler:{limit:300,max_depth:3,include:["/docs/.*"],exclude:["/blog/.*"]},request:{locale:"ja-JP"},output:{formats:["markdown","links","json"]}}; fetch("https://run.xcrawl.com/v1/crawl",{ method:"POST", headers:{"Content-Type":"application/json",Authorization:`Bearer ${apiKey}`}, body:JSON.stringify(body)- Confidence
- 88% confidence
- Finding
- fetch("https://run.xcrawl.com/v1/crawl",{ method:"POST"
