├── .gitignore ├── README.md ├── kira.py ├── requirements.txt ├── res ├── Invoke-PSImage.ps1 ├── bin.go ├── payload.ps1 └── rcedit.exe └── util.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | tmp/ 3 | dist/ 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtfulDev/PSImage-Delivery/HEAD/README.md -------------------------------------------------------------------------------- /kira.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtfulDev/PSImage-Delivery/HEAD/kira.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pillow -------------------------------------------------------------------------------- /res/Invoke-PSImage.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtfulDev/PSImage-Delivery/HEAD/res/Invoke-PSImage.ps1 -------------------------------------------------------------------------------- /res/bin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtfulDev/PSImage-Delivery/HEAD/res/bin.go -------------------------------------------------------------------------------- /res/payload.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtfulDev/PSImage-Delivery/HEAD/res/payload.ps1 -------------------------------------------------------------------------------- /res/rcedit.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtfulDev/PSImage-Delivery/HEAD/res/rcedit.exe -------------------------------------------------------------------------------- /util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtfulDev/PSImage-Delivery/HEAD/util.py --------------------------------------------------------------------------------