Skip to content

Instantly share code, notes, and snippets.

@k4nfr3
Created June 18, 2024 11:36
Show Gist options
  • Save k4nfr3/b6a54bdd647273a3261c8c2bc34a9c24 to your computer and use it in GitHub Desktop.
Save k4nfr3/b6a54bdd647273a3261c8c2bc34a9c24 to your computer and use it in GitHub Desktop.

Revisions

  1. k4nfr3 created this gist Jun 18, 2024.
    5 changes: 5 additions & 0 deletions gistfile1.txt
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,5 @@
    $SpoofedAst = [ScriptBlock]::Create("Write-Output 'Hello'").Ast
    $ExecutedAst = [ScriptBlock]::Create("Write-Output 'My Hidden Hello Hidden'").Ast
    $Ast = [System.Management.Automation.Language.ScriptBlockAst]::new($SpoofedAst.Extent,$null,$null,$null,$ExecutedAst.EndBlock.Copy(),$null)
    $Sb = $Ast.GetScriptBlock()
    $Sb&