aboutsummaryrefslogtreecommitdiff
path: root/ReverseEngineering/Get-ILDisassembly.ps1
diff options
context:
space:
mode:
authormattifestation <mattgraeber@gmail.com>2014-01-19 13:56:32 -0500
committermattifestation <mattgraeber@gmail.com>2014-01-19 13:56:48 -0500
commit5fede76351dd5a182f4ff88d4db4b7eeaeacbb98 (patch)
treed085c879a9d39c889cb156250bc7226fd773512a /ReverseEngineering/Get-ILDisassembly.ps1
parent4f5faf672ffa35f139b94df7e5f3f45e45a4e31a (diff)
downloadPowerSploit-5fede76351dd5a182f4ff88d4db4b7eeaeacbb98.tar.gz
PowerSploit-5fede76351dd5a182f4ff88d4db4b7eeaeacbb98.zip
Capstone module now incorporates framework 2.0RC1
* I also moved the contents of Get-CSDisassembly.ps1 into Capstone.psm1
Diffstat (limited to 'ReverseEngineering/Get-ILDisassembly.ps1')
-rw-r--r--ReverseEngineering/Get-ILDisassembly.ps12
1 files changed, 1 insertions, 1 deletions
diff --git a/ReverseEngineering/Get-ILDisassembly.ps1 b/ReverseEngineering/Get-ILDisassembly.ps1
index f2022e3..6948919 100644
--- a/ReverseEngineering/Get-ILDisassembly.ps1
+++ b/ReverseEngineering/Get-ILDisassembly.ps1
@@ -198,7 +198,7 @@ http://www.ecma-international.org/publications/files/ECMA-ST/Ecma-335.pdf
$Instruction = @{
Position = $InstructionPostion
- Instruction = $Op.Name
+ Instruction = $Op
Operand = $Operand
MetadataToken = $OpInt
}