├── .gitattributes ├── .gitignore ├── DisableCylance.ps1 ├── Get-ChromeDump.ps1 ├── Get-DXWebcamVideo.ps1 ├── Get-FoxDump.ps1 ├── Invoke-ExecuteMSBuild.ps1 ├── Invoke-RemoteMimikatz.ps1 ├── Invoke-WindowsEnum.ps1 ├── Invoke-WmicDriveBy.ps1 ├── JScriptShell ├── DarkHorse.js ├── New-JScriptShell.ps1 └── Program.cs ├── LICENSE └── WMIBackdoor.ps1 /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorrior/RandomPS-Scripts/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorrior/RandomPS-Scripts/HEAD/.gitignore -------------------------------------------------------------------------------- /DisableCylance.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorrior/RandomPS-Scripts/HEAD/DisableCylance.ps1 -------------------------------------------------------------------------------- /Get-ChromeDump.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorrior/RandomPS-Scripts/HEAD/Get-ChromeDump.ps1 -------------------------------------------------------------------------------- /Get-DXWebcamVideo.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorrior/RandomPS-Scripts/HEAD/Get-DXWebcamVideo.ps1 -------------------------------------------------------------------------------- /Get-FoxDump.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorrior/RandomPS-Scripts/HEAD/Get-FoxDump.ps1 -------------------------------------------------------------------------------- /Invoke-ExecuteMSBuild.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorrior/RandomPS-Scripts/HEAD/Invoke-ExecuteMSBuild.ps1 -------------------------------------------------------------------------------- /Invoke-RemoteMimikatz.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorrior/RandomPS-Scripts/HEAD/Invoke-RemoteMimikatz.ps1 -------------------------------------------------------------------------------- /Invoke-WindowsEnum.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorrior/RandomPS-Scripts/HEAD/Invoke-WindowsEnum.ps1 -------------------------------------------------------------------------------- /Invoke-WmicDriveBy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorrior/RandomPS-Scripts/HEAD/Invoke-WmicDriveBy.ps1 -------------------------------------------------------------------------------- /JScriptShell/DarkHorse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorrior/RandomPS-Scripts/HEAD/JScriptShell/DarkHorse.js -------------------------------------------------------------------------------- /JScriptShell/New-JScriptShell.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorrior/RandomPS-Scripts/HEAD/JScriptShell/New-JScriptShell.ps1 -------------------------------------------------------------------------------- /JScriptShell/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorrior/RandomPS-Scripts/HEAD/JScriptShell/Program.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorrior/RandomPS-Scripts/HEAD/LICENSE -------------------------------------------------------------------------------- /WMIBackdoor.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xorrior/RandomPS-Scripts/HEAD/WMIBackdoor.ps1 --------------------------------------------------------------------------------