{"id":46937555,"url":"https://github.com/rilltome/crypshare","last_synced_at":"2026-03-11T06:01:58.776Z","repository":{"id":311427035,"uuid":"1043666084","full_name":"rillToMe/CrypShare","owner":"rillToMe","description":"CrypShare - secure LAN file transfer (Python + PowerShell). One-click launcher, HTTPS (mkcert/self-signed), QR link, auto file watcher, neon dark UI.","archived":false,"fork":false,"pushed_at":"2025-08-24T17:05:21.000Z","size":561,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-08-24T17:06:41.558Z","etag":null,"topics":["crypshare","downloader-offline","file-sharing-lan","https","lan","local-network","mkcert","powershell","python","qr-code","self-signed-cert","sse-watchdog","static-server","tls","uploader","windows"],"latest_commit_sha":null,"homepage":"https://github.com/rillToMe/CrypShare","language":"PowerShell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rillToMe.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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-08-24T11:09:45.000Z","updated_at":"2025-08-24T17:05:25.000Z","dependencies_parsed_at":"2025-08-24T17:06:44.759Z","dependency_job_id":"6d8374db-d711-4b87-80b4-e4410d1eb9d6","html_url":"https://github.com/rillToMe/CrypShare","commit_stats":null,"previous_names":["rilltome/crypshare"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/rillToMe/CrypShare","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rillToMe%2FCrypShare","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rillToMe%2FCrypShare/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rillToMe%2FCrypShare/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rillToMe%2FCrypShare/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rillToMe","download_url":"https://codeload.github.com/rillToMe/CrypShare/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rillToMe%2FCrypShare/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30372537,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-10T21:41:54.280Z","status":"online","status_checked_at":"2026-03-11T02:00:07.027Z","response_time":84,"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":["crypshare","downloader-offline","file-sharing-lan","https","lan","local-network","mkcert","powershell","python","qr-code","self-signed-cert","sse-watchdog","static-server","tls","uploader","windows"],"created_at":"2026-03-11T06:01:54.385Z","updated_at":"2026-03-11T06:01:58.770Z","avatar_url":"https://github.com/rillToMe.png","language":"PowerShell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🔒 CrypShare\n\nCrypShare is a lightweight solution for sharing files across local networks with a modern HTTPS-enabled interface.  \nFeaturing a sleek **dark neon UI**, CrypShare provides a secure, fast, and elegant experience across devices.\n\n---\n\u003e **Network tip:** For stable \u0026 faster transfers, prefer **5 GHz Wi-Fi** (if supported) or **wired (LAN/RJ45)** / **USB tethering**. Avoid crowded **2.4 GHz** bands and nearby interference sources\n---\n\n## ✨ Features\n\n- 📂 Upload \u0026 Download files directly via browser  \n- 🔒 Password-protected access  \n- 🌐 HTTPS support (self-signed / mkcert)  \n- 📱 QR Code for quick mobile access  \n- 🖼 Dark neon UI with photo \u0026 video preview  \n- ⚡ Real-time auto refresh (watchdog + SSE)  \n\n---\n\n## 📦 Installation\n\n### 1. Clone the repository\n```bash\ngit clone https://github.com/rillToMe/CrypShare.git\ncd CrypShare\n```\n\n### 2. Install Python dependencies\n```bash\npip install -r requirements.txt\n```\n\n\u003e Requirements:  \n\u003e - Python 3.8+  \n\u003e - watchdog, qrcode, cryptography\n\n### 3. (Optional) Install [mkcert](https://github.com/FiloSottile/mkcert) for trusted HTTPS certificates\n```bash\nmkcert -install\n```\n\n---\n\n## ▶️ Running\n\nOn Windows (PowerShell):\n```powershell\n.\\main.ps1\n```\n\nAccess the server via:\n- **Local** → `https://127.0.0.1:8888/files.html`  \n- **LAN** → `https://\u003cLAN-IP\u003e:8888/files.html`  \n\n---\n\n## 📜 Project Structure\n\n```\nCrypShare/\n├─ System/           # UI (html, css, js, server.py)\n├─ uploads/          # file storage\n├─ Logs/             # logs \u0026 debug files\n├─ cache/            # cached password/ip\n├─ certs/            # https certificates\n├─ asset/\n├─ main.ps1          # PowerShell launcher\n├─ requirements.txt  # python dependencies\n├─ LICENSE           \n└─ README.md\n```\n\n---\n## 🏗 Architecture\n\n![Architecture Diagram](/asset/img/architecture.png)\n\n---\n\n## 📄 License\n\nApache 2.0 License\n\n---\n\n## 👤 Author\n\nCreated by **Rahmat Aditya** (`@rillToMe`)  \nPart of the **Aether Studio** ecosystem 🚀\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frilltome%2Fcrypshare","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frilltome%2Fcrypshare","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frilltome%2Fcrypshare/lists"}