{"id":17094283,"url":"https://github.com/xchwarze/frieren","last_synced_at":"2026-05-28T06:02:09.089Z","repository":{"id":213027775,"uuid":"732840064","full_name":"xchwarze/frieren","owner":"xchwarze","description":"Frieren is a micro-framework designed for use in routers and Single Board Computers (SBCs). This framework is built to be lightweight, efficient, and easy to integrate into various hardware projects.","archived":false,"fork":false,"pushed_at":"2026-05-23T01:04:56.000Z","size":7836,"stargazers_count":189,"open_issues_count":4,"forks_count":15,"subscribers_count":9,"default_branch":"master","last_synced_at":"2026-05-23T02:29:11.281Z","etag":null,"topics":["hacking","iot","openwrt","php","rasberry-pi","red-team","sbcomputers","wireless"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/xchwarze.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2023-12-18T01:13:52.000Z","updated_at":"2026-05-23T01:05:00.000Z","dependencies_parsed_at":"2024-04-14T18:29:23.464Z","dependency_job_id":"9ddd7482-3120-4500-9dfd-e2b07ecbdc34","html_url":"https://github.com/xchwarze/frieren","commit_stats":null,"previous_names":["xchwarze/frieren"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/xchwarze/frieren","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xchwarze%2Ffrieren","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xchwarze%2Ffrieren/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xchwarze%2Ffrieren/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xchwarze%2Ffrieren/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/xchwarze","download_url":"https://codeload.github.com/xchwarze/frieren/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xchwarze%2Ffrieren/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33596317,"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-05-28T02:00:06.440Z","response_time":99,"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":["hacking","iot","openwrt","php","rasberry-pi","red-team","sbcomputers","wireless"],"created_at":"2024-10-14T14:22:25.889Z","updated_at":"2026-05-28T06:02:09.083Z","avatar_url":"https://github.com/xchwarze.png","language":"JavaScript","funding_links":["https://www.patreon.com/xchwarze"],"categories":[],"sub_categories":[],"readme":"# Frieren: The micro-framework for security gadgets\n\n![Panel](assets/panel.png)\n\n## Description\n\nFrieren is a framework for running security tools on OpenWrt routers and Single Board Computers (SBCs). It provides a web panel with WiFi management, installable modules, an integrated terminal, and a package manager. The stack is a PHP backend API with a React frontend, designed to be lightweight enough for embedded devices while remaining extensible through third-party modules.\n\n## Features\n\n- **WiFi Management** — Create, edit, and remove wireless interfaces. Scan for networks, configure radios, edit raw UCI config.\n- **Module System** — Install, remove, and pin third-party modules from a remote repository. Modules load dynamically as UMD bundles.\n- **Package Manager** — Install and remove opkg packages directly from the web panel.\n- **Integrated Terminal** — Web-based terminal (ttyd) accessible from the panel.\n- **System Tools** — Dashboard with system stats, USB device listing, filesystem usage, syslog viewer, diagnostics.\n- **Extensible** — Scaffold new modules with `frieren-module-template`. PHP controller + React frontend per module.\n\n## Components\n\n- **[frieren-back](frieren-back/)** — PHP micro-framework. JSON POST API with session auth, CSRF, UCI config integration, and a mini ORM.\n- **[frieren-front](frieren-front/)** — React SPA (Vite, Wouter, Jotai, React Query). Supports dynamic UMD module loading.\n- **[frieren-module-template](frieren-module-template/)** — Scaffolding tool for developing third-party modules with shared dependencies via window globals.\n\n## Related Repositories\n\n- **[Frieren Modules](https://github.com/xchwarze/frieren-modules)**: Contains community-developed modules based on the `frieren-module-template`. This repository is a resource for users looking to extend the functionality of their Frieren installation with additional features.\n- **[Frieren Release](https://github.com/xchwarze/frieren-release)**: Hosts the installers for deploying precompiled versions of Frieren. This repository is ideal for users who wish to install Frieren quickly and easily without going through the build process.\n\n## Installation\n\nFrieren runs on OpenWrt (official builds, not forks). It can be installed via an automated script or compiled manually.\n\n### Quick Installation\n\nFor a quick and easy installation, execute the following command in your terminal. This script will handle all necessary configurations and setup steps:\n\n```bash\nwget -qO- https://raw.githubusercontent.com/xchwarze/frieren-release/master/install/install-openwrt.sh | sh\n```\n\n### Manual Compilation\n\nEach component within the Frieren project (`frieren-back`, `frieren-front` and `frieren-module-template`) has its own detailed `README.md` file with specific build and installation instructions. Please refer to these files in their respective directories for more detailed guidance.\n\n### Module Development\n\nUse `frieren-module-template` to scaffold new modules. Run `yarn wizard` to set up a new module, develop your feature, then `yarn build` to compile a UMD bundle. See the [module template README](frieren-module-template/README.md) for details.\n\n## License\n\nThis project is licensed under the PolyForm Noncommercial License 1.0.0.\n\nNon-commercial use is permitted. Commercial use is not permitted under this license.\nCommercial use requires a separate commercial license from the author.\n\nFor commercial licensing, contact: xchwarze@gmail.com\n\n## Contributing\n\nContributions welcome — new features, bug fixes, or modules. See each component's README for build instructions.\n\n## Authors\n\n- **Lead Developer**: DSR! - xchwarze@gmail.com\n\n## Support the Development\n\nIf you find Frieren useful, consider supporting development. Donations fund testing hardware and ongoing work. Send via Binance or join [Patreon](https://www.patreon.com/xchwarze) for exclusive updates and builds.\n\n[![patreon](assets/patreon.png)](https://www.patreon.com/xchwarze)\n![binance-qr](assets/binance-qr.png)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxchwarze%2Ffrieren","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fxchwarze%2Ffrieren","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxchwarze%2Ffrieren/lists"}