[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"project-72119":3},{"id":4,"name":5,"fullName":6,"owner":7,"repo":5,"description":8,"homepage":9,"htmlUrl":10,"language":11,"languages":10,"totalLinesOfCode":10,"stars":12,"forks":13,"watchers":14,"openIssues":15,"contributorsCount":16,"subscribersCount":16,"size":16,"stars1d":17,"stars7d":18,"stars30d":19,"stars90d":16,"forks30d":16,"starsTrendScore":20,"compositeScore":21,"rankGlobal":10,"rankLanguage":10,"license":22,"archived":23,"fork":23,"defaultBranch":24,"hasWiki":25,"hasPages":23,"topics":26,"createdAt":10,"pushedAt":10,"updatedAt":34,"readmeContent":35,"aiSummary":36,"trendingCount":16,"starSnapshotCount":16,"syncStatus":37,"lastSyncTime":38,"discoverSource":39},72119,"robin","apurvsinghgautam\u002Frobin","apurvsinghgautam","AI-Powered Dark Web OSINT Tool","",null,"Python",5434,1068,67,7,0,90,123,448,270,115.09,"MIT License",false,"main",true,[27,28,29,30,31,32,33],"ai-tool","darkweb","darkweb-osint","investigation-tool","llm-powered","osint","osint-tool","2026-06-12 04:01:03","\u003Cdiv align=\"center\">\r\n   \u003Cimg src=\".github\u002Fassets\u002Flogo.png\" alt=\"Logo\" width=\"300\">\r\n   \u003Cbr>\u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fapurvsinghgautam\u002Frobin\u002Factions\u002Fworkflows\u002Frelease.yml\">\u003Cimg alt=\"Release\" src=\"https:\u002F\u002Fgithub.com\u002Fapurvsinghgautam\u002Frobin\u002Factions\u002Fworkflows\u002Frelease.yml\u002Fbadge.svg\">\u003C\u002Fa> \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fapurvsinghgautam\u002Frobin\u002Freleases\">\u003Cimg alt=\"GitHub Release\" src=\"https:\u002F\u002Fimg.shields.io\u002Fgithub\u002Fv\u002Frelease\u002Fapurvsinghgautam\u002Frobin\">\u003C\u002Fa> \u003Ca href=\"https:\u002F\u002Fhub.docker.com\u002Fr\u002Fapurvsg\u002Frobin\">\u003Cimg alt=\"Docker Pulls\" src=\"https:\u002F\u002Fimg.shields.io\u002Fdocker\u002Fpulls\u002Fapurvsg\u002Frobin\">\u003C\u002Fa>\r\n   \u003Ch1>Robin: AI-Powered Dark Web OSINT Tool\u003C\u002Fh1>\r\n\r\n   \u003Cp>Robin is an AI-powered tool for conducting dark web OSINT investigations. It leverages LLMs to refine queries, filter search results from dark web search engines, and provide an investigation summary.\u003C\u002Fp>\r\n   \u003Ca href=\"#installation\">Installation\u003C\u002Fa> &bull; \u003Ca href=\"#usage\">Usage\u003C\u002Fa> &bull; \u003Ca href=\"#contributing\">Contributing\u003C\u002Fa> &bull; \u003Ca href=\"#acknowledgements\">Acknowledgements\u003C\u002Fa>\u003Cbr>\u003Cbr>\r\n\u003C\u002Fdiv>\r\n\r\n![Demo](.github\u002Fassets\u002Fscreen-ui.png)\r\n\r\n\r\n## Architecture\r\n![Workflow](.github\u002Fassets\u002Frobin-workflow.png)\r\n\r\n---\r\n\r\n## Features\r\n\r\n- ⚙️ **Modular Architecture** – Clean separation between search, scrape, and LLM workflows.\r\n- 🤖 **Multi-Model Support** – Easily switch between OpenAI, Claude, Gemini or local models like Ollama.\r\n- 🌐 **Web UI** – Streamlit-based interface for interactive investigations.\r\n- 🐳 **Docker-Ready** – Recommended Docker deployment for clean, isolated usage.\r\n- 📝 **Custom Reporting** – Save investigation output to file for reporting or further analysis.\r\n- 🧩 **Extensible** – Easy to plug in new search engines, models, or output formats.\r\n\r\n---\r\n\r\n## ⚠️ Disclaimer\r\n> This tool is intended for educational and lawful investigative purposes only. Accessing or interacting with certain dark web content may be illegal depending on your jurisdiction. The author is not responsible for any misuse of this tool or the data gathered using it.\r\n>\r\n> Use responsibly and at your own risk. Ensure you comply with all relevant laws and institutional policies before conducting OSINT investigations.\r\n>\r\n> Additionally, Robin leverages third-party APIs (including LLMs). Be cautious when sending potentially sensitive queries, and review the terms of service for any API or model provider you use.\r\n\r\n## Installation\r\n> [!NOTE]\r\n> The tool needs Tor to do the searches. You can install Tor using `apt install tor` on Linux\u002FWindows(WSL) or `brew install tor` on Mac. Once installed, confirm if Tor is running in the background.\r\n\r\n> [!TIP]\r\n> You can provide your LLM of choice API key by either creating .env file (refer to sample env file in the repo) or by setting env variables in PATH.\r\n>\r\n> For Ollama, provide `http:\u002F\u002Fhost.docker.internal:11434` as `OLLAMA_BASE_URL` in your env if running using docker method or `http:\u002F\u002F127.0.0.1:11434` for other methods. You might need to serve Ollama on 0.0.0.0 depending on your OS. You can do by running `OLLAMA_HOST=0.0.0.0 ollama serve &` in your terminal.\r\n\r\n### Docker [Recommended]\r\n\r\n- Pull the latest Robin docker image\r\n```bash\r\ndocker pull apurvsg\u002Frobin:latest\r\n```\r\n\r\n- Run the docker image as:\r\n```bash\r\ndocker run --rm \\\r\n   -v \"$(pwd)\u002F.env:\u002Fapp\u002F.env\" \\\r\n   --add-host=host.docker.internal:host-gateway \\\r\n   -p 8501:8501 \\\r\n   apurvsg\u002Frobin:latest\r\n```\r\n\r\n> [!TIP]\r\n> To persist saved investigations across Docker restarts, mount a local directory:\r\n> ```bash\r\n> docker run --rm \\\r\n>    -v \"$(pwd)\u002F.env:\u002Fapp\u002F.env\" \\\r\n>    -v \"$(pwd)\u002Finvestigations:\u002Fapp\u002Finvestigations\" \\\r\n>    --add-host=host.docker.internal:host-gateway \\\r\n>    -p 8501:8501 \\\r\n>    apurvsg\u002Frobin:latest\r\n> ```\r\n> Investigations are saved to the `investigations\u002F` folder in your working directory and can be loaded from the **Past Investigations** panel in the sidebar.\r\n\r\n- Open your browser and navigate to `http:\u002F\u002Flocalhost:8501`\r\n\r\n### Using Python (Development Version)\r\n\r\n- With `Python 3.10+` and Tor installed, run the following:\r\n\r\n```bash\r\npip install -r requirements.txt\r\nstreamlit run ui.py\r\n```\r\n\r\n- Open your browser and navigate to `http:\u002F\u002Flocalhost:8501`\r\n\r\n---\r\n\r\n## Contributing\r\n\r\nContributions are welcome! Please feel free to submit a Pull Request if you have major feature updates.\r\n\r\n- Fork the repository\r\n- Create your feature branch (git checkout -b feature\u002Famazing-feature)\r\n- Commit your changes (git commit -m 'Add some amazing feature')\r\n- Push to the branch (git push origin feature\u002Famazing-feature)\r\n- Open a Pull Request\r\n\r\nOpen an Issue for any of these situations:\r\n- If you spot a bug or bad code\r\n- If you have a feature request idea\r\n- If you have questions or doubts about usage\r\n- If you have minor code changes\r\n\r\n---\r\n\r\n## Acknowledgements\r\n\r\n- Idea inspiration from [Thomas Roccia](https:\u002F\u002Fx.com\u002Ffr0gger_) and his demo of [Perplexity of the Dark Web](https:\u002F\u002Fx.com\u002Ffr0gger_\u002Fstatus\u002F1908051083068645558).\r\n- Tools inspiration from my [OSINT Tools for the Dark Web](https:\u002F\u002Fgithub.com\u002Fapurvsinghgautam\u002Fdark-web-osint-tools) repository.\r\n- LLM Prompt inspiration from [OSINT-Assistant](https:\u002F\u002Fgithub.com\u002FAXRoux\u002FOSINT-Assistant) repository.\r\n- Logo Design by my friend [Tanishq Rupaal](https:\u002F\u002Fgithub.com\u002FTanq16\u002F)\r\n\r\n\r\n\r\n\r\n\r\n\r\n","Robin 是一款基于人工智能的暗网开源情报（OSINT）调查工具。它利用大型语言模型（LLM）优化查询、筛选来自暗网搜索引擎的结果，并提供调查总结。其核心功能包括模块化架构、多模型支持、基于Streamlit的网页界面、Docker部署、自定义报告以及高度可扩展性。适用于需要进行合法且教育性质的暗网内容研究与分析场景，如网络安全研究、犯罪调查等。请注意，在使用时需遵守相关法律法规并确保对敏感信息处理得当。",2,"2026-06-11 03:40:27","high_star"]