├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── README.md ├── Xray ├── .gitignore ├── bin │ ├── Win-64 │ │ ├── geoip.dat │ │ ├── geosite.dat │ │ └── xray.exe │ ├── config.json │ ├── ips.csv │ ├── linux-64 │ │ ├── LICENSE │ │ ├── README.md │ │ ├── geoip.dat │ │ ├── geosite.dat │ │ └── xray │ └── linux-arm64 │ │ ├── LICENSE │ │ ├── README.md │ │ ├── geoip.dat │ │ ├── geosite.dat │ │ └── xray └── temp │ └── .gitignore ├── app ├── Console │ ├── Commands │ │ ├── HelloWorldCommand.php │ │ ├── ProcessIpCommand.php │ │ └── RunDnsUpdate.php │ └── Kernel.php ├── Exceptions │ └── Handler.php ├── Filament │ ├── Resources │ │ ├── OwnerResource.php │ │ ├── OwnerResource │ │ │ └── Pages │ │ │ │ ├── CreateOwner.php │ │ │ │ ├── EditOwner.php │ │ │ │ └── ListOwners.php │ │ ├── ProjectResource.php │ │ ├── ProjectResource │ │ │ └── Pages │ │ │ │ ├── CreateProject.php │ │ │ │ ├── EditProject.php │ │ │ │ └── ListProjects.php │ │ ├── ServerResource.php │ │ ├── ServerResource │ │ │ └── Pages │ │ │ │ ├── CreateServer.php │ │ │ │ ├── EditServer.php │ │ │ │ └── ListServers.php │ │ ├── UserResource.php │ │ ├── UserResource.php.old │ │ └── UserResource │ │ │ └── Pages │ │ │ ├── CreateUser.php │ │ │ ├── EditUser.php │ │ │ └── ListUsers.php │ └── Widgets │ │ └── ServersUsage.php ├── Http │ ├── Controllers │ │ ├── Controller.php │ │ └── TelegramWebhookController.php │ ├── Kernel.php │ └── Middleware │ │ ├── Authenticate.php │ │ ├── EncryptCookies.php │ │ ├── PreventRequestsDuringMaintenance.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustHosts.php │ │ ├── TrustProxies.php │ │ ├── ValidateSignature.php │ │ └── VerifyCsrfToken.php ├── Jobs │ ├── HandleTelegramMessage.php │ └── ProcessIpsJob.php ├── Models │ ├── Owner.php │ ├── Project.php │ ├── Server.php │ ├── Usage.php │ └── User.php ├── Policies │ └── ServerPolicy.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ ├── Filament │ │ └── AdminPanelProvider.php │ └── RouteServiceProvider.php └── Services │ ├── CloudflareApiService.php │ ├── DnsUpdateService.php │ └── SubHelper.php ├── artisan ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── cors.php ├── database.php ├── filesystems.php ├── hashing.php ├── logging.php ├── mail.php ├── queue.php ├── sanctum.php ├── services.php ├── session.php ├── telegram.php └── view.php ├── database ├── .gitignore ├── factories │ └── UserFactory.php ├── migrations │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2014_10_12_100000_create_password_reset_tokens_table.php │ ├── 2019_08_19_000000_create_failed_jobs_table.php │ ├── 2019_12_14_000001_create_personal_access_tokens_table.php │ ├── 2024_02_03_194652_create_owners_table.php │ ├── 2024_02_03_195020_create_projects_table.php │ ├── 2024_02_04_194511_create_servers_table.php │ ├── 2024_02_05_215029_add_inbound_stat_to_servers.php │ ├── 2024_03_04_231834_create_usage_table.php │ ├── 2024_03_29_181839_add_status_to_servers_table.php │ └── 2024_09_18_194426_create_jobs_table.php └── seeders │ └── DatabaseSeeder.php ├── package.json ├── phpunit.xml ├── public ├── .htaccess ├── css │ └── filament │ │ ├── filament │ │ └── app.css │ │ ├── forms │ │ └── forms.css │ │ └── support │ │ └── support.css ├── favicon.ico ├── index.php ├── js │ └── filament │ │ ├── filament │ │ ├── app.js │ │ └── echo.js │ │ ├── forms │ │ └── components │ │ │ ├── color-picker.js │ │ │ ├── date-time-picker.js │ │ │ ├── file-upload.js │ │ │ ├── key-value.js │ │ │ ├── markdown-editor.js │ │ │ ├── rich-editor.js │ │ │ ├── select.js │ │ │ ├── tags-input.js │ │ │ └── textarea.js │ │ ├── notifications │ │ └── notifications.js │ │ ├── support │ │ ├── async-alpine.js │ │ └── support.js │ │ ├── tables │ │ └── components │ │ │ └── table.js │ │ └── widgets │ │ └── components │ │ ├── chart.js │ │ └── stats-overview │ │ └── stat │ │ └── chart.js ├── robots.txt └── xray.jpg ├── resources ├── css │ └── app.css ├── js │ ├── app.js │ └── bootstrap.js └── views │ └── welcome.blade.php ├── routes ├── api.php ├── channels.php ├── console.php └── web.php ├── storage ├── SampleBPB.json ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore ├── leastSample-IranDir.json ├── logs │ └── .gitignore └── magic.json ├── tests ├── CreatesApplication.php ├── Feature │ └── ExampleTest.php ├── TestCase.php └── Unit │ └── ExampleTest.php └── vite.config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/README.md -------------------------------------------------------------------------------- /Xray/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/Xray/.gitignore -------------------------------------------------------------------------------- /Xray/bin/Win-64/geoip.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/Xray/bin/Win-64/geoip.dat -------------------------------------------------------------------------------- /Xray/bin/Win-64/geosite.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/Xray/bin/Win-64/geosite.dat -------------------------------------------------------------------------------- /Xray/bin/Win-64/xray.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/Xray/bin/Win-64/xray.exe -------------------------------------------------------------------------------- /Xray/bin/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/Xray/bin/config.json -------------------------------------------------------------------------------- /Xray/bin/ips.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/Xray/bin/ips.csv -------------------------------------------------------------------------------- /Xray/bin/linux-64/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/Xray/bin/linux-64/LICENSE -------------------------------------------------------------------------------- /Xray/bin/linux-64/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/Xray/bin/linux-64/README.md -------------------------------------------------------------------------------- /Xray/bin/linux-64/geoip.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/Xray/bin/linux-64/geoip.dat -------------------------------------------------------------------------------- /Xray/bin/linux-64/geosite.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/Xray/bin/linux-64/geosite.dat -------------------------------------------------------------------------------- /Xray/bin/linux-64/xray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/Xray/bin/linux-64/xray -------------------------------------------------------------------------------- /Xray/bin/linux-arm64/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/Xray/bin/linux-arm64/LICENSE -------------------------------------------------------------------------------- /Xray/bin/linux-arm64/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/Xray/bin/linux-arm64/README.md -------------------------------------------------------------------------------- /Xray/bin/linux-arm64/geoip.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/Xray/bin/linux-arm64/geoip.dat -------------------------------------------------------------------------------- /Xray/bin/linux-arm64/geosite.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/Xray/bin/linux-arm64/geosite.dat -------------------------------------------------------------------------------- /Xray/bin/linux-arm64/xray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/Xray/bin/linux-arm64/xray -------------------------------------------------------------------------------- /Xray/temp/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /app/Console/Commands/HelloWorldCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/app/Console/Commands/HelloWorldCommand.php -------------------------------------------------------------------------------- /app/Console/Commands/ProcessIpCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/app/Console/Commands/ProcessIpCommand.php -------------------------------------------------------------------------------- /app/Console/Commands/RunDnsUpdate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/app/Console/Commands/RunDnsUpdate.php -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Filament/Resources/OwnerResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/app/Filament/Resources/OwnerResource.php -------------------------------------------------------------------------------- /app/Filament/Resources/OwnerResource/Pages/CreateOwner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/app/Filament/Resources/OwnerResource/Pages/CreateOwner.php -------------------------------------------------------------------------------- /app/Filament/Resources/OwnerResource/Pages/EditOwner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/app/Filament/Resources/OwnerResource/Pages/EditOwner.php -------------------------------------------------------------------------------- /app/Filament/Resources/OwnerResource/Pages/ListOwners.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/app/Filament/Resources/OwnerResource/Pages/ListOwners.php -------------------------------------------------------------------------------- /app/Filament/Resources/ProjectResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/app/Filament/Resources/ProjectResource.php -------------------------------------------------------------------------------- /app/Filament/Resources/ProjectResource/Pages/CreateProject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/app/Filament/Resources/ProjectResource/Pages/CreateProject.php -------------------------------------------------------------------------------- /app/Filament/Resources/ProjectResource/Pages/EditProject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/app/Filament/Resources/ProjectResource/Pages/EditProject.php -------------------------------------------------------------------------------- /app/Filament/Resources/ProjectResource/Pages/ListProjects.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/app/Filament/Resources/ProjectResource/Pages/ListProjects.php -------------------------------------------------------------------------------- /app/Filament/Resources/ServerResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/app/Filament/Resources/ServerResource.php -------------------------------------------------------------------------------- /app/Filament/Resources/ServerResource/Pages/CreateServer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/app/Filament/Resources/ServerResource/Pages/CreateServer.php -------------------------------------------------------------------------------- /app/Filament/Resources/ServerResource/Pages/EditServer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/app/Filament/Resources/ServerResource/Pages/EditServer.php -------------------------------------------------------------------------------- /app/Filament/Resources/ServerResource/Pages/ListServers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/app/Filament/Resources/ServerResource/Pages/ListServers.php -------------------------------------------------------------------------------- /app/Filament/Resources/UserResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/app/Filament/Resources/UserResource.php -------------------------------------------------------------------------------- /app/Filament/Resources/UserResource.php.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/app/Filament/Resources/UserResource.php.old -------------------------------------------------------------------------------- /app/Filament/Resources/UserResource/Pages/CreateUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/app/Filament/Resources/UserResource/Pages/CreateUser.php -------------------------------------------------------------------------------- /app/Filament/Resources/UserResource/Pages/EditUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/app/Filament/Resources/UserResource/Pages/EditUser.php -------------------------------------------------------------------------------- /app/Filament/Resources/UserResource/Pages/ListUsers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/app/Filament/Resources/UserResource/Pages/ListUsers.php -------------------------------------------------------------------------------- /app/Filament/Widgets/ServersUsage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/app/Filament/Widgets/ServersUsage.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/TelegramWebhookController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/app/Http/Controllers/TelegramWebhookController.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/PreventRequestsDuringMaintenance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/app/Http/Middleware/PreventRequestsDuringMaintenance.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustHosts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/app/Http/Middleware/TrustHosts.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /app/Http/Middleware/ValidateSignature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/app/Http/Middleware/ValidateSignature.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Jobs/HandleTelegramMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/app/Jobs/HandleTelegramMessage.php -------------------------------------------------------------------------------- /app/Jobs/ProcessIpsJob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/app/Jobs/ProcessIpsJob.php -------------------------------------------------------------------------------- /app/Models/Owner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/app/Models/Owner.php -------------------------------------------------------------------------------- /app/Models/Project.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/app/Models/Project.php -------------------------------------------------------------------------------- /app/Models/Server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/app/Models/Server.php -------------------------------------------------------------------------------- /app/Models/Usage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/app/Models/Usage.php -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/app/Models/User.php -------------------------------------------------------------------------------- /app/Policies/ServerPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/app/Policies/ServerPolicy.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/Filament/AdminPanelProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/app/Providers/Filament/AdminPanelProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /app/Services/CloudflareApiService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/app/Services/CloudflareApiService.php -------------------------------------------------------------------------------- /app/Services/DnsUpdateService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/app/Services/DnsUpdateService.php -------------------------------------------------------------------------------- /app/Services/SubHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/app/Services/SubHelper.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/cors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/config/cors.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/config/database.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/config/hashing.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/sanctum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/config/sanctum.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/config/session.php -------------------------------------------------------------------------------- /config/telegram.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/config/telegram.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/config/view.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/database/migrations/2014_10_12_000000_create_users_table.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_100000_create_password_reset_tokens_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/database/migrations/2014_10_12_100000_create_password_reset_tokens_table.php -------------------------------------------------------------------------------- /database/migrations/2019_08_19_000000_create_failed_jobs_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/database/migrations/2019_08_19_000000_create_failed_jobs_table.php -------------------------------------------------------------------------------- /database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php -------------------------------------------------------------------------------- /database/migrations/2024_02_03_194652_create_owners_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/database/migrations/2024_02_03_194652_create_owners_table.php -------------------------------------------------------------------------------- /database/migrations/2024_02_03_195020_create_projects_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/database/migrations/2024_02_03_195020_create_projects_table.php -------------------------------------------------------------------------------- /database/migrations/2024_02_04_194511_create_servers_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/database/migrations/2024_02_04_194511_create_servers_table.php -------------------------------------------------------------------------------- /database/migrations/2024_02_05_215029_add_inbound_stat_to_servers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/database/migrations/2024_02_05_215029_add_inbound_stat_to_servers.php -------------------------------------------------------------------------------- /database/migrations/2024_03_04_231834_create_usage_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/database/migrations/2024_03_04_231834_create_usage_table.php -------------------------------------------------------------------------------- /database/migrations/2024_03_29_181839_add_status_to_servers_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/database/migrations/2024_03_29_181839_add_status_to_servers_table.php -------------------------------------------------------------------------------- /database/migrations/2024_09_18_194426_create_jobs_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/database/migrations/2024_09_18_194426_create_jobs_table.php -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/phpunit.xml -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/css/filament/filament/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/public/css/filament/filament/app.css -------------------------------------------------------------------------------- /public/css/filament/forms/forms.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/public/css/filament/forms/forms.css -------------------------------------------------------------------------------- /public/css/filament/support/support.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/public/css/filament/support/support.css -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/public/index.php -------------------------------------------------------------------------------- /public/js/filament/filament/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/public/js/filament/filament/app.js -------------------------------------------------------------------------------- /public/js/filament/filament/echo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/public/js/filament/filament/echo.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/color-picker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/public/js/filament/forms/components/color-picker.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/date-time-picker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/public/js/filament/forms/components/date-time-picker.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/file-upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/public/js/filament/forms/components/file-upload.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/key-value.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/public/js/filament/forms/components/key-value.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/markdown-editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/public/js/filament/forms/components/markdown-editor.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/rich-editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/public/js/filament/forms/components/rich-editor.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/public/js/filament/forms/components/select.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/tags-input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/public/js/filament/forms/components/tags-input.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/textarea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/public/js/filament/forms/components/textarea.js -------------------------------------------------------------------------------- /public/js/filament/notifications/notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/public/js/filament/notifications/notifications.js -------------------------------------------------------------------------------- /public/js/filament/support/async-alpine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/public/js/filament/support/async-alpine.js -------------------------------------------------------------------------------- /public/js/filament/support/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/public/js/filament/support/support.js -------------------------------------------------------------------------------- /public/js/filament/tables/components/table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/public/js/filament/tables/components/table.js -------------------------------------------------------------------------------- /public/js/filament/widgets/components/chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/public/js/filament/widgets/components/chart.js -------------------------------------------------------------------------------- /public/js/filament/widgets/components/stats-overview/stat/chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/public/js/filament/widgets/components/stats-overview/stat/chart.js -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /public/xray.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/public/xray.jpg -------------------------------------------------------------------------------- /resources/css/app.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- 1 | import './bootstrap'; 2 | -------------------------------------------------------------------------------- /resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/resources/js/bootstrap.js -------------------------------------------------------------------------------- /resources/views/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/resources/views/welcome.blade.php -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/routes/api.php -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/routes/channels.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/routes/web.php -------------------------------------------------------------------------------- /storage/SampleBPB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/storage/SampleBPB.json -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/storage/framework/.gitignore -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/leastSample-IranDir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/storage/leastSample-IranDir.json -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/magic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/storage/magic.json -------------------------------------------------------------------------------- /tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/tests/CreatesApplication.php -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XRaySup/XrayServerManagement/HEAD/vite.config.js --------------------------------------------------------------------------------