├── .gitattributes ├── .gitignore ├── App.config ├── Models ├── Abstracts │ ├── Payloads.cs │ ├── Persist.cs │ ├── Tradecraft.cs │ └── Utility.cs ├── Data │ ├── Data.cs │ └── ParsedArgs.cs └── Exceptions │ └── Exceptions.cs ├── Modules ├── Payloads │ ├── HelloWorld.cs │ ├── MsgBox.cs │ ├── PopCalc.cs │ └── PopCalcAPI.cs ├── Persist │ ├── MSBuild │ │ ├── InlineTasks.cs │ │ └── OverrideTasks.cs │ ├── Misc │ │ ├── PsProfiles.cs │ │ └── StartupFolder.cs │ ├── Registry │ │ ├── GenericRegAdd.cs │ │ └── RunKeys.cs │ └── WMI │ │ └── CommandLine.cs └── Tradecraft │ ├── Compile.cs │ ├── Creds.cs │ ├── FileRead.cs │ ├── NetList.cs │ ├── ProcList.cs │ ├── RegList.cs │ ├── SchList.cs │ ├── SvcList.cs │ ├── Timestomp.cs │ └── WMIQuery.cs ├── PersistAssist.csproj ├── PersistAssist.sln ├── PersistAssist.yar ├── Program.cs ├── Properties └── AssemblyInfo.cs ├── Utils ├── Extensions │ ├── API.cs │ ├── Extensions.cs │ └── Structs.cs ├── PersistOps │ ├── MSBuildOps.cs │ ├── RegistryOps.cs │ ├── SchTaskOps.cs │ ├── ServiceOps.cs │ └── WMIOps.cs ├── Tradecraft │ ├── Compiler.cs │ ├── Creds.cs │ ├── Network.cs │ ├── Procs.cs │ └── TimeStomp.cs └── UI │ └── UI.cs ├── packages.config └── readme.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/PersistAssist/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/PersistAssist/HEAD/.gitignore -------------------------------------------------------------------------------- /App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/PersistAssist/HEAD/App.config -------------------------------------------------------------------------------- /Models/Abstracts/Payloads.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/PersistAssist/HEAD/Models/Abstracts/Payloads.cs -------------------------------------------------------------------------------- /Models/Abstracts/Persist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/PersistAssist/HEAD/Models/Abstracts/Persist.cs -------------------------------------------------------------------------------- /Models/Abstracts/Tradecraft.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/PersistAssist/HEAD/Models/Abstracts/Tradecraft.cs -------------------------------------------------------------------------------- /Models/Abstracts/Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/PersistAssist/HEAD/Models/Abstracts/Utility.cs -------------------------------------------------------------------------------- /Models/Data/Data.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/PersistAssist/HEAD/Models/Data/Data.cs -------------------------------------------------------------------------------- /Models/Data/ParsedArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/PersistAssist/HEAD/Models/Data/ParsedArgs.cs -------------------------------------------------------------------------------- /Models/Exceptions/Exceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/PersistAssist/HEAD/Models/Exceptions/Exceptions.cs -------------------------------------------------------------------------------- /Modules/Payloads/HelloWorld.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/PersistAssist/HEAD/Modules/Payloads/HelloWorld.cs -------------------------------------------------------------------------------- /Modules/Payloads/MsgBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/PersistAssist/HEAD/Modules/Payloads/MsgBox.cs -------------------------------------------------------------------------------- /Modules/Payloads/PopCalc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/PersistAssist/HEAD/Modules/Payloads/PopCalc.cs -------------------------------------------------------------------------------- /Modules/Payloads/PopCalcAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/PersistAssist/HEAD/Modules/Payloads/PopCalcAPI.cs -------------------------------------------------------------------------------- /Modules/Persist/MSBuild/InlineTasks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/PersistAssist/HEAD/Modules/Persist/MSBuild/InlineTasks.cs -------------------------------------------------------------------------------- /Modules/Persist/MSBuild/OverrideTasks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/PersistAssist/HEAD/Modules/Persist/MSBuild/OverrideTasks.cs -------------------------------------------------------------------------------- /Modules/Persist/Misc/PsProfiles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/PersistAssist/HEAD/Modules/Persist/Misc/PsProfiles.cs -------------------------------------------------------------------------------- /Modules/Persist/Misc/StartupFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/PersistAssist/HEAD/Modules/Persist/Misc/StartupFolder.cs -------------------------------------------------------------------------------- /Modules/Persist/Registry/GenericRegAdd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/PersistAssist/HEAD/Modules/Persist/Registry/GenericRegAdd.cs -------------------------------------------------------------------------------- /Modules/Persist/Registry/RunKeys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/PersistAssist/HEAD/Modules/Persist/Registry/RunKeys.cs -------------------------------------------------------------------------------- /Modules/Persist/WMI/CommandLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/PersistAssist/HEAD/Modules/Persist/WMI/CommandLine.cs -------------------------------------------------------------------------------- /Modules/Tradecraft/Compile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/PersistAssist/HEAD/Modules/Tradecraft/Compile.cs -------------------------------------------------------------------------------- /Modules/Tradecraft/Creds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/PersistAssist/HEAD/Modules/Tradecraft/Creds.cs -------------------------------------------------------------------------------- /Modules/Tradecraft/FileRead.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/PersistAssist/HEAD/Modules/Tradecraft/FileRead.cs -------------------------------------------------------------------------------- /Modules/Tradecraft/NetList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/PersistAssist/HEAD/Modules/Tradecraft/NetList.cs -------------------------------------------------------------------------------- /Modules/Tradecraft/ProcList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/PersistAssist/HEAD/Modules/Tradecraft/ProcList.cs -------------------------------------------------------------------------------- /Modules/Tradecraft/RegList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/PersistAssist/HEAD/Modules/Tradecraft/RegList.cs -------------------------------------------------------------------------------- /Modules/Tradecraft/SchList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/PersistAssist/HEAD/Modules/Tradecraft/SchList.cs -------------------------------------------------------------------------------- /Modules/Tradecraft/SvcList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/PersistAssist/HEAD/Modules/Tradecraft/SvcList.cs -------------------------------------------------------------------------------- /Modules/Tradecraft/Timestomp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/PersistAssist/HEAD/Modules/Tradecraft/Timestomp.cs -------------------------------------------------------------------------------- /Modules/Tradecraft/WMIQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/PersistAssist/HEAD/Modules/Tradecraft/WMIQuery.cs -------------------------------------------------------------------------------- /PersistAssist.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/PersistAssist/HEAD/PersistAssist.csproj -------------------------------------------------------------------------------- /PersistAssist.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/PersistAssist/HEAD/PersistAssist.sln -------------------------------------------------------------------------------- /PersistAssist.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/PersistAssist/HEAD/PersistAssist.yar -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/PersistAssist/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/PersistAssist/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Utils/Extensions/API.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/PersistAssist/HEAD/Utils/Extensions/API.cs -------------------------------------------------------------------------------- /Utils/Extensions/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/PersistAssist/HEAD/Utils/Extensions/Extensions.cs -------------------------------------------------------------------------------- /Utils/Extensions/Structs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/PersistAssist/HEAD/Utils/Extensions/Structs.cs -------------------------------------------------------------------------------- /Utils/PersistOps/MSBuildOps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/PersistAssist/HEAD/Utils/PersistOps/MSBuildOps.cs -------------------------------------------------------------------------------- /Utils/PersistOps/RegistryOps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/PersistAssist/HEAD/Utils/PersistOps/RegistryOps.cs -------------------------------------------------------------------------------- /Utils/PersistOps/SchTaskOps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/PersistAssist/HEAD/Utils/PersistOps/SchTaskOps.cs -------------------------------------------------------------------------------- /Utils/PersistOps/ServiceOps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/PersistAssist/HEAD/Utils/PersistOps/ServiceOps.cs -------------------------------------------------------------------------------- /Utils/PersistOps/WMIOps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/PersistAssist/HEAD/Utils/PersistOps/WMIOps.cs -------------------------------------------------------------------------------- /Utils/Tradecraft/Compiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/PersistAssist/HEAD/Utils/Tradecraft/Compiler.cs -------------------------------------------------------------------------------- /Utils/Tradecraft/Creds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/PersistAssist/HEAD/Utils/Tradecraft/Creds.cs -------------------------------------------------------------------------------- /Utils/Tradecraft/Network.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/PersistAssist/HEAD/Utils/Tradecraft/Network.cs -------------------------------------------------------------------------------- /Utils/Tradecraft/Procs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/PersistAssist/HEAD/Utils/Tradecraft/Procs.cs -------------------------------------------------------------------------------- /Utils/Tradecraft/TimeStomp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/PersistAssist/HEAD/Utils/Tradecraft/TimeStomp.cs -------------------------------------------------------------------------------- /Utils/UI/UI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/PersistAssist/HEAD/Utils/UI/UI.cs -------------------------------------------------------------------------------- /packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/PersistAssist/HEAD/packages.config -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/PersistAssist/HEAD/readme.md --------------------------------------------------------------------------------