├── CVE-2024-40711-poc ├── ExploitClass │ ├── ExploitClass.cs │ ├── ExploitClass.csproj │ └── GhostWebShell.cs ├── LICENSE.txt ├── README.md ├── TestConsoleApp │ ├── App.config │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── TestConsoleApp_YSONET.csproj ├── logo.png ├── ysoserial.sln └── ysoserial │ ├── App.config │ ├── Generators │ ├── ActivitySurrogateDisableTypeCheck.cs │ ├── ActivitySurrogateSelectorFromFileGenerator.cs │ ├── ActivitySurrogateSelectorGenerator.cs │ ├── AxHostStateGenerator.cs │ ├── BaseActivationFactoryGenerator.cs │ ├── ClaimsIdentityGenerator.cs │ ├── ClaimsPrincipalGenerator.cs │ ├── DataSetGenerator.cs │ ├── DataSetOldBehaviourFromFileGenerator.cs │ ├── DataSetOldBehaviourGenerator.cs │ ├── DataSetTypeSpoofGenerator.cs │ ├── GenericGenerator.cs │ ├── GenericPrincipalGenerator.cs │ ├── GetterCompilerResultsGenerator.cs │ ├── GetterSecurityExceptionGenerator.cs │ ├── GetterSettingsPropertyValueGenerator.cs │ ├── IGenerator.cs │ ├── ObjRefGenerator.cs │ ├── ObjectDataProviderGenerator.cs │ ├── PSObjectGenerator.cs │ ├── ResourceSetGenerator.cs │ ├── RolePrincipalGenerator.cs │ ├── SessionSecurityTokenGenerator.cs │ ├── SessionViewStateHistoryItemGenerator.cs │ ├── TextFormattingRunPropertiesGenerator.cs │ ├── ToolboxItemContainerGenerator.cs │ ├── TypeConfuseDelegateGenerator.cs │ ├── TypeConfuseDelegateMonoGenerator.cs │ ├── VeeamGenerator.cs │ ├── WindowsClaimsIdentityGenerator.cs │ ├── WindowsIdentityGenerator.cs │ ├── WindowsPrincipalGenerator.cs │ ├── XamlAssemblyLoadFromFileGenerator.cs │ └── XamlImageInfo.cs │ ├── Helpers │ ├── BinaryFormatterMinifier.cs │ ├── CommandArgSplitter.cs │ ├── Debugging.cs │ ├── FormatterType.cs │ ├── GadgetSurrogates │ │ ├── GetterSettingsPropertyValueSurrogates.cs │ │ └── ObjectDataProviderSurrogates.cs │ ├── InputArgs.cs │ ├── JsonHelper.cs │ ├── LocalCodeCompiler.cs │ ├── MessagePackGetterSettingsPropertyValueHelper.cs │ ├── MessagePackObjectDataProviderHelper.cs │ ├── ModifiedVulnerableBinaryFormatters │ │ ├── AdvancedBinaryFormatterParser.cs │ │ ├── Environment.cs │ │ ├── ObjectExtensions.cs │ │ ├── SerTrace.cs │ │ ├── SimpleBinaryFormatterParser.cs │ │ ├── SimpleObjectLosFormatter.cs │ │ ├── binarycommonclasses.cs │ │ ├── binaryconverter.cs │ │ ├── binaryenums.cs │ │ ├── binaryformatter.cs │ │ ├── binaryformatterwriter.cs │ │ ├── binarymethodmessage.cs │ │ ├── binaryobjectinfo.cs │ │ ├── binaryobjectreader.cs │ │ ├── binaryobjectwriter.cs │ │ ├── binaryparser.cs │ │ ├── binaryutilclasses.cs │ │ └── info.txt │ ├── SerializersHelper.cs │ ├── XmlHelper.cs │ └── YamlDocumentHelper.cs │ ├── Plugins │ ├── ActivatorUrlPlugin.cs │ ├── AltserializationPlugin.cs │ ├── ApplicationTrustPlugin.cs │ ├── ClipboardPlugin.cs │ ├── DotNetNukePlugin.cs │ ├── GetterCallGadgetsPlugin.cs │ ├── IPlugin.cs │ ├── NetNonRceGadgetsPlugin.cs │ ├── ResxPlugin.cs │ ├── SessionSecurityTokenHandlerPlugin.cs │ ├── SharePointPlugin.cs │ ├── ThirdPartyGadgetsPlugin.cs │ ├── TransactionManagerReenlist.cs │ └── ViewStatePlugin.cs │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── dlls │ ├── Microsoft.PowerShell.Editor.dll │ ├── PresentationFramework.dll │ ├── ReachFramework-orig.dll │ ├── ReachFramework.dll │ ├── System.Management.Automation-orig.dll │ └── System.Management.Automation.dll │ ├── packages.config │ └── ysoserial.csproj ├── ExploitRemotingService-master ├── ExampleRemotingService │ ├── ExampleRemotingService.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── app.config │ └── packages.config ├── ExploitRemotingService.sln ├── ExploitRemotingService │ ├── App.config │ ├── ChannelUriFixingClientChannelSinkProvider.cs │ ├── ChannelUriFixingServerChannelSinkProvider.cs │ ├── CustomChannel.cs │ ├── DataSetMarshal.cs │ ├── ExploitRemotingService.csproj │ ├── FakeComObjRef.cs │ ├── FakeMessage.cs │ ├── FakeMethod.cs │ ├── FakeType.cs │ ├── MethodCallWrapper.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SerializableWrapper.cs │ ├── SerializerRemoteClass.cs │ ├── TcpMessageWriter.cs │ └── packages.config ├── Installer │ ├── FakeAsm.csproj │ ├── IRemoteClass.cs │ ├── InstallClass.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RemoteClass.cs │ └── SerializableRegister.cs ├── LICENSE └── README.md ├── README.md └── demo.mp4 /CVE-2024-40711-poc/ExploitClass/ExploitClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ExploitClass/ExploitClass.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ExploitClass/ExploitClass.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ExploitClass/ExploitClass.csproj -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ExploitClass/GhostWebShell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ExploitClass/GhostWebShell.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/LICENSE.txt -------------------------------------------------------------------------------- /CVE-2024-40711-poc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/README.md -------------------------------------------------------------------------------- /CVE-2024-40711-poc/TestConsoleApp/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/TestConsoleApp/App.config -------------------------------------------------------------------------------- /CVE-2024-40711-poc/TestConsoleApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/TestConsoleApp/Program.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/TestConsoleApp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/TestConsoleApp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/TestConsoleApp/TestConsoleApp_YSONET.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/TestConsoleApp/TestConsoleApp_YSONET.csproj -------------------------------------------------------------------------------- /CVE-2024-40711-poc/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/logo.png -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial.sln -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/App.config -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/Generators/ActivitySurrogateDisableTypeCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/Generators/ActivitySurrogateDisableTypeCheck.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/Generators/ActivitySurrogateSelectorFromFileGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/Generators/ActivitySurrogateSelectorFromFileGenerator.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/Generators/ActivitySurrogateSelectorGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/Generators/ActivitySurrogateSelectorGenerator.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/Generators/AxHostStateGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/Generators/AxHostStateGenerator.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/Generators/BaseActivationFactoryGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/Generators/BaseActivationFactoryGenerator.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/Generators/ClaimsIdentityGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/Generators/ClaimsIdentityGenerator.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/Generators/ClaimsPrincipalGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/Generators/ClaimsPrincipalGenerator.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/Generators/DataSetGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/Generators/DataSetGenerator.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/Generators/DataSetOldBehaviourFromFileGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/Generators/DataSetOldBehaviourFromFileGenerator.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/Generators/DataSetOldBehaviourGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/Generators/DataSetOldBehaviourGenerator.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/Generators/DataSetTypeSpoofGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/Generators/DataSetTypeSpoofGenerator.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/Generators/GenericGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/Generators/GenericGenerator.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/Generators/GenericPrincipalGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/Generators/GenericPrincipalGenerator.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/Generators/GetterCompilerResultsGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/Generators/GetterCompilerResultsGenerator.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/Generators/GetterSecurityExceptionGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/Generators/GetterSecurityExceptionGenerator.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/Generators/GetterSettingsPropertyValueGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/Generators/GetterSettingsPropertyValueGenerator.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/Generators/IGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/Generators/IGenerator.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/Generators/ObjRefGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/Generators/ObjRefGenerator.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/Generators/ObjectDataProviderGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/Generators/ObjectDataProviderGenerator.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/Generators/PSObjectGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/Generators/PSObjectGenerator.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/Generators/ResourceSetGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/Generators/ResourceSetGenerator.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/Generators/RolePrincipalGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/Generators/RolePrincipalGenerator.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/Generators/SessionSecurityTokenGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/Generators/SessionSecurityTokenGenerator.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/Generators/SessionViewStateHistoryItemGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/Generators/SessionViewStateHistoryItemGenerator.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/Generators/TextFormattingRunPropertiesGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/Generators/TextFormattingRunPropertiesGenerator.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/Generators/ToolboxItemContainerGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/Generators/ToolboxItemContainerGenerator.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/Generators/TypeConfuseDelegateGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/Generators/TypeConfuseDelegateGenerator.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/Generators/TypeConfuseDelegateMonoGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/Generators/TypeConfuseDelegateMonoGenerator.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/Generators/VeeamGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/Generators/VeeamGenerator.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/Generators/WindowsClaimsIdentityGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/Generators/WindowsClaimsIdentityGenerator.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/Generators/WindowsIdentityGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/Generators/WindowsIdentityGenerator.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/Generators/WindowsPrincipalGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/Generators/WindowsPrincipalGenerator.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/Generators/XamlAssemblyLoadFromFileGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/Generators/XamlAssemblyLoadFromFileGenerator.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/Generators/XamlImageInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/Generators/XamlImageInfo.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/Helpers/BinaryFormatterMinifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/Helpers/BinaryFormatterMinifier.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/Helpers/CommandArgSplitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/Helpers/CommandArgSplitter.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/Helpers/Debugging.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/Helpers/Debugging.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/Helpers/FormatterType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/Helpers/FormatterType.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/Helpers/GadgetSurrogates/GetterSettingsPropertyValueSurrogates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/Helpers/GadgetSurrogates/GetterSettingsPropertyValueSurrogates.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/Helpers/GadgetSurrogates/ObjectDataProviderSurrogates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/Helpers/GadgetSurrogates/ObjectDataProviderSurrogates.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/Helpers/InputArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/Helpers/InputArgs.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/Helpers/JsonHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/Helpers/JsonHelper.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/Helpers/LocalCodeCompiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/Helpers/LocalCodeCompiler.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/Helpers/MessagePackGetterSettingsPropertyValueHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/Helpers/MessagePackGetterSettingsPropertyValueHelper.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/Helpers/MessagePackObjectDataProviderHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/Helpers/MessagePackObjectDataProviderHelper.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/Helpers/ModifiedVulnerableBinaryFormatters/AdvancedBinaryFormatterParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/Helpers/ModifiedVulnerableBinaryFormatters/AdvancedBinaryFormatterParser.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/Helpers/ModifiedVulnerableBinaryFormatters/Environment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/Helpers/ModifiedVulnerableBinaryFormatters/Environment.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/Helpers/ModifiedVulnerableBinaryFormatters/ObjectExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/Helpers/ModifiedVulnerableBinaryFormatters/ObjectExtensions.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/Helpers/ModifiedVulnerableBinaryFormatters/SerTrace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/Helpers/ModifiedVulnerableBinaryFormatters/SerTrace.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/Helpers/ModifiedVulnerableBinaryFormatters/SimpleBinaryFormatterParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/Helpers/ModifiedVulnerableBinaryFormatters/SimpleBinaryFormatterParser.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/Helpers/ModifiedVulnerableBinaryFormatters/SimpleObjectLosFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/Helpers/ModifiedVulnerableBinaryFormatters/SimpleObjectLosFormatter.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/Helpers/ModifiedVulnerableBinaryFormatters/binarycommonclasses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/Helpers/ModifiedVulnerableBinaryFormatters/binarycommonclasses.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/Helpers/ModifiedVulnerableBinaryFormatters/binaryconverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/Helpers/ModifiedVulnerableBinaryFormatters/binaryconverter.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/Helpers/ModifiedVulnerableBinaryFormatters/binaryenums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/Helpers/ModifiedVulnerableBinaryFormatters/binaryenums.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/Helpers/ModifiedVulnerableBinaryFormatters/binaryformatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/Helpers/ModifiedVulnerableBinaryFormatters/binaryformatter.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/Helpers/ModifiedVulnerableBinaryFormatters/binaryformatterwriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/Helpers/ModifiedVulnerableBinaryFormatters/binaryformatterwriter.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/Helpers/ModifiedVulnerableBinaryFormatters/binarymethodmessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/Helpers/ModifiedVulnerableBinaryFormatters/binarymethodmessage.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/Helpers/ModifiedVulnerableBinaryFormatters/binaryobjectinfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/Helpers/ModifiedVulnerableBinaryFormatters/binaryobjectinfo.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/Helpers/ModifiedVulnerableBinaryFormatters/binaryobjectreader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/Helpers/ModifiedVulnerableBinaryFormatters/binaryobjectreader.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/Helpers/ModifiedVulnerableBinaryFormatters/binaryobjectwriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/Helpers/ModifiedVulnerableBinaryFormatters/binaryobjectwriter.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/Helpers/ModifiedVulnerableBinaryFormatters/binaryparser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/Helpers/ModifiedVulnerableBinaryFormatters/binaryparser.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/Helpers/ModifiedVulnerableBinaryFormatters/binaryutilclasses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/Helpers/ModifiedVulnerableBinaryFormatters/binaryutilclasses.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/Helpers/ModifiedVulnerableBinaryFormatters/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/Helpers/ModifiedVulnerableBinaryFormatters/info.txt -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/Helpers/SerializersHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/Helpers/SerializersHelper.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/Helpers/XmlHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/Helpers/XmlHelper.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/Helpers/YamlDocumentHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/Helpers/YamlDocumentHelper.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/Plugins/ActivatorUrlPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/Plugins/ActivatorUrlPlugin.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/Plugins/AltserializationPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/Plugins/AltserializationPlugin.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/Plugins/ApplicationTrustPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/Plugins/ApplicationTrustPlugin.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/Plugins/ClipboardPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/Plugins/ClipboardPlugin.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/Plugins/DotNetNukePlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/Plugins/DotNetNukePlugin.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/Plugins/GetterCallGadgetsPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/Plugins/GetterCallGadgetsPlugin.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/Plugins/IPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/Plugins/IPlugin.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/Plugins/NetNonRceGadgetsPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/Plugins/NetNonRceGadgetsPlugin.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/Plugins/ResxPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/Plugins/ResxPlugin.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/Plugins/SessionSecurityTokenHandlerPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/Plugins/SessionSecurityTokenHandlerPlugin.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/Plugins/SharePointPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/Plugins/SharePointPlugin.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/Plugins/ThirdPartyGadgetsPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/Plugins/ThirdPartyGadgetsPlugin.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/Plugins/TransactionManagerReenlist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/Plugins/TransactionManagerReenlist.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/Plugins/ViewStatePlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/Plugins/ViewStatePlugin.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/Program.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/dlls/Microsoft.PowerShell.Editor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/dlls/Microsoft.PowerShell.Editor.dll -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/dlls/PresentationFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/dlls/PresentationFramework.dll -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/dlls/ReachFramework-orig.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/dlls/ReachFramework-orig.dll -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/dlls/ReachFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/dlls/ReachFramework.dll -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/dlls/System.Management.Automation-orig.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/dlls/System.Management.Automation-orig.dll -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/dlls/System.Management.Automation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/dlls/System.Management.Automation.dll -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/packages.config -------------------------------------------------------------------------------- /CVE-2024-40711-poc/ysoserial/ysoserial.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/CVE-2024-40711-poc/ysoserial/ysoserial.csproj -------------------------------------------------------------------------------- /ExploitRemotingService-master/ExampleRemotingService/ExampleRemotingService.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/ExploitRemotingService-master/ExampleRemotingService/ExampleRemotingService.csproj -------------------------------------------------------------------------------- /ExploitRemotingService-master/ExampleRemotingService/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/ExploitRemotingService-master/ExampleRemotingService/Program.cs -------------------------------------------------------------------------------- /ExploitRemotingService-master/ExampleRemotingService/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/ExploitRemotingService-master/ExampleRemotingService/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ExploitRemotingService-master/ExampleRemotingService/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/ExploitRemotingService-master/ExampleRemotingService/app.config -------------------------------------------------------------------------------- /ExploitRemotingService-master/ExampleRemotingService/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/ExploitRemotingService-master/ExampleRemotingService/packages.config -------------------------------------------------------------------------------- /ExploitRemotingService-master/ExploitRemotingService.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/ExploitRemotingService-master/ExploitRemotingService.sln -------------------------------------------------------------------------------- /ExploitRemotingService-master/ExploitRemotingService/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/ExploitRemotingService-master/ExploitRemotingService/App.config -------------------------------------------------------------------------------- /ExploitRemotingService-master/ExploitRemotingService/ChannelUriFixingClientChannelSinkProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/ExploitRemotingService-master/ExploitRemotingService/ChannelUriFixingClientChannelSinkProvider.cs -------------------------------------------------------------------------------- /ExploitRemotingService-master/ExploitRemotingService/ChannelUriFixingServerChannelSinkProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/ExploitRemotingService-master/ExploitRemotingService/ChannelUriFixingServerChannelSinkProvider.cs -------------------------------------------------------------------------------- /ExploitRemotingService-master/ExploitRemotingService/CustomChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/ExploitRemotingService-master/ExploitRemotingService/CustomChannel.cs -------------------------------------------------------------------------------- /ExploitRemotingService-master/ExploitRemotingService/DataSetMarshal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/ExploitRemotingService-master/ExploitRemotingService/DataSetMarshal.cs -------------------------------------------------------------------------------- /ExploitRemotingService-master/ExploitRemotingService/ExploitRemotingService.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/ExploitRemotingService-master/ExploitRemotingService/ExploitRemotingService.csproj -------------------------------------------------------------------------------- /ExploitRemotingService-master/ExploitRemotingService/FakeComObjRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/ExploitRemotingService-master/ExploitRemotingService/FakeComObjRef.cs -------------------------------------------------------------------------------- /ExploitRemotingService-master/ExploitRemotingService/FakeMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/ExploitRemotingService-master/ExploitRemotingService/FakeMessage.cs -------------------------------------------------------------------------------- /ExploitRemotingService-master/ExploitRemotingService/FakeMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/ExploitRemotingService-master/ExploitRemotingService/FakeMethod.cs -------------------------------------------------------------------------------- /ExploitRemotingService-master/ExploitRemotingService/FakeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/ExploitRemotingService-master/ExploitRemotingService/FakeType.cs -------------------------------------------------------------------------------- /ExploitRemotingService-master/ExploitRemotingService/MethodCallWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/ExploitRemotingService-master/ExploitRemotingService/MethodCallWrapper.cs -------------------------------------------------------------------------------- /ExploitRemotingService-master/ExploitRemotingService/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/ExploitRemotingService-master/ExploitRemotingService/Program.cs -------------------------------------------------------------------------------- /ExploitRemotingService-master/ExploitRemotingService/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/ExploitRemotingService-master/ExploitRemotingService/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ExploitRemotingService-master/ExploitRemotingService/SerializableWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/ExploitRemotingService-master/ExploitRemotingService/SerializableWrapper.cs -------------------------------------------------------------------------------- /ExploitRemotingService-master/ExploitRemotingService/SerializerRemoteClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/ExploitRemotingService-master/ExploitRemotingService/SerializerRemoteClass.cs -------------------------------------------------------------------------------- /ExploitRemotingService-master/ExploitRemotingService/TcpMessageWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/ExploitRemotingService-master/ExploitRemotingService/TcpMessageWriter.cs -------------------------------------------------------------------------------- /ExploitRemotingService-master/ExploitRemotingService/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/ExploitRemotingService-master/ExploitRemotingService/packages.config -------------------------------------------------------------------------------- /ExploitRemotingService-master/Installer/FakeAsm.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/ExploitRemotingService-master/Installer/FakeAsm.csproj -------------------------------------------------------------------------------- /ExploitRemotingService-master/Installer/IRemoteClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/ExploitRemotingService-master/Installer/IRemoteClass.cs -------------------------------------------------------------------------------- /ExploitRemotingService-master/Installer/InstallClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/ExploitRemotingService-master/Installer/InstallClass.cs -------------------------------------------------------------------------------- /ExploitRemotingService-master/Installer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/ExploitRemotingService-master/Installer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ExploitRemotingService-master/Installer/RemoteClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/ExploitRemotingService-master/Installer/RemoteClass.cs -------------------------------------------------------------------------------- /ExploitRemotingService-master/Installer/SerializableRegister.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/ExploitRemotingService-master/Installer/SerializableRegister.cs -------------------------------------------------------------------------------- /ExploitRemotingService-master/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/ExploitRemotingService-master/LICENSE -------------------------------------------------------------------------------- /ExploitRemotingService-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/ExploitRemotingService-master/README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/README.md -------------------------------------------------------------------------------- /demo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchtowrlabs/CVE-2024-40711/HEAD/demo.mp4 --------------------------------------------------------------------------------