├── .version ├── favicon.gif ├── favicon.ico ├── .gitattributes ├── robots.txt ├── languages └── index.php ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── HELP.yml │ └── BUG.yml └── CONTRIBUTING.md ├── default ├── fonts │ ├── cascadia-mono │ │ ├── cascadia-mono.woff2 │ │ └── cascadia-mono.css │ └── bootstrap-icons │ │ ├── bootstrap-icons.woff │ │ └── bootstrap-icons.woff2 ├── email │ ├── 2fa-code.txt │ ├── new-password.txt │ └── lost-password.txt ├── js │ ├── codemirror │ │ ├── README.md │ │ ├── rollup.config.mjs │ │ ├── package.json │ │ └── src │ │ │ ├── index.html │ │ │ └── languages │ │ │ └── config.js │ ├── jquery-ui │ │ ├── images │ │ │ ├── ui-icons_444444_256x240.png │ │ │ ├── ui-icons_555555_256x240.png │ │ │ ├── ui-icons_777620_256x240.png │ │ │ ├── ui-icons_777777_256x240.png │ │ │ ├── ui-icons_cc0000_256x240.png │ │ │ └── ui-icons_ffffff_256x240.png │ │ ├── LICENSE.txt │ │ └── package.json │ ├── components │ │ ├── tooltip.js │ │ ├── popover.js │ │ ├── modal.js │ │ ├── loading.js │ │ ├── confirmation.js │ │ ├── ajax.js │ │ └── console.js │ ├── navigation.js │ ├── ajax.js │ └── statistics.js ├── admin │ ├── modules │ │ ├── installing.php │ │ ├── empty.php │ │ ├── errors │ │ │ ├── empty.php │ │ │ └── list.php │ │ ├── repository │ │ │ └── empty.php │ │ └── info.php │ ├── users │ │ ├── empty.php │ │ ├── create.php │ │ ├── edit │ │ │ ├── settings.php │ │ │ └── account.php │ │ ├── list.php │ │ └── edit.php │ ├── themes │ │ └── empty.php │ └── themes.php ├── css │ ├── components │ │ ├── debug.css │ │ ├── themes.css │ │ ├── console.css │ │ ├── module-info.css │ │ └── file-tree.css │ ├── login.css │ └── global.css ├── functions.php ├── footer.php ├── assets │ └── systems │ │ └── ubuntu.svg ├── server │ ├── console.php │ ├── reboot.php │ └── packages.php ├── error │ ├── module_empty.php │ ├── module.php │ └── permissions.php ├── icons.json ├── modal.php └── module.php ├── classes ├── Modules │ ├── Installer.class.php │ ├── ModuleAuthor.class.php │ └── ModuleError.class.php ├── Installer │ ├── InstallerFactory.class.php │ └── Installer.class.php ├── System │ ├── HookParameters.class.php │ ├── CoreAdmin.class.php │ ├── Update.class.php │ └── Utils.class.php ├── Security │ └── Encryption.class.php ├── Network │ ├── Request.class.php │ ├── Route.class.php │ ├── Response.class.php │ ├── ResponseFactory.class.php │ ├── RequestFactory.class.php │ └── Router.class.php ├── Templating │ └── TemplateNavigation.class.php ├── Hardware │ ├── NetworkState.enum.php │ ├── NetworkFamily.enum.php │ ├── NetworkAddress.class.php │ ├── PhysicalDrives.class.php │ ├── Memory.class.php │ ├── NetworkFlag.enum.php │ ├── NetworkInterface.class.php │ └── NetworkInterfaces.class.php ├── Accounting │ ├── Session.class.php │ └── Auth.class.php ├── UI │ ├── Button.class.php │ ├── Modal.class.php │ └── Icon.class.php ├── Storage │ ├── Database.class.php │ └── PropertiesCache.class.php └── Localization │ └── I18N.class.php ├── libraries ├── Sepia │ └── PoParser │ │ ├── Exception │ │ └── ParseException.php │ │ ├── Catalog │ │ ├── Catalog.php │ │ ├── Header.php │ │ ├── EntryFactory.php │ │ └── CatalogArray.php │ │ └── SourceHandler │ │ ├── SourceHandler.php │ │ ├── StringSource.php │ │ └── FileSystem.php ├── skoerfgen │ ├── ACMECert.php │ ├── alpn_responder.js │ ├── composer.json │ ├── LICENSE.md │ └── src │ │ └── ACME_Exception.php ├── Markdown │ ├── composer.json │ └── LICENSE.txt ├── Parsedown │ ├── composer.json │ └── LICENSE.txt └── PHPMailer │ ├── Exception.php │ └── OAuth.php ├── .gitignore ├── handler ├── server │ ├── services.modal.php │ ├── settings.php │ ├── reboot.php │ ├── network.php │ ├── logs.php │ └── server.php ├── settings.php └── settings │ ├── default.php │ └── security.php ├── index.php ├── LICENSE └── .htaccess /.version: -------------------------------------------------------------------------------- 1 | 1.0.4 -------------------------------------------------------------------------------- /favicon.gif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: -------------------------------------------------------------------------------- /languages/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: fruithost 2 | patreon: fruithost 3 | custom: ['https://paypal.me/debitdirect'] 4 | -------------------------------------------------------------------------------- /default/fonts/cascadia-mono/cascadia-mono.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fruithost/Panel/HEAD/default/fonts/cascadia-mono/cascadia-mono.woff2 -------------------------------------------------------------------------------- /default/email/2fa-code.txt: -------------------------------------------------------------------------------- 1 | Hey $USERNAME, 2 | 3 | here is your 2FA Code for your login request: 4 | $CODE 5 | 6 | Thanks, 7 | 8 | The fruithost Team -------------------------------------------------------------------------------- /default/fonts/bootstrap-icons/bootstrap-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fruithost/Panel/HEAD/default/fonts/bootstrap-icons/bootstrap-icons.woff -------------------------------------------------------------------------------- /default/fonts/bootstrap-icons/bootstrap-icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fruithost/Panel/HEAD/default/fonts/bootstrap-icons/bootstrap-icons.woff2 -------------------------------------------------------------------------------- /default/js/codemirror/README.md: -------------------------------------------------------------------------------- 1 | # How to Build? 2 | 3 | > npm install 4 | > npm start 5 | 6 | The builded editor will be bundled on `build/bundle.js`. -------------------------------------------------------------------------------- /classes/Modules/Installer.class.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /default/js/jquery-ui/images/ui-icons_444444_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fruithost/Panel/HEAD/default/js/jquery-ui/images/ui-icons_444444_256x240.png -------------------------------------------------------------------------------- /default/js/jquery-ui/images/ui-icons_555555_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fruithost/Panel/HEAD/default/js/jquery-ui/images/ui-icons_555555_256x240.png -------------------------------------------------------------------------------- /default/js/jquery-ui/images/ui-icons_777620_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fruithost/Panel/HEAD/default/js/jquery-ui/images/ui-icons_777620_256x240.png -------------------------------------------------------------------------------- /default/js/jquery-ui/images/ui-icons_777777_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fruithost/Panel/HEAD/default/js/jquery-ui/images/ui-icons_777777_256x240.png -------------------------------------------------------------------------------- /default/js/jquery-ui/images/ui-icons_cc0000_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fruithost/Panel/HEAD/default/js/jquery-ui/images/ui-icons_cc0000_256x240.png -------------------------------------------------------------------------------- /default/js/jquery-ui/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fruithost/Panel/HEAD/default/js/jquery-ui/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /libraries/Sepia/PoParser/Exception/ParseException.php: -------------------------------------------------------------------------------- 1 | 10 |
11 | 14 |-------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /handler/settings.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /default/admin/modules/installing.php: -------------------------------------------------------------------------------- 1 | 10 |