├── README.md ├── challenges ├── rev │ └── Redpill │ │ ├── build │ │ └── redpill │ │ └── redpill │ │ ├── Makefile │ │ ├── flag │ │ ├── generate_flag.c │ │ ├── include │ │ └── boot.inc │ │ ├── loader.S │ │ └── mbr.S └── web │ ├── My todolist │ ├── MyTodolist │ │ ├── .gitignore │ │ ├── MyTodolist.sln │ │ └── MyTodolist │ │ │ ├── App_Start │ │ │ ├── BundleConfig.cs │ │ │ ├── FilterConfig.cs │ │ │ └── RouteConfig.cs │ │ │ ├── Controllers │ │ │ ├── ApiController.cs │ │ │ ├── HomeController.cs │ │ │ └── UserController.cs │ │ │ ├── Extensions │ │ │ └── WebExtension.cs │ │ │ ├── Global.asax │ │ │ ├── Global.asax.cs │ │ │ ├── Models │ │ │ └── User.cs │ │ │ ├── MyTodolist.csproj │ │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ │ ├── Services │ │ │ ├── AuthenticationService.cs │ │ │ ├── HashService.cs │ │ │ └── MongoService.cs │ │ │ ├── Views │ │ │ ├── Home │ │ │ │ └── Index.cshtml │ │ │ ├── Shared │ │ │ │ ├── Error.cshtml │ │ │ │ └── _Layout.cshtml │ │ │ ├── User │ │ │ │ └── Login.cshtml │ │ │ ├── Web.config │ │ │ └── _ViewStart.cshtml │ │ │ ├── Web.Debug.config │ │ │ ├── Web.Release.config │ │ │ ├── Web.config │ │ │ ├── favicon.ico │ │ │ ├── libmongocrypt.dylib │ │ │ ├── libmongocrypt.so │ │ │ ├── mongocrypt.dll │ │ │ └── packages.config │ └── Release │ │ ├── Dockerfile │ │ ├── Publish │ │ ├── PrecompiledApp.config │ │ ├── Views │ │ │ ├── Home │ │ │ │ └── Index.cshtml │ │ │ ├── Shared │ │ │ │ ├── Error.cshtml │ │ │ │ └── _Layout.cshtml │ │ │ ├── User │ │ │ │ └── Login.cshtml │ │ │ ├── Web.config │ │ │ └── _ViewStart.cshtml │ │ ├── Web.config │ │ ├── bin │ │ │ ├── AWSSDK.Core.dll │ │ │ ├── AWSSDK.Core.pdb │ │ │ ├── AWSSDK.SecurityToken.dll │ │ │ ├── AWSSDK.SecurityToken.pdb │ │ │ ├── Antlr3.Runtime.dll │ │ │ ├── Antlr3.Runtime.pdb │ │ │ ├── App_global.asax.compiled │ │ │ ├── App_global.asax.dll │ │ │ ├── DnsClient.dll │ │ │ ├── Isopoh.Cryptography.Argon2.dll │ │ │ ├── Isopoh.Cryptography.Blake2b.dll │ │ │ ├── Isopoh.Cryptography.SecureArray.dll │ │ │ ├── Microsoft.Bcl.AsyncInterfaces.dll │ │ │ ├── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll │ │ │ ├── Microsoft.Extensions.Logging.Abstractions.dll │ │ │ ├── Microsoft.Web.Infrastructure.dll │ │ │ ├── Microsoft.Win32.Registry.dll │ │ │ ├── MongoDB.Bson.dll │ │ │ ├── MongoDB.Driver.Core.dll │ │ │ ├── MongoDB.Driver.dll │ │ │ ├── MongoDB.Libmongocrypt.dll │ │ │ ├── MyTodolist.dll │ │ │ ├── MyTodolist.pdb │ │ │ ├── Newtonsoft.Json.dll │ │ │ ├── SharpCompress.dll │ │ │ ├── Snappier.dll │ │ │ ├── System.Buffers.dll │ │ │ ├── System.Memory.dll │ │ │ ├── System.Numerics.Vectors.dll │ │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ │ ├── System.Security.AccessControl.dll │ │ │ ├── System.Security.Principal.Windows.dll │ │ │ ├── System.Text.Encoding.CodePages.dll │ │ │ ├── System.Threading.Tasks.Extensions.dll │ │ │ ├── System.Web.Helpers.dll │ │ │ ├── System.Web.Mvc.dll │ │ │ ├── System.Web.Optimization.dll │ │ │ ├── System.Web.Razor.dll │ │ │ ├── System.Web.WebPages.Deployment.dll │ │ │ ├── System.Web.WebPages.Razor.dll │ │ │ ├── System.Web.WebPages.dll │ │ │ ├── WebGrease.dll │ │ │ ├── ZstdSharp.dll │ │ │ ├── mongocrypt.dll │ │ │ ├── roslyn │ │ │ │ ├── Microsoft.Build.Tasks.CodeAnalysis.dll │ │ │ │ ├── Microsoft.CSharp.Core.targets │ │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Scripting.dll │ │ │ │ ├── Microsoft.CodeAnalysis.CSharp.dll │ │ │ │ ├── Microsoft.CodeAnalysis.Scripting.dll │ │ │ │ ├── Microsoft.CodeAnalysis.VisualBasic.dll │ │ │ │ ├── Microsoft.CodeAnalysis.dll │ │ │ │ ├── Microsoft.DiaSymReader.Native.amd64.dll │ │ │ │ ├── Microsoft.DiaSymReader.Native.x86.dll │ │ │ │ ├── Microsoft.Managed.Core.targets │ │ │ │ ├── Microsoft.VisualBasic.Core.targets │ │ │ │ ├── Microsoft.Win32.Primitives.dll │ │ │ │ ├── System.AppContext.dll │ │ │ │ ├── System.Collections.Immutable.dll │ │ │ │ ├── System.Console.dll │ │ │ │ ├── System.Diagnostics.DiagnosticSource.dll │ │ │ │ ├── System.Diagnostics.FileVersionInfo.dll │ │ │ │ ├── System.Diagnostics.StackTrace.dll │ │ │ │ ├── System.Globalization.Calendars.dll │ │ │ │ ├── System.IO.Compression.ZipFile.dll │ │ │ │ ├── System.IO.Compression.dll │ │ │ │ ├── System.IO.FileSystem.Primitives.dll │ │ │ │ ├── System.IO.FileSystem.dll │ │ │ │ ├── System.Net.Http.dll │ │ │ │ ├── System.Net.Sockets.dll │ │ │ │ ├── System.Reflection.Metadata.dll │ │ │ │ ├── System.Runtime.InteropServices.RuntimeInformation.dll │ │ │ │ ├── System.Security.Cryptography.Algorithms.dll │ │ │ │ ├── System.Security.Cryptography.Encoding.dll │ │ │ │ ├── System.Security.Cryptography.Primitives.dll │ │ │ │ ├── System.Security.Cryptography.X509Certificates.dll │ │ │ │ ├── System.Text.Encoding.CodePages.dll │ │ │ │ ├── System.Threading.Tasks.Extensions.dll │ │ │ │ ├── System.ValueTuple.dll │ │ │ │ ├── System.Xml.ReaderWriter.dll │ │ │ │ ├── System.Xml.XPath.XDocument.dll │ │ │ │ ├── System.Xml.XPath.dll │ │ │ │ ├── System.Xml.XmlDocument.dll │ │ │ │ ├── VBCSCompiler.exe │ │ │ │ ├── VBCSCompiler.exe.config │ │ │ │ ├── csc.exe │ │ │ │ ├── csc.exe.config │ │ │ │ ├── csc.rsp │ │ │ │ ├── csi.exe │ │ │ │ ├── csi.exe.config │ │ │ │ ├── csi.rsp │ │ │ │ ├── vbc.exe │ │ │ │ ├── vbc.exe.config │ │ │ │ └── vbc.rsp │ │ │ └── zh-Hant │ │ │ │ ├── System.Web.Helpers.resources.dll │ │ │ │ ├── System.Web.Mvc.resources.dll │ │ │ │ ├── System.Web.Optimization.resources.dll │ │ │ │ ├── System.Web.Razor.resources.dll │ │ │ │ ├── System.Web.WebPages.Deployment.resources.dll │ │ │ │ ├── System.Web.WebPages.Razor.resources.dll │ │ │ │ └── System.Web.WebPages.resources.dll │ │ ├── favicon.ico │ │ ├── libmongocrypt.dylib │ │ ├── libmongocrypt.so │ │ └── mongocrypt.dll │ │ ├── docker-compose.yml │ │ └── flag │ │ └── flag.txt │ ├── Random Kitten │ ├── Dockerfile │ ├── Dockerfile.dev │ ├── cgi │ ├── docker-compose.yaml │ ├── flag │ ├── images │ │ ├── 500.jpg │ │ ├── 501.jpg │ │ ├── 502.jpg │ │ └── 503.jpg │ └── src │ │ ├── cgi.c │ │ ├── default.conf │ │ ├── index.html │ │ └── supervisord.conf │ ├── Submit flag │ ├── Dockerfile │ ├── configure.sh │ ├── docker-compose.yml │ ├── nginx │ │ └── nginx.conf │ ├── sql │ │ └── init.sql │ └── www │ │ ├── config.php │ │ ├── func.php │ │ ├── index.php │ │ └── register.php │ └── What's my IP │ ├── Dockerfile │ ├── apache2 │ └── remoteip.conf │ ├── configure.sh │ ├── docker-compose.yml │ ├── external │ └── nginx.conf │ ├── sql │ └── init.sql │ └── www │ └── index.php └── scoreboard.md /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/README.md -------------------------------------------------------------------------------- /challenges/rev/Redpill/build/redpill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/rev/Redpill/build/redpill -------------------------------------------------------------------------------- /challenges/rev/Redpill/redpill/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/rev/Redpill/redpill/Makefile -------------------------------------------------------------------------------- /challenges/rev/Redpill/redpill/flag: -------------------------------------------------------------------------------- 1 | DEVCORE{4r3_w3_al1_liv1ng_in_th3_ma7ri> -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/Views/User/Login.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/Views/User/Login.cshtml -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/Views/Web.config -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/Web.config -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/AWSSDK.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/AWSSDK.Core.dll -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/AWSSDK.Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/AWSSDK.Core.pdb -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/AWSSDK.SecurityToken.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/AWSSDK.SecurityToken.dll -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/AWSSDK.SecurityToken.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/AWSSDK.SecurityToken.pdb -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/Antlr3.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/Antlr3.Runtime.dll -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/Antlr3.Runtime.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/Antlr3.Runtime.pdb -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/App_global.asax.compiled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/App_global.asax.compiled -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/App_global.asax.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/App_global.asax.dll -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/DnsClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/DnsClient.dll -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/Isopoh.Cryptography.Argon2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/Isopoh.Cryptography.Argon2.dll -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/Isopoh.Cryptography.Blake2b.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/Isopoh.Cryptography.Blake2b.dll -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/Isopoh.Cryptography.SecureArray.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/Isopoh.Cryptography.SecureArray.dll -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/Microsoft.Bcl.AsyncInterfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/Microsoft.Bcl.AsyncInterfaces.dll -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/Microsoft.Extensions.Logging.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/Microsoft.Extensions.Logging.Abstractions.dll -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/Microsoft.Web.Infrastructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/Microsoft.Web.Infrastructure.dll -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/Microsoft.Win32.Registry.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/Microsoft.Win32.Registry.dll -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/MongoDB.Bson.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/MongoDB.Bson.dll -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/MongoDB.Driver.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/MongoDB.Driver.Core.dll -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/MongoDB.Driver.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/MongoDB.Driver.dll -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/MongoDB.Libmongocrypt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/MongoDB.Libmongocrypt.dll -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/MyTodolist.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/MyTodolist.dll -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/MyTodolist.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/MyTodolist.pdb -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/SharpCompress.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/SharpCompress.dll -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/Snappier.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/Snappier.dll -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/System.Buffers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/System.Buffers.dll -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/System.Memory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/System.Memory.dll -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/System.Security.AccessControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/System.Security.AccessControl.dll -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/System.Security.Principal.Windows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/System.Security.Principal.Windows.dll -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/System.Text.Encoding.CodePages.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/System.Text.Encoding.CodePages.dll -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/System.Threading.Tasks.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/System.Threading.Tasks.Extensions.dll -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/System.Web.Helpers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/System.Web.Helpers.dll -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/System.Web.Mvc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/System.Web.Mvc.dll -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/System.Web.Optimization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/System.Web.Optimization.dll -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/System.Web.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/System.Web.Razor.dll -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/System.Web.WebPages.Deployment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/System.Web.WebPages.Deployment.dll -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/System.Web.WebPages.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/System.Web.WebPages.Razor.dll -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/System.Web.WebPages.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/System.Web.WebPages.dll -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/WebGrease.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/WebGrease.dll -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/ZstdSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/ZstdSharp.dll -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/mongocrypt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/mongocrypt.dll -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/roslyn/Microsoft.Build.Tasks.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/roslyn/Microsoft.Build.Tasks.CodeAnalysis.dll -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/roslyn/Microsoft.CSharp.Core.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/roslyn/Microsoft.CSharp.Core.targets -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/roslyn/Microsoft.CodeAnalysis.CSharp.Scripting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/roslyn/Microsoft.CodeAnalysis.CSharp.Scripting.dll -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/roslyn/Microsoft.CodeAnalysis.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/roslyn/Microsoft.CodeAnalysis.CSharp.dll -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/roslyn/Microsoft.CodeAnalysis.Scripting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/roslyn/Microsoft.CodeAnalysis.Scripting.dll -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/roslyn/Microsoft.CodeAnalysis.VisualBasic.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/roslyn/Microsoft.CodeAnalysis.VisualBasic.dll -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/roslyn/Microsoft.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/roslyn/Microsoft.CodeAnalysis.dll -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/roslyn/Microsoft.DiaSymReader.Native.amd64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/roslyn/Microsoft.DiaSymReader.Native.amd64.dll -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/roslyn/Microsoft.DiaSymReader.Native.x86.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/roslyn/Microsoft.DiaSymReader.Native.x86.dll -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/roslyn/Microsoft.Managed.Core.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/roslyn/Microsoft.Managed.Core.targets -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/roslyn/Microsoft.VisualBasic.Core.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/roslyn/Microsoft.VisualBasic.Core.targets -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/roslyn/Microsoft.Win32.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/roslyn/Microsoft.Win32.Primitives.dll -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/roslyn/System.AppContext.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/roslyn/System.AppContext.dll -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/roslyn/System.Collections.Immutable.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/roslyn/System.Collections.Immutable.dll -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/roslyn/System.Console.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/roslyn/System.Console.dll -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/roslyn/System.Diagnostics.DiagnosticSource.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/roslyn/System.Diagnostics.DiagnosticSource.dll -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/roslyn/System.Diagnostics.FileVersionInfo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/roslyn/System.Diagnostics.FileVersionInfo.dll -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/roslyn/System.Diagnostics.StackTrace.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/roslyn/System.Diagnostics.StackTrace.dll -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/roslyn/System.Globalization.Calendars.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/roslyn/System.Globalization.Calendars.dll -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/roslyn/System.IO.Compression.ZipFile.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/roslyn/System.IO.Compression.ZipFile.dll -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/roslyn/System.IO.Compression.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/roslyn/System.IO.Compression.dll -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/roslyn/System.IO.FileSystem.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/roslyn/System.IO.FileSystem.Primitives.dll -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/roslyn/System.IO.FileSystem.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/roslyn/System.IO.FileSystem.dll -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/roslyn/System.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/roslyn/System.Net.Http.dll -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/roslyn/System.Net.Sockets.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/roslyn/System.Net.Sockets.dll -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/roslyn/System.Reflection.Metadata.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/roslyn/System.Reflection.Metadata.dll -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/roslyn/System.Runtime.InteropServices.RuntimeInformation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/roslyn/System.Runtime.InteropServices.RuntimeInformation.dll -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/roslyn/System.Security.Cryptography.Algorithms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/roslyn/System.Security.Cryptography.Algorithms.dll -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/roslyn/System.Security.Cryptography.Encoding.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/roslyn/System.Security.Cryptography.Encoding.dll -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/roslyn/System.Security.Cryptography.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/roslyn/System.Security.Cryptography.Primitives.dll -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/roslyn/System.Security.Cryptography.X509Certificates.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/roslyn/System.Security.Cryptography.X509Certificates.dll -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/roslyn/System.Text.Encoding.CodePages.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/roslyn/System.Text.Encoding.CodePages.dll -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/roslyn/System.Threading.Tasks.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/roslyn/System.Threading.Tasks.Extensions.dll -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/roslyn/System.ValueTuple.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/roslyn/System.ValueTuple.dll -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/roslyn/System.Xml.ReaderWriter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/roslyn/System.Xml.ReaderWriter.dll -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/roslyn/System.Xml.XPath.XDocument.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/roslyn/System.Xml.XPath.XDocument.dll -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/roslyn/System.Xml.XPath.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/roslyn/System.Xml.XPath.dll -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/roslyn/System.Xml.XmlDocument.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/roslyn/System.Xml.XmlDocument.dll -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/roslyn/VBCSCompiler.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/roslyn/VBCSCompiler.exe -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/roslyn/VBCSCompiler.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/roslyn/VBCSCompiler.exe.config -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/roslyn/csc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/roslyn/csc.exe -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/roslyn/csc.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/roslyn/csc.exe.config -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/roslyn/csc.rsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/roslyn/csc.rsp -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/roslyn/csi.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/roslyn/csi.exe -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/roslyn/csi.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/roslyn/csi.exe.config -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/roslyn/csi.rsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/roslyn/csi.rsp -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/roslyn/vbc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/roslyn/vbc.exe -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/roslyn/vbc.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/roslyn/vbc.exe.config -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/roslyn/vbc.rsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/roslyn/vbc.rsp -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/zh-Hant/System.Web.Helpers.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/zh-Hant/System.Web.Helpers.resources.dll -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/zh-Hant/System.Web.Mvc.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/zh-Hant/System.Web.Mvc.resources.dll -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/zh-Hant/System.Web.Optimization.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/zh-Hant/System.Web.Optimization.resources.dll -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/zh-Hant/System.Web.Razor.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/zh-Hant/System.Web.Razor.resources.dll -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/zh-Hant/System.Web.WebPages.Deployment.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/zh-Hant/System.Web.WebPages.Deployment.resources.dll -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/zh-Hant/System.Web.WebPages.Razor.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/zh-Hant/System.Web.WebPages.Razor.resources.dll -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/bin/zh-Hant/System.Web.WebPages.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/bin/zh-Hant/System.Web.WebPages.resources.dll -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/favicon.ico -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/libmongocrypt.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/libmongocrypt.dylib -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/libmongocrypt.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/libmongocrypt.so -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/Publish/mongocrypt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/Publish/mongocrypt.dll -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/My todolist/Release/docker-compose.yml -------------------------------------------------------------------------------- /challenges/web/My todolist/Release/flag/flag.txt: -------------------------------------------------------------------------------- 1 | DEVCORE{fake_flag} -------------------------------------------------------------------------------- /challenges/web/Random Kitten/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/Random Kitten/Dockerfile -------------------------------------------------------------------------------- /challenges/web/Random Kitten/Dockerfile.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/Random Kitten/Dockerfile.dev -------------------------------------------------------------------------------- /challenges/web/Random Kitten/cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/Random Kitten/cgi -------------------------------------------------------------------------------- /challenges/web/Random Kitten/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/Random Kitten/docker-compose.yaml -------------------------------------------------------------------------------- /challenges/web/Random Kitten/flag: -------------------------------------------------------------------------------- 1 | DEVCORE{angelboy_is_still_thinking_what_flag_should_be} 2 | -------------------------------------------------------------------------------- /challenges/web/Random Kitten/images/500.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/Random Kitten/images/500.jpg -------------------------------------------------------------------------------- /challenges/web/Random Kitten/images/501.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/Random Kitten/images/501.jpg -------------------------------------------------------------------------------- /challenges/web/Random Kitten/images/502.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/Random Kitten/images/502.jpg -------------------------------------------------------------------------------- /challenges/web/Random Kitten/images/503.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/Random Kitten/images/503.jpg -------------------------------------------------------------------------------- /challenges/web/Random Kitten/src/cgi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/Random Kitten/src/cgi.c -------------------------------------------------------------------------------- /challenges/web/Random Kitten/src/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/Random Kitten/src/default.conf -------------------------------------------------------------------------------- /challenges/web/Random Kitten/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/Random Kitten/src/index.html -------------------------------------------------------------------------------- /challenges/web/Random Kitten/src/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/Random Kitten/src/supervisord.conf -------------------------------------------------------------------------------- /challenges/web/Submit flag/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/Submit flag/Dockerfile -------------------------------------------------------------------------------- /challenges/web/Submit flag/configure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/Submit flag/configure.sh -------------------------------------------------------------------------------- /challenges/web/Submit flag/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/Submit flag/docker-compose.yml -------------------------------------------------------------------------------- /challenges/web/Submit flag/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/Submit flag/nginx/nginx.conf -------------------------------------------------------------------------------- /challenges/web/Submit flag/sql/init.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/Submit flag/sql/init.sql -------------------------------------------------------------------------------- /challenges/web/Submit flag/www/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/Submit flag/www/config.php -------------------------------------------------------------------------------- /challenges/web/Submit flag/www/func.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/Submit flag/www/func.php -------------------------------------------------------------------------------- /challenges/web/Submit flag/www/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/Submit flag/www/index.php -------------------------------------------------------------------------------- /challenges/web/Submit flag/www/register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/Submit flag/www/register.php -------------------------------------------------------------------------------- /challenges/web/What's my IP/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/What's my IP/Dockerfile -------------------------------------------------------------------------------- /challenges/web/What's my IP/apache2/remoteip.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/What's my IP/apache2/remoteip.conf -------------------------------------------------------------------------------- /challenges/web/What's my IP/configure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/What's my IP/configure.sh -------------------------------------------------------------------------------- /challenges/web/What's my IP/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/What's my IP/docker-compose.yml -------------------------------------------------------------------------------- /challenges/web/What's my IP/external/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/What's my IP/external/nginx.conf -------------------------------------------------------------------------------- /challenges/web/What's my IP/sql/init.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/What's my IP/sql/init.sql -------------------------------------------------------------------------------- /challenges/web/What's my IP/www/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/challenges/web/What's my IP/www/index.php -------------------------------------------------------------------------------- /scoreboard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEVCORE-Wargame/HITCON-2023/HEAD/scoreboard.md --------------------------------------------------------------------------------