├── .dockerignore ├── .gitattributes ├── .gitignore ├── HTB Updates Discord Bot.sln ├── HTB Updates Discord Bot ├── Dockerfile ├── HTB Updates Discord Bot.csproj ├── LoggingManager.cs ├── Modules │ ├── ConfigModule.cs │ ├── ExtraModule.cs │ ├── GeneralModule.cs │ └── OwnerModule.cs ├── ProfileUpdater.cs ├── Program.cs ├── ReleasesChecker.cs ├── ShoutboxListener.cs ├── SolvesChecker.cs └── appsettings.json.sample ├── HTB Updates Shared Resources ├── DatabaseContext.cs ├── DatabaseContextFactory.cs ├── Exceptions.cs ├── Files │ ├── UbuntuMono-Bold.ttf │ ├── UbuntuMono-Regular.ttf │ ├── card.png │ ├── frame.png │ ├── linux.png │ ├── patreon.png │ ├── root.png │ ├── user.png │ └── win.png ├── HTB Updates Shared Resources.csproj ├── Managers │ └── ImageGeneration.cs ├── Migrations │ ├── 20210420153422_Init.Designer.cs │ ├── 20210420153422_Init.cs │ ├── 20210420184715_ChallCat.Designer.cs │ ├── 20210420184715_ChallCat.cs │ ├── 20210420185615_Giveup.Designer.cs │ ├── 20210420185615_Giveup.cs │ ├── 20210423123723_QuickFix.Designer.cs │ ├── 20210423123723_QuickFix.cs │ ├── 20210424161846_LastUpdateFix.Designer.cs │ ├── 20210424161846_LastUpdateFix.cs │ ├── 20210501125219_Verify.Designer.cs │ ├── 20210501125219_Verify.cs │ ├── 20210504123044_Score.Designer.cs │ ├── 20210504123044_Score.cs │ ├── 20210930153752_Update.Designer.cs │ ├── 20210930153752_Update.cs │ ├── 20220530111245_optional.Designer.cs │ ├── 20220530111245_optional.cs │ ├── 20220801082239_MessageNewMembers.Designer.cs │ ├── 20220801082239_MessageNewMembers.cs │ ├── 20220803105501_Supporters.Designer.cs │ ├── 20220803105501_Supporters.cs │ ├── 20221201191335_GuildUser.Designer.cs │ ├── 20221201191335_GuildUser.cs │ ├── 20221201201137_GuildUserOption.Designer.cs │ ├── 20221201201137_GuildUserOption.cs │ ├── 20221201201231_GuildUserSql.Designer.cs │ ├── 20221201201231_GuildUserSql.cs │ ├── 20221201202113_RemovedDiscordUserFields.Designer.cs │ ├── 20221201202113_RemovedDiscordUserFields.cs │ ├── 20221201202303_RemovedDiscordUserFieldsSql.Designer.cs │ ├── 20221201202303_RemovedDiscordUserFieldsSql.cs │ ├── 20221202084440_FinalGuildMigration.Designer.cs │ ├── 20221202084440_FinalGuildMigration.cs │ ├── 20221202171647_NoSupporter.Designer.cs │ ├── 20221202171647_NoSupporter.cs │ ├── 20230305154125_Border.Designer.cs │ ├── 20230305154125_Border.cs │ └── DatabaseContextModelSnapshot.cs ├── Models │ ├── Api │ │ └── UnreleasedMachine.cs │ ├── Database │ │ ├── DiscordGuild.cs │ │ ├── DiscordUser.cs │ │ ├── GuildUser.cs │ │ └── HTBUser.cs │ └── Shared │ │ └── Solve.cs └── Services │ ├── HTBApiV1Manager.cs │ └── HTBApiV4Service.cs ├── README.md ├── docker-compose.yml ├── htb_updates_backend ├── Controllers │ ├── AuthController.cs │ └── CustomizationController.cs ├── Dockerfile ├── Program.cs ├── appsettings.json.sample └── htb_updates_backend.csproj └── htb_updates_frontend ├── .gitignore ├── .vscode └── launch.json ├── Dockerfile ├── htb_updates_frontend.esproj ├── nginx.conf ├── nuget.config ├── package-lock.json ├── package.json ├── public ├── border.png ├── borderless.png ├── favicon.ico ├── htb.png ├── index.html ├── link.png ├── logo192.png ├── logo512.png ├── machine_announcement.png ├── manifest.json ├── robots.txt ├── setup.png ├── solve.png └── solve_announcement.png ├── src ├── App.tsx ├── contexts │ └── AuthProvider.tsx ├── hooks │ └── useApi.ts ├── index.css ├── index.tsx ├── pages │ ├── Callback.tsx │ ├── Customization.tsx │ └── Home.tsx ├── react-app-env.d.ts ├── reportWebVitals.ts ├── setupProxy.js └── setupTests.ts └── tsconfig.json /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/.gitignore -------------------------------------------------------------------------------- /HTB Updates Discord Bot.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/HTB Updates Discord Bot.sln -------------------------------------------------------------------------------- /HTB Updates Discord Bot/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/HTB Updates Discord Bot/Dockerfile -------------------------------------------------------------------------------- /HTB Updates Discord Bot/HTB Updates Discord Bot.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/HTB Updates Discord Bot/HTB Updates Discord Bot.csproj -------------------------------------------------------------------------------- /HTB Updates Discord Bot/LoggingManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/HTB Updates Discord Bot/LoggingManager.cs -------------------------------------------------------------------------------- /HTB Updates Discord Bot/Modules/ConfigModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/HTB Updates Discord Bot/Modules/ConfigModule.cs -------------------------------------------------------------------------------- /HTB Updates Discord Bot/Modules/ExtraModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/HTB Updates Discord Bot/Modules/ExtraModule.cs -------------------------------------------------------------------------------- /HTB Updates Discord Bot/Modules/GeneralModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/HTB Updates Discord Bot/Modules/GeneralModule.cs -------------------------------------------------------------------------------- /HTB Updates Discord Bot/Modules/OwnerModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/HTB Updates Discord Bot/Modules/OwnerModule.cs -------------------------------------------------------------------------------- /HTB Updates Discord Bot/ProfileUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/HTB Updates Discord Bot/ProfileUpdater.cs -------------------------------------------------------------------------------- /HTB Updates Discord Bot/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/HTB Updates Discord Bot/Program.cs -------------------------------------------------------------------------------- /HTB Updates Discord Bot/ReleasesChecker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/HTB Updates Discord Bot/ReleasesChecker.cs -------------------------------------------------------------------------------- /HTB Updates Discord Bot/ShoutboxListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/HTB Updates Discord Bot/ShoutboxListener.cs -------------------------------------------------------------------------------- /HTB Updates Discord Bot/SolvesChecker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/HTB Updates Discord Bot/SolvesChecker.cs -------------------------------------------------------------------------------- /HTB Updates Discord Bot/appsettings.json.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/HTB Updates Discord Bot/appsettings.json.sample -------------------------------------------------------------------------------- /HTB Updates Shared Resources/DatabaseContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/HTB Updates Shared Resources/DatabaseContext.cs -------------------------------------------------------------------------------- /HTB Updates Shared Resources/DatabaseContextFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/HTB Updates Shared Resources/DatabaseContextFactory.cs -------------------------------------------------------------------------------- /HTB Updates Shared Resources/Exceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/HTB Updates Shared Resources/Exceptions.cs -------------------------------------------------------------------------------- /HTB Updates Shared Resources/Files/UbuntuMono-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/HTB Updates Shared Resources/Files/UbuntuMono-Bold.ttf -------------------------------------------------------------------------------- /HTB Updates Shared Resources/Files/UbuntuMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/HTB Updates Shared Resources/Files/UbuntuMono-Regular.ttf -------------------------------------------------------------------------------- /HTB Updates Shared Resources/Files/card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/HTB Updates Shared Resources/Files/card.png -------------------------------------------------------------------------------- /HTB Updates Shared Resources/Files/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/HTB Updates Shared Resources/Files/frame.png -------------------------------------------------------------------------------- /HTB Updates Shared Resources/Files/linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/HTB Updates Shared Resources/Files/linux.png -------------------------------------------------------------------------------- /HTB Updates Shared Resources/Files/patreon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/HTB Updates Shared Resources/Files/patreon.png -------------------------------------------------------------------------------- /HTB Updates Shared Resources/Files/root.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/HTB Updates Shared Resources/Files/root.png -------------------------------------------------------------------------------- /HTB Updates Shared Resources/Files/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/HTB Updates Shared Resources/Files/user.png -------------------------------------------------------------------------------- /HTB Updates Shared Resources/Files/win.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/HTB Updates Shared Resources/Files/win.png -------------------------------------------------------------------------------- /HTB Updates Shared Resources/HTB Updates Shared Resources.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/HTB Updates Shared Resources/HTB Updates Shared Resources.csproj -------------------------------------------------------------------------------- /HTB Updates Shared Resources/Managers/ImageGeneration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/HTB Updates Shared Resources/Managers/ImageGeneration.cs -------------------------------------------------------------------------------- /HTB Updates Shared Resources/Migrations/20210420153422_Init.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/HTB Updates Shared Resources/Migrations/20210420153422_Init.Designer.cs -------------------------------------------------------------------------------- /HTB Updates Shared Resources/Migrations/20210420153422_Init.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/HTB Updates Shared Resources/Migrations/20210420153422_Init.cs -------------------------------------------------------------------------------- /HTB Updates Shared Resources/Migrations/20210420184715_ChallCat.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/HTB Updates Shared Resources/Migrations/20210420184715_ChallCat.Designer.cs -------------------------------------------------------------------------------- /HTB Updates Shared Resources/Migrations/20210420184715_ChallCat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/HTB Updates Shared Resources/Migrations/20210420184715_ChallCat.cs -------------------------------------------------------------------------------- /HTB Updates Shared Resources/Migrations/20210420185615_Giveup.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/HTB Updates Shared Resources/Migrations/20210420185615_Giveup.Designer.cs -------------------------------------------------------------------------------- /HTB Updates Shared Resources/Migrations/20210420185615_Giveup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/HTB Updates Shared Resources/Migrations/20210420185615_Giveup.cs -------------------------------------------------------------------------------- /HTB Updates Shared Resources/Migrations/20210423123723_QuickFix.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/HTB Updates Shared Resources/Migrations/20210423123723_QuickFix.Designer.cs -------------------------------------------------------------------------------- /HTB Updates Shared Resources/Migrations/20210423123723_QuickFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/HTB Updates Shared Resources/Migrations/20210423123723_QuickFix.cs -------------------------------------------------------------------------------- /HTB Updates Shared Resources/Migrations/20210424161846_LastUpdateFix.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/HTB Updates Shared Resources/Migrations/20210424161846_LastUpdateFix.Designer.cs -------------------------------------------------------------------------------- /HTB Updates Shared Resources/Migrations/20210424161846_LastUpdateFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/HTB Updates Shared Resources/Migrations/20210424161846_LastUpdateFix.cs -------------------------------------------------------------------------------- /HTB Updates Shared Resources/Migrations/20210501125219_Verify.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/HTB Updates Shared Resources/Migrations/20210501125219_Verify.Designer.cs -------------------------------------------------------------------------------- /HTB Updates Shared Resources/Migrations/20210501125219_Verify.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/HTB Updates Shared Resources/Migrations/20210501125219_Verify.cs -------------------------------------------------------------------------------- /HTB Updates Shared Resources/Migrations/20210504123044_Score.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/HTB Updates Shared Resources/Migrations/20210504123044_Score.Designer.cs -------------------------------------------------------------------------------- /HTB Updates Shared Resources/Migrations/20210504123044_Score.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/HTB Updates Shared Resources/Migrations/20210504123044_Score.cs -------------------------------------------------------------------------------- /HTB Updates Shared Resources/Migrations/20210930153752_Update.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/HTB Updates Shared Resources/Migrations/20210930153752_Update.Designer.cs -------------------------------------------------------------------------------- /HTB Updates Shared Resources/Migrations/20210930153752_Update.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/HTB Updates Shared Resources/Migrations/20210930153752_Update.cs -------------------------------------------------------------------------------- /HTB Updates Shared Resources/Migrations/20220530111245_optional.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/HTB Updates Shared Resources/Migrations/20220530111245_optional.Designer.cs -------------------------------------------------------------------------------- /HTB Updates Shared Resources/Migrations/20220530111245_optional.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/HTB Updates Shared Resources/Migrations/20220530111245_optional.cs -------------------------------------------------------------------------------- /HTB Updates Shared Resources/Migrations/20220801082239_MessageNewMembers.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/HTB Updates Shared Resources/Migrations/20220801082239_MessageNewMembers.Designer.cs -------------------------------------------------------------------------------- /HTB Updates Shared Resources/Migrations/20220801082239_MessageNewMembers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/HTB Updates Shared Resources/Migrations/20220801082239_MessageNewMembers.cs -------------------------------------------------------------------------------- /HTB Updates Shared Resources/Migrations/20220803105501_Supporters.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/HTB Updates Shared Resources/Migrations/20220803105501_Supporters.Designer.cs -------------------------------------------------------------------------------- /HTB Updates Shared Resources/Migrations/20220803105501_Supporters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/HTB Updates Shared Resources/Migrations/20220803105501_Supporters.cs -------------------------------------------------------------------------------- /HTB Updates Shared Resources/Migrations/20221201191335_GuildUser.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/HTB Updates Shared Resources/Migrations/20221201191335_GuildUser.Designer.cs -------------------------------------------------------------------------------- /HTB Updates Shared Resources/Migrations/20221201191335_GuildUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/HTB Updates Shared Resources/Migrations/20221201191335_GuildUser.cs -------------------------------------------------------------------------------- /HTB Updates Shared Resources/Migrations/20221201201137_GuildUserOption.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/HTB Updates Shared Resources/Migrations/20221201201137_GuildUserOption.Designer.cs -------------------------------------------------------------------------------- /HTB Updates Shared Resources/Migrations/20221201201137_GuildUserOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/HTB Updates Shared Resources/Migrations/20221201201137_GuildUserOption.cs -------------------------------------------------------------------------------- /HTB Updates Shared Resources/Migrations/20221201201231_GuildUserSql.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/HTB Updates Shared Resources/Migrations/20221201201231_GuildUserSql.Designer.cs -------------------------------------------------------------------------------- /HTB Updates Shared Resources/Migrations/20221201201231_GuildUserSql.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/HTB Updates Shared Resources/Migrations/20221201201231_GuildUserSql.cs -------------------------------------------------------------------------------- /HTB Updates Shared Resources/Migrations/20221201202113_RemovedDiscordUserFields.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/HTB Updates Shared Resources/Migrations/20221201202113_RemovedDiscordUserFields.Designer.cs -------------------------------------------------------------------------------- /HTB Updates Shared Resources/Migrations/20221201202113_RemovedDiscordUserFields.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/HTB Updates Shared Resources/Migrations/20221201202113_RemovedDiscordUserFields.cs -------------------------------------------------------------------------------- /HTB Updates Shared Resources/Migrations/20221201202303_RemovedDiscordUserFieldsSql.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/HTB Updates Shared Resources/Migrations/20221201202303_RemovedDiscordUserFieldsSql.Designer.cs -------------------------------------------------------------------------------- /HTB Updates Shared Resources/Migrations/20221201202303_RemovedDiscordUserFieldsSql.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/HTB Updates Shared Resources/Migrations/20221201202303_RemovedDiscordUserFieldsSql.cs -------------------------------------------------------------------------------- /HTB Updates Shared Resources/Migrations/20221202084440_FinalGuildMigration.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/HTB Updates Shared Resources/Migrations/20221202084440_FinalGuildMigration.Designer.cs -------------------------------------------------------------------------------- /HTB Updates Shared Resources/Migrations/20221202084440_FinalGuildMigration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/HTB Updates Shared Resources/Migrations/20221202084440_FinalGuildMigration.cs -------------------------------------------------------------------------------- /HTB Updates Shared Resources/Migrations/20221202171647_NoSupporter.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/HTB Updates Shared Resources/Migrations/20221202171647_NoSupporter.Designer.cs -------------------------------------------------------------------------------- /HTB Updates Shared Resources/Migrations/20221202171647_NoSupporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/HTB Updates Shared Resources/Migrations/20221202171647_NoSupporter.cs -------------------------------------------------------------------------------- /HTB Updates Shared Resources/Migrations/20230305154125_Border.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/HTB Updates Shared Resources/Migrations/20230305154125_Border.Designer.cs -------------------------------------------------------------------------------- /HTB Updates Shared Resources/Migrations/20230305154125_Border.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/HTB Updates Shared Resources/Migrations/20230305154125_Border.cs -------------------------------------------------------------------------------- /HTB Updates Shared Resources/Migrations/DatabaseContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/HTB Updates Shared Resources/Migrations/DatabaseContextModelSnapshot.cs -------------------------------------------------------------------------------- /HTB Updates Shared Resources/Models/Api/UnreleasedMachine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/HTB Updates Shared Resources/Models/Api/UnreleasedMachine.cs -------------------------------------------------------------------------------- /HTB Updates Shared Resources/Models/Database/DiscordGuild.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/HTB Updates Shared Resources/Models/Database/DiscordGuild.cs -------------------------------------------------------------------------------- /HTB Updates Shared Resources/Models/Database/DiscordUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/HTB Updates Shared Resources/Models/Database/DiscordUser.cs -------------------------------------------------------------------------------- /HTB Updates Shared Resources/Models/Database/GuildUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/HTB Updates Shared Resources/Models/Database/GuildUser.cs -------------------------------------------------------------------------------- /HTB Updates Shared Resources/Models/Database/HTBUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/HTB Updates Shared Resources/Models/Database/HTBUser.cs -------------------------------------------------------------------------------- /HTB Updates Shared Resources/Models/Shared/Solve.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/HTB Updates Shared Resources/Models/Shared/Solve.cs -------------------------------------------------------------------------------- /HTB Updates Shared Resources/Services/HTBApiV1Manager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/HTB Updates Shared Resources/Services/HTBApiV1Manager.cs -------------------------------------------------------------------------------- /HTB Updates Shared Resources/Services/HTBApiV4Service.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/HTB Updates Shared Resources/Services/HTBApiV4Service.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /htb_updates_backend/Controllers/AuthController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/htb_updates_backend/Controllers/AuthController.cs -------------------------------------------------------------------------------- /htb_updates_backend/Controllers/CustomizationController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/htb_updates_backend/Controllers/CustomizationController.cs -------------------------------------------------------------------------------- /htb_updates_backend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/htb_updates_backend/Dockerfile -------------------------------------------------------------------------------- /htb_updates_backend/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/htb_updates_backend/Program.cs -------------------------------------------------------------------------------- /htb_updates_backend/appsettings.json.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/htb_updates_backend/appsettings.json.sample -------------------------------------------------------------------------------- /htb_updates_backend/htb_updates_backend.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/htb_updates_backend/htb_updates_backend.csproj -------------------------------------------------------------------------------- /htb_updates_frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/htb_updates_frontend/.gitignore -------------------------------------------------------------------------------- /htb_updates_frontend/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/htb_updates_frontend/.vscode/launch.json -------------------------------------------------------------------------------- /htb_updates_frontend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/htb_updates_frontend/Dockerfile -------------------------------------------------------------------------------- /htb_updates_frontend/htb_updates_frontend.esproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/htb_updates_frontend/htb_updates_frontend.esproj -------------------------------------------------------------------------------- /htb_updates_frontend/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/htb_updates_frontend/nginx.conf -------------------------------------------------------------------------------- /htb_updates_frontend/nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/htb_updates_frontend/nuget.config -------------------------------------------------------------------------------- /htb_updates_frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/htb_updates_frontend/package-lock.json -------------------------------------------------------------------------------- /htb_updates_frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/htb_updates_frontend/package.json -------------------------------------------------------------------------------- /htb_updates_frontend/public/border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/htb_updates_frontend/public/border.png -------------------------------------------------------------------------------- /htb_updates_frontend/public/borderless.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/htb_updates_frontend/public/borderless.png -------------------------------------------------------------------------------- /htb_updates_frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/htb_updates_frontend/public/favicon.ico -------------------------------------------------------------------------------- /htb_updates_frontend/public/htb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/htb_updates_frontend/public/htb.png -------------------------------------------------------------------------------- /htb_updates_frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/htb_updates_frontend/public/index.html -------------------------------------------------------------------------------- /htb_updates_frontend/public/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/htb_updates_frontend/public/link.png -------------------------------------------------------------------------------- /htb_updates_frontend/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/htb_updates_frontend/public/logo192.png -------------------------------------------------------------------------------- /htb_updates_frontend/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/htb_updates_frontend/public/logo512.png -------------------------------------------------------------------------------- /htb_updates_frontend/public/machine_announcement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/htb_updates_frontend/public/machine_announcement.png -------------------------------------------------------------------------------- /htb_updates_frontend/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/htb_updates_frontend/public/manifest.json -------------------------------------------------------------------------------- /htb_updates_frontend/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/htb_updates_frontend/public/robots.txt -------------------------------------------------------------------------------- /htb_updates_frontend/public/setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/htb_updates_frontend/public/setup.png -------------------------------------------------------------------------------- /htb_updates_frontend/public/solve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/htb_updates_frontend/public/solve.png -------------------------------------------------------------------------------- /htb_updates_frontend/public/solve_announcement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/htb_updates_frontend/public/solve_announcement.png -------------------------------------------------------------------------------- /htb_updates_frontend/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/htb_updates_frontend/src/App.tsx -------------------------------------------------------------------------------- /htb_updates_frontend/src/contexts/AuthProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/htb_updates_frontend/src/contexts/AuthProvider.tsx -------------------------------------------------------------------------------- /htb_updates_frontend/src/hooks/useApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/htb_updates_frontend/src/hooks/useApi.ts -------------------------------------------------------------------------------- /htb_updates_frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/htb_updates_frontend/src/index.css -------------------------------------------------------------------------------- /htb_updates_frontend/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/htb_updates_frontend/src/index.tsx -------------------------------------------------------------------------------- /htb_updates_frontend/src/pages/Callback.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/htb_updates_frontend/src/pages/Callback.tsx -------------------------------------------------------------------------------- /htb_updates_frontend/src/pages/Customization.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/htb_updates_frontend/src/pages/Customization.tsx -------------------------------------------------------------------------------- /htb_updates_frontend/src/pages/Home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/htb_updates_frontend/src/pages/Home.tsx -------------------------------------------------------------------------------- /htb_updates_frontend/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /htb_updates_frontend/src/reportWebVitals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/htb_updates_frontend/src/reportWebVitals.ts -------------------------------------------------------------------------------- /htb_updates_frontend/src/setupProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/htb_updates_frontend/src/setupProxy.js -------------------------------------------------------------------------------- /htb_updates_frontend/src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/htb_updates_frontend/src/setupTests.ts -------------------------------------------------------------------------------- /htb_updates_frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Et3rnos/HTB_Updates/HEAD/htb_updates_frontend/tsconfig.json --------------------------------------------------------------------------------