{"id":47865020,"url":"https://github.com/scowser/scowser","last_synced_at":"2026-06-11T08:00:39.518Z","repository":{"id":348426855,"uuid":"1193906393","full_name":"scowser/scowser","owner":"scowser","description":"scowser is the secure browser","archived":false,"fork":false,"pushed_at":"2026-04-05T22:48:26.000Z","size":504,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-06T00:32:52.677Z","etag":null,"topics":["browser","scowser","secure-browser","secure-browsing"],"latest_commit_sha":null,"homepage":"https://scowser.com","language":"C++","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/scowser.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-03-27T17:51:05.000Z","updated_at":"2026-04-05T22:47:48.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/scowser/scowser","commit_stats":null,"previous_names":["scowser/scowser"],"tags_count":27,"template":false,"template_full_name":null,"purl":"pkg:github/scowser/scowser","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scowser%2Fscowser","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scowser%2Fscowser/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scowser%2Fscowser/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scowser%2Fscowser/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/scowser","download_url":"https://codeload.github.com/scowser/scowser/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scowser%2Fscowser/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34188272,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-11T02:00:06.485Z","response_time":57,"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":["browser","scowser","secure-browser","secure-browsing"],"created_at":"2026-04-04T00:03:56.163Z","updated_at":"2026-06-11T08:00:39.499Z","avatar_url":"https://github.com/scowser.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  \u003cimg src=\"scowser.png\" alt=\"scowser\" width=\"128\"\u003e\n\u003c/p\u003e\n\n# scowser\n\nA security-focused web browser built in C++ with Qt6 WebEngine.\n\n## Features\n\n- **Sandboxed Tabs** — Each tab runs in an isolated process with OS-level sandboxing\n- **Ad \u0026 Tracker Blocking** — Built-in EasyList/EasyPrivacy filtering, no extensions needed\n- **DNS-over-HTTPS** — Encrypted DNS via Cloudflare or Quad9, preventing ISP snooping\n- **Zero Telemetry** — No analytics, no crash reports, no data collection whatsoever\n- **Strict TLS** — Certificate pinning, TLS 1.2+ only, certificate transparency checks\n- **Security Indicator** — Lock icon in the address bar shows connection security at a glance\n- **CSP Enforcement** — Content Security Policy headers injected and enforced\n- **Ephemeral by Default** — All browsing data wiped on exit; no persistent cookies, cache, or history. Right-click any tab to save its session and persist cookies, cache, and local storage across restarts\n- **Dark Theme** — Custom dark UI with SVG icons, styled tabs, toolbar, and address bar\n- **Configurable Settings** — DNS provider, search engine, ad blocking, JavaScript, and privacy options via a built-in settings dialog\n- **Download Manager** — Built-in download handling with progress tracking, configurable download directory, and toolbar indicator\n- **Favorites** — Full-featured bookmarks system with groups, pinning, drag-and-drop reordering, search, and persistent storage; star button in toolbar, Ctrl+D to toggle, Ctrl+B for panel\n- **Live Log Viewer** — Built-in log panel with syntax-highlighted output, dockable as a vertical or horizontal pane via the View menu\n- **DevTools** — Full Chromium developer tools (elements, console, network, sources) in a dockable panel; F12 or Ctrl+Shift+I to toggle, follows the active tab\n\n## Install\n\n**macOS (Homebrew Cask):**\n```bash\nbrew tap scowser/scowser\nbrew install --cask scowser\n```\n\n**Linux (Homebrew Formula):**\n```bash\nbrew tap scowser/scowser\nbrew install scowser\n```\n\n## Building from Source\n\n### Prerequisites\n\n- C++20 compiler (Clang 14+ or GCC 12+)\n- CMake 3.22+\n- Qt6 6.5+ with WebEngine module\n\n**macOS:**\n```bash\nbrew install qt@6 cmake\n```\n\n**Linux (Debian/Ubuntu):**\n```bash\nsudo apt install qt6-webengine-dev qt6-base-dev libqt6svg6-dev cmake g++\n```\n\n**Linux (Fedora):**\n```bash\nsudo dnf install qt6-qtwebengine-devel qt6-qtbase-devel qt6-qtsvg-devel cmake gcc-c++\n```\n\n### Compile \u0026 Run\n\n```bash\ncmake -B build -DCMAKE_BUILD_TYPE=Release\ncmake --build build --parallel\n./build/scowser\n```\n\n### Run Tests\n\n```bash\ncmake -B build -DBUILD_TESTING=ON\ncmake --build build --parallel\nctest --test-dir build --output-on-failure\n```\n\n## Architecture\n\nscowser embeds Chromium via Qt6 WebEngine and layers security controls on top:\n\n```\n┌─────────────────────────────────┐\n│           scowser UI            │\n│  (MainWindow, Tabs, AddressBar) │\n├─────────────────────────────────┤\n│        Security Layer           │\n│  AdBlocker · DoH · CertPinner   │\n│  CSP Enforcer · SessionManager  │\n├─────────────────────────────────┤\n│     Request Interceptor         │\n│  (filters all network traffic)  │\n├─────────────────────────────────┤\n│      Qt6 WebEngine (Chromium)   │\n│   (rendering, JS, sandboxing)   │\n└─────────────────────────────────┘\n```\n\n## Security Model\n\n| Threat                  | Mitigation                                    |\n|-------------------------|-----------------------------------------------|\n| Ad/tracker surveillance | Request-level blocking via filter lists       |\n| DNS snooping            | DNS-over-HTTPS with trusted resolvers         |\n| Data exfiltration       | Zero telemetry, ephemeral sessions            |\n| MITM attacks            | Certificate pinning, strict TLS, CT checks    |\n| XSS / injection         | CSP enforcement on all pages                  |\n| Tab compromise          | Process isolation + OS-level sandboxing       |\n\n## License\n\nSee [LICENSE](LICENSE) for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fscowser%2Fscowser","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fscowser%2Fscowser","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fscowser%2Fscowser/lists"}