zoukankan      html  css  js  c++  java
  • Invoke-PSImage 使用简介

    github:peewpw/Invoke-PSImage

    简介:

    Encodes a PowerShell script in the pixels of a PNG file and generates a oneliner to execute

    Invoke-PSImage takes a PowerShell script and encodes the bytes of the script into the pixels of a PNG image. It generates a oneliner for executing either from a file of from the web.

    It can either create a new image using only the payload data, or it can embed the payload in the least significant bytes of an existing image so that it looks like an actual picture. The image is saved as a PNG, and can be losslessly compressed without affecting the ability to execute the payload as the data is stored in the colors themselves. When creating new images, normal PowerShell scripts are actually significantly compressed, usually producing a png with a filesize ~50% of the original script.

    With the embed method, the least significant 4 bits of 2 color values in each pixel are used to hold the payload. Image quality will suffer as a result, but it still looks decent. It can accept most image types as input, but output will always be a PNG because it needs to be lossless. Each pixel of the image is used to hold one byte of script, so you will need an image with at least as many pixels as bytes in your script. This is fairly easy—for example, Invoke-Mimikatz fits into a 1920x1200 image.

    参数说明:

    -Script [filepath] The path to the script to embed in the Image.

    -Out [filepath] The file to save the resulting image to (image will be a PNG)

    -Image [filepath] The image to embed the script in. (optional)

    -WebRequest Output a command for reading the image from the web using Net.WebClient. You will need to host the image and insert the URL into the command.

    -PictureBox Output a command for reading the image from the web using System.Windows.Forms.PictureBox. You will need to host the image and insert the URL into the command.

    示例:

    Create an image with the script "Invoke-Mimikatz.ps1" embeded in it and output a oneliner to execute from disk:

    PS>Import-Module .Invoke-PSImage.ps1
    PS>Invoke-PSImage -Script .Invoke-Mimikatz.ps1 -Out .evil-kiwi.png -Image .kiwi.jpg
       [Oneliner to execute from a file]

    Create an image with the script "Invoke-Mimikatz.ps1" embeded in it and output a oneliner to execute from the web (you still have to host the image and edit the URL):

    PS>Import-Module .Invoke-PSImage.ps1
    PS>Invoke-PSImage -Script .Invoke-Mimikatz.ps1 -Out .evil-kiwi.png -Image .kiwi.jpg -WebRequest
       [Oneliner to execute from the web]
  • 相关阅读:
    第一次作业-准备篇
    个人作业——软件工程实践总结
    团队作业第二次—项目选题报告
    软工实践第三次作业(结对第二次作业)
    软工实践第二次作业(结对第一次作业)
    第一次作业-准备篇
    软工实践|个人作业——软件工程实践总结作业
    软工实践|团队作业第二次—项目选题报告
    软工实践|结对第二次—文献摘要热词统计及进阶需求
    软工实践|结对第一次—原型设计(文献摘要热词统计)
  • 原文地址:https://www.cnblogs.com/yyxianren/p/12365160.html
Copyright © 2011-2022 走看看