gitextract_fhz65cs7/ ├── .editorconfig ├── .github/ │ ├── CONTRIBUTING.md │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.md │ ├── ISSUE_TEMPLATE.md │ ├── LICENSE_HEADER │ ├── PULL_REQUEST_TEMPLATE.md │ └── workflows/ │ ├── build-docs.yml │ ├── build-mariadb.yml │ └── build-mysql.yml ├── .gitignore ├── 2fa.php ├── COPYING ├── README.md ├── SECURITY.md ├── actions/ │ ├── admin/ │ │ ├── index.html │ │ └── settings/ │ │ ├── 100.panel.php │ │ ├── 110.accounts.php │ │ ├── 120.system.php │ │ ├── 122.froxlorvhost.php │ │ ├── 125.cronjob.php │ │ ├── 130.webserver.php │ │ ├── 131.ssl.php │ │ ├── 135.fcgid.php │ │ ├── 136.phpfpm.php │ │ ├── 137.perl.php │ │ ├── 140.statistics.php │ │ ├── 150.mail.php │ │ ├── 155.ftpserver.php │ │ ├── 160.nameserver.php │ │ ├── 170.logger.php │ │ ├── 180.antispam.php │ │ ├── 210.security.php │ │ ├── 220.quota.php │ │ └── index.html │ └── index.html ├── admin_admins.php ├── admin_apcuinfo.php ├── admin_autoupdate.php ├── admin_configfiles.php ├── admin_cronjobs.php ├── admin_customers.php ├── admin_domains.php ├── admin_index.php ├── admin_ipsandports.php ├── admin_logger.php ├── admin_message.php ├── admin_mysqlserver.php ├── admin_opcacheinfo.php ├── admin_phpsettings.php ├── admin_plans.php ├── admin_settings.php ├── admin_templates.php ├── admin_traffic.php ├── admin_updates.php ├── api.php ├── api_keys.php ├── bin/ │ └── froxlor-cli ├── build.xml ├── composer.json ├── customer_domains.php ├── customer_email.php ├── customer_extras.php ├── customer_ftp.php ├── customer_index.php ├── customer_logger.php ├── customer_mysql.php ├── customer_traffic.php ├── dns_editor.php ├── doc/ │ ├── example/ │ │ ├── FroxlorAPI.php │ │ ├── create_customer.php │ │ ├── index.html │ │ └── list_functions.php │ └── index.html ├── error_report.php ├── index.php ├── install/ │ ├── froxlor.sql.php │ ├── index.html │ ├── install.php │ ├── updates/ │ │ ├── froxlor/ │ │ │ ├── index.html │ │ │ ├── update_2.0.inc.php │ │ │ ├── update_2.1.inc.php │ │ │ ├── update_2.2.inc.php │ │ │ └── update_2.3.inc.php │ │ ├── index.html │ │ └── preconfig/ │ │ ├── index.html │ │ ├── preconfig_2.0.inc.php │ │ ├── preconfig_2.1.inc.php │ │ ├── preconfig_2.2.inc.php │ │ └── preconfig_2.3.inc.php │ └── updatesql.php ├── lib/ │ ├── Froxlor/ │ │ ├── Ajax/ │ │ │ ├── Ajax.php │ │ │ ├── GlobalSearch.php │ │ │ └── index.html │ │ ├── Api/ │ │ │ ├── Api.php │ │ │ ├── ApiCommand.php │ │ │ ├── ApiParameter.php │ │ │ ├── Commands/ │ │ │ │ ├── Admins.php │ │ │ │ ├── Certificates.php │ │ │ │ ├── Cronjobs.php │ │ │ │ ├── Customers.php │ │ │ │ ├── DataDump.php │ │ │ │ ├── DirOptions.php │ │ │ │ ├── DirProtections.php │ │ │ │ ├── DomainZones.php │ │ │ │ ├── Domains.php │ │ │ │ ├── EmailAccounts.php │ │ │ │ ├── EmailDomains.php │ │ │ │ ├── EmailForwarders.php │ │ │ │ ├── EmailSender.php │ │ │ │ ├── Emails.php │ │ │ │ ├── FpmDaemons.php │ │ │ │ ├── Froxlor.php │ │ │ │ ├── Ftps.php │ │ │ │ ├── HostingPlans.php │ │ │ │ ├── IpsAndPorts.php │ │ │ │ ├── MysqlServer.php │ │ │ │ ├── Mysqls.php │ │ │ │ ├── PhpSettings.php │ │ │ │ ├── SshKeys.php │ │ │ │ ├── SubDomains.php │ │ │ │ ├── SysLog.php │ │ │ │ ├── Traffic.php │ │ │ │ └── index.html │ │ │ ├── FroxlorRPC.php │ │ │ ├── ResourceEntity.php │ │ │ ├── Response.php │ │ │ └── index.html │ │ ├── Bulk/ │ │ │ ├── BulkAction.php │ │ │ ├── DomainBulkAction.php │ │ │ └── index.html │ │ ├── Cli/ │ │ │ ├── CliCommand.php │ │ │ ├── ConfigDiff.php │ │ │ ├── ConfigServices.php │ │ │ ├── InstallCommand.php │ │ │ ├── MasterCron.php │ │ │ ├── PhpSessionclean.php │ │ │ ├── RunApiCommand.php │ │ │ ├── SwitchServerIp.php │ │ │ ├── UpdateCommand.php │ │ │ ├── UserCommand.php │ │ │ ├── ValidateAcmeWebroot.php │ │ │ ├── index.html │ │ │ └── install.functions.php │ │ ├── Config/ │ │ │ ├── ConfigDaemon.php │ │ │ ├── ConfigDisplay.php │ │ │ ├── ConfigParser.php │ │ │ ├── ConfigService.php │ │ │ └── index.html │ │ ├── Cron/ │ │ │ ├── CronConfig.php │ │ │ ├── Dns/ │ │ │ │ ├── Bind.php │ │ │ │ ├── DnsBase.php │ │ │ │ ├── PowerDNS.php │ │ │ │ └── index.html │ │ │ ├── Forkable.php │ │ │ ├── FroxlorCron.php │ │ │ ├── Http/ │ │ │ │ ├── Apache.php │ │ │ │ ├── ApacheFcgi.php │ │ │ │ ├── ConfigIO.php │ │ │ │ ├── DomainSSL.php │ │ │ │ ├── HttpConfigBase.php │ │ │ │ ├── LetsEncrypt/ │ │ │ │ │ ├── AcmeSh.php │ │ │ │ │ └── index.html │ │ │ │ ├── Nginx.php │ │ │ │ ├── NginxFcgi.php │ │ │ │ ├── Php/ │ │ │ │ │ ├── Fcgid.php │ │ │ │ │ ├── Fpm.php │ │ │ │ │ ├── PhpInterface.php │ │ │ │ │ └── index.html │ │ │ │ ├── WebserverBase.php │ │ │ │ └── index.html │ │ │ ├── Mail/ │ │ │ │ └── Rspamd.php │ │ │ ├── System/ │ │ │ │ ├── ExportCron.php │ │ │ │ ├── Extrausers.php │ │ │ │ ├── MailboxsizeCron.php │ │ │ │ ├── SshKeys.php │ │ │ │ ├── TasksCron.php │ │ │ │ └── index.html │ │ │ ├── TaskId.php │ │ │ ├── Traffic/ │ │ │ │ ├── ReportsCron.php │ │ │ │ ├── TrafficCron.php │ │ │ │ └── index.html │ │ │ └── index.html │ │ ├── CurrentUser.php │ │ ├── Customer/ │ │ │ ├── Customer.php │ │ │ └── index.html │ │ ├── Database/ │ │ │ ├── Database.php │ │ │ ├── DbManager.php │ │ │ ├── IntegrityCheck.php │ │ │ ├── Manager/ │ │ │ │ ├── DbManagerMySQL.php │ │ │ │ └── index.html │ │ │ └── index.html │ │ ├── Dns/ │ │ │ ├── Dns.php │ │ │ ├── DnsEntry.php │ │ │ ├── DnsZone.php │ │ │ ├── PowerDNS.php │ │ │ └── index.html │ │ ├── Domain/ │ │ │ ├── Domain.php │ │ │ ├── IpAddr.php │ │ │ └── index.html │ │ ├── ErrorBag.php │ │ ├── FileDir.php │ │ ├── Froxlor.php │ │ ├── FroxlorLogger.php │ │ ├── FroxlorTwoFactorAuth.php │ │ ├── Http/ │ │ │ ├── Directory.php │ │ │ ├── HttpClient.php │ │ │ ├── PhpConfig.php │ │ │ ├── RateLimiter.php │ │ │ ├── Statistics.php │ │ │ └── index.html │ │ ├── Idna/ │ │ │ ├── IdnaWrapper.php │ │ │ └── index.html │ │ ├── Install/ │ │ │ ├── AutoUpdate.php │ │ │ ├── Install/ │ │ │ │ └── Core.php │ │ │ ├── Install.php │ │ │ ├── Preconfig.php │ │ │ ├── Requirements.php │ │ │ └── Update.php │ │ ├── Language.php │ │ ├── MailLogParser.php │ │ ├── PhpHelper.php │ │ ├── SImExporter.php │ │ ├── Settings/ │ │ │ ├── FroxlorVhostSettings.php │ │ │ ├── Store.php │ │ │ └── index.html │ │ ├── Settings.php │ │ ├── System/ │ │ │ ├── Cronjob.php │ │ │ ├── Crypt.php │ │ │ ├── IPTools.php │ │ │ ├── Mailer.php │ │ │ ├── Markdown.php │ │ │ ├── MysqlHandler.php │ │ │ └── index.html │ │ ├── Traffic/ │ │ │ ├── Traffic.php │ │ │ └── index.html │ │ ├── UI/ │ │ │ ├── Callbacks/ │ │ │ │ ├── Admin.php │ │ │ │ ├── Customer.php │ │ │ │ ├── Dns.php │ │ │ │ ├── Domain.php │ │ │ │ ├── Email.php │ │ │ │ ├── Ftp.php │ │ │ │ ├── Impersonate.php │ │ │ │ ├── Mysql.php │ │ │ │ ├── PHPConf.php │ │ │ │ ├── ProgressBar.php │ │ │ │ ├── SSLCertificate.php │ │ │ │ ├── Style.php │ │ │ │ ├── SysLog.php │ │ │ │ ├── Text.php │ │ │ │ └── index.html │ │ │ ├── Collection.php │ │ │ ├── Data.php │ │ │ ├── Form.php │ │ │ ├── HTML.php │ │ │ ├── Linker.php │ │ │ ├── Listing.php │ │ │ ├── Pagination.php │ │ │ ├── Panel/ │ │ │ │ ├── CustomReflection.php │ │ │ │ ├── FroxlorTwig.php │ │ │ │ ├── UI.php │ │ │ │ └── index.html │ │ │ ├── Request.php │ │ │ ├── Response.php │ │ │ └── index.html │ │ ├── User.php │ │ ├── Validate/ │ │ │ ├── Check.php │ │ │ ├── Form/ │ │ │ │ ├── Data.php │ │ │ │ └── index.html │ │ │ ├── Form.php │ │ │ ├── Validate.php │ │ │ └── index.html │ │ └── index.html │ ├── ajax.php │ ├── config.example.inc.php │ ├── configfiles/ │ │ ├── bookworm.xml │ │ ├── bullseye.xml │ │ ├── focal.xml │ │ ├── index.html │ │ ├── jammy.xml │ │ ├── noble.xml │ │ └── trixie.xml │ ├── formfields/ │ │ ├── admin/ │ │ │ ├── admin/ │ │ │ │ ├── formfield.admin_add.php │ │ │ │ ├── formfield.admin_edit.php │ │ │ │ └── index.html │ │ │ ├── cronjobs/ │ │ │ │ ├── formfield.cronjobs_edit.php │ │ │ │ └── index.html │ │ │ ├── customer/ │ │ │ │ ├── formfield.customer_add.php │ │ │ │ ├── formfield.customer_edit.php │ │ │ │ └── index.html │ │ │ ├── domains/ │ │ │ │ ├── formfield.domains_add.php │ │ │ │ ├── formfield.domains_duplicate.php │ │ │ │ ├── formfield.domains_edit.php │ │ │ │ ├── formfield.domains_import.php │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── ipsandports/ │ │ │ │ ├── formfield.ipsandports_add.php │ │ │ │ ├── formfield.ipsandports_edit.php │ │ │ │ └── index.html │ │ │ ├── messages/ │ │ │ │ ├── formfield.messages_add.php │ │ │ │ └── index.html │ │ │ ├── mysqlserver/ │ │ │ │ ├── formfield.mysqlserver_add.php │ │ │ │ ├── formfield.mysqlserver_edit.php │ │ │ │ └── index.html │ │ │ ├── phpconfig/ │ │ │ │ ├── formfield.fpmconfig_add.php │ │ │ │ ├── formfield.fpmconfig_edit.php │ │ │ │ ├── formfield.phpconfig_add.php │ │ │ │ ├── formfield.phpconfig_edit.php │ │ │ │ └── index.html │ │ │ ├── plans/ │ │ │ │ ├── formfield.plans_add.php │ │ │ │ ├── formfield.plans_edit.php │ │ │ │ └── index.html │ │ │ ├── settings/ │ │ │ │ ├── formfield.settings_import.php │ │ │ │ ├── formfield.settings_mailtest.php │ │ │ │ └── index.html │ │ │ └── templates/ │ │ │ ├── formfield.filetemplate_add.php │ │ │ ├── formfield.filetemplate_edit.php │ │ │ ├── formfield.template_add.php │ │ │ ├── formfield.template_edit.php │ │ │ ├── index.html │ │ │ └── template.replacers.php │ │ ├── customer/ │ │ │ ├── domains/ │ │ │ │ ├── formfield.domains_add.php │ │ │ │ ├── formfield.domains_edit.php │ │ │ │ └── index.html │ │ │ ├── email/ │ │ │ │ ├── formfield.emails_accountchangepasswd.php │ │ │ │ ├── formfield.emails_accountchangequota.php │ │ │ │ ├── formfield.emails_add.php │ │ │ │ ├── formfield.emails_addaccount.php │ │ │ │ ├── formfield.emails_addforwarder.php │ │ │ │ ├── formfield.emails_addsender.php │ │ │ │ ├── formfield.emails_edit.php │ │ │ │ └── index.html │ │ │ ├── extras/ │ │ │ │ ├── formfield.export.php │ │ │ │ ├── formfield.htaccess_add.php │ │ │ │ ├── formfield.htaccess_edit.php │ │ │ │ ├── formfield.htpasswd_add.php │ │ │ │ ├── formfield.htpasswd_edit.php │ │ │ │ └── index.html │ │ │ ├── ftp/ │ │ │ │ ├── formfield.ftp_add.php │ │ │ │ ├── formfield.ftp_edit.php │ │ │ │ ├── formfield.ftp_ssh_add.php │ │ │ │ ├── formfield.ftp_ssh_edit.php │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── mysql/ │ │ │ ├── formfield.mysql_add.php │ │ │ ├── formfield.mysql_edit.php │ │ │ ├── formfield.mysql_global_user.php │ │ │ └── index.html │ │ ├── formfield.api_key.php │ │ ├── formfield.dns_add.php │ │ ├── formfield.domain_ssleditor.php │ │ ├── index.html │ │ └── install/ │ │ ├── formfield.install.php │ │ └── index.html │ ├── functions.php │ ├── index.html │ ├── init.php │ ├── navigation/ │ │ ├── 00.froxlor.main.php │ │ └── index.html │ ├── tablelisting/ │ │ ├── admin/ │ │ │ ├── index.html │ │ │ ├── tablelisting.admins.php │ │ │ ├── tablelisting.cronjobs.php │ │ │ ├── tablelisting.customers.php │ │ │ ├── tablelisting.domains.php │ │ │ ├── tablelisting.filetemplates.php │ │ │ ├── tablelisting.fpmconfigs.php │ │ │ ├── tablelisting.integrity.php │ │ │ ├── tablelisting.ipsandports.php │ │ │ ├── tablelisting.mailtemplates.php │ │ │ ├── tablelisting.mysqlserver.php │ │ │ ├── tablelisting.phpconfigs.php │ │ │ └── tablelisting.plans.php │ │ ├── customer/ │ │ │ ├── index.html │ │ │ ├── tablelisting.domains.php │ │ │ ├── tablelisting.emails.php │ │ │ ├── tablelisting.emails_overview.php │ │ │ ├── tablelisting.export.php │ │ │ ├── tablelisting.ftps.php │ │ │ ├── tablelisting.htaccess.php │ │ │ ├── tablelisting.htpasswd.php │ │ │ ├── tablelisting.mysqls.php │ │ │ └── tablelisting.sshkeys.php │ │ ├── index.html │ │ ├── tablelisting.apikeys.php │ │ ├── tablelisting.dns.php │ │ ├── tablelisting.sslcertificates.php │ │ └── tablelisting.syslog.php │ └── tables.inc.php ├── lng/ │ ├── ca.lng.php │ ├── cz.lng.php │ ├── de.lng.php │ ├── en.lng.php │ ├── es.lng.php │ ├── fr.lng.php │ ├── hu.lng.php │ ├── index.html │ ├── it.lng.php │ ├── nl.lng.php │ ├── pt.lng.php │ ├── se.lng.php │ ├── sk.lng.php │ └── zh_CN.lng.php ├── logfiles_viewer.php ├── logs/ │ └── index.html ├── package.json ├── phpcs.xml ├── phpdox.xml ├── phpmd.xml ├── phpunit.xml ├── ssl_certificates.php ├── ssl_editor.php ├── templates/ │ └── index.html ├── tests/ │ ├── Admins/ │ │ └── AdminsTest.php │ ├── Backup/ │ │ └── DataDumpTest.php │ ├── Bulk/ │ │ └── DomainBulkTest.php │ ├── Certificates/ │ │ └── CertificatesTest.php │ ├── Cron/ │ │ └── TaskIdTest.php │ ├── Cronjobs/ │ │ └── CronjobsTest.php │ ├── Customers/ │ │ ├── CustomersTest.php │ │ └── HostingPlansTest.php │ ├── DomainZones/ │ │ └── DomainZonesTest.php │ ├── Domains/ │ │ └── DomainsTest.php │ ├── Emails/ │ │ └── EmailsTest.php │ ├── Extras/ │ │ ├── DirOptionsTest.php │ │ └── DirProtectionsTest.php │ ├── Froxlor/ │ │ ├── FroxlorTest.php │ │ ├── IPToolsTest.php │ │ ├── SettingsTest.php │ │ ├── StoreTest.php │ │ └── ValidateTest.php │ ├── Ftps/ │ │ └── FtpsTest.php │ ├── Global/ │ │ ├── ApiParameterTest.php │ │ └── FroxlorRpcTest.php │ ├── IpsAndPorts/ │ │ └── IpsAndPortsTest.php │ ├── Mysqls/ │ │ ├── MysqlServerTest.php │ │ └── MysqlsTest.php │ ├── PhpAndFpm/ │ │ ├── FpmDaemonsTest.php │ │ └── PhpSettingsTest.php │ ├── SubDomains/ │ │ └── SubDomainsTest.php │ ├── Traffic/ │ │ └── TrafficTest.php │ └── bootstrap.php └── vite.config.js