{"id":30809365,"url":"https://github.com/simran1002/cyberxplore-scanner","last_synced_at":"2025-09-06T04:07:19.094Z","repository":{"id":307361993,"uuid":"1029272748","full_name":"simran1002/cyberXplore-scanner","owner":"simran1002","description":null,"archived":false,"fork":false,"pushed_at":"2025-07-30T21:01:48.000Z","size":558,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-07-30T22:21:08.333Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/simran1002.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-07-30T19:32:11.000Z","updated_at":"2025-07-30T21:01:52.000Z","dependencies_parsed_at":"2025-07-30T22:33:16.720Z","dependency_job_id":null,"html_url":"https://github.com/simran1002/cyberXplore-scanner","commit_stats":null,"previous_names":["simran1002/cyberxplore-scanner"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/simran1002/cyberXplore-scanner","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simran1002%2FcyberXplore-scanner","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simran1002%2FcyberXplore-scanner/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simran1002%2FcyberXplore-scanner/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simran1002%2FcyberXplore-scanner/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/simran1002","download_url":"https://codeload.github.com/simran1002/cyberXplore-scanner/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simran1002%2FcyberXplore-scanner/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273854830,"owners_count":25180024,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-06T02:00:13.247Z","response_time":2576,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-09-06T04:07:15.708Z","updated_at":"2025-09-06T04:07:19.043Z","avatar_url":"https://github.com/simran1002.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# CyberXplore Malware Scanner\n\nA comprehensive full-stack application for secure file upload and malware scanning with real-time dashboard monitoring.\n\n##  Features\n\n- **Secure File Upload**: Support for PDF, DOCX, and image files (max 5MB)\n- **Real-time Malware Scanning**: Simulated malware detection with dangerous keyword analysis\n- **Live Dashboard**: Real-time updates via WebSocket connections\n- **Responsive UI**: Modern, mobile-friendly interface built with React and Tailwind CSS\n- **File Management**: Complete file history with filtering and search capabilities\n- **Security Alerts**: Optional Slack/webhook notifications for detected threats\n- **Statistics Dashboard**: Comprehensive analytics and threat detection metrics\n\n## 🛠 Tech Stack\n\n### Backend\n- **Node.js** with **TypeScript**\n- **Express.js** for REST API\n- **MongoDB** for data persistence\n- **Socket.IO** for real-time communication\n- **Multer** for file upload handling\n- **Custom in-memory queue** for background job processing\n\n### Frontend\n- **React** with **TypeScript**\n- **Tailwind CSS** for styling\n- **Socket.IO Client** for real-time updates\n- **React Dropzone** for drag-and-drop file uploads\n- **Lucide React** for icons\n- **React Hot Toast** for notifications\n\n\n### File Upload\n1. Navigate to the **Upload File** tab\n2. Drag and drop a file or click to select\n3. Supported formats: PDF, DOCX, JPG, PNG (max 5MB)\n4. File will be automatically queued for scanning\n\n### Dashboard Monitoring\n1. Switch to the **Dashboard** tab to view all files\n2. Monitor real-time scan progress\n3. Filter files by status (pending, scanning, scanned) or result (clean, infected)\n4. Click \"View\" to see detailed file information\n\n\n### Backend Setup\n1. Clone and install dependencies:\n```bash\ngit clone https://github.com/simran1002/cyberXplore-scanner.git\ncd cyberxplore\nnpm install\n```\n\n2. Configure environment variables:\n```bash\ncp .env\n```\n\n3. Start the backend server:\n```bash\nnpm run build\nnpm start\nnpm run dev\n```\n\nThe API will run on http://localhost:5000\n\n### Frontend Setup\n1. Navigate to frontend directory:\n```bash\ncd client\nnpm install\n```\n\n2. Start the React development server:\n```bash\nnpm start\n```\n\nThe frontend will run on http://localhost:3000\n\n### MongoDB Setup\n1. Create a MongoDB Atlas cluster or start local MongoDB\n2. Add your MongoDB URI to `.env`:\n\n\n## 💻 Development\n\n### Running Locally\n1. Start MongoDB:\n```bash\nmongod\n```\n\n2. Start backend (terminal 1):\n```bash\ncd cyberxplore\nnpm run dev\n```\n\n3. Start frontend (terminal 2):\n```bash\ncd cyberxplore/client\nnpm start\n```\n\n4. Access the application:\n- Dashboard: http://localhost:3000\n- API: http://localhost:5000\n- API Docs: http://localhost:5000/api/docs\n- Health Check: http://localhost:5000/api/health\n\n![alt text](\u003cScreenshot (1200).png\u003e)\n![alt text](\u003cScreenshot (1201).png\u003e)\n![alt text](\u003cScreenshot (1202).png\u003e)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsimran1002%2Fcyberxplore-scanner","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsimran1002%2Fcyberxplore-scanner","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsimran1002%2Fcyberxplore-scanner/lists"}