aboutsummaryrefslogtreecommitdiff
path: root/Capstone/Capstone.psd1
diff options
context:
space:
mode:
authormattifestation <mattgraeber@gmail.com>2014-11-16 10:26:11 -0500
committermattifestation <mattgraeber@gmail.com>2014-11-16 10:26:11 -0500
commit956e4c968a1795d868e35fcb72311704d616cbaf (patch)
treeca962602b87d3a7c89b6d864f6e17c541eb3cce2 /Capstone/Capstone.psd1
parent97034006f63f2691cde8ddb1055b1253c6f93cce (diff)
downloadPowerSploit-956e4c968a1795d868e35fcb72311704d616cbaf.tar.gz
PowerSploit-956e4c968a1795d868e35fcb72311704d616cbaf.zip
Moving all RE functionality to PowerShellArsenal
https://github.com/mattifestation/PowerShellArsenal PowerSploit will now stay true to its roots of being a purely offensive PowerShell module.
Diffstat (limited to 'Capstone/Capstone.psd1')
-rw-r--r--Capstone/Capstone.psd148
1 files changed, 0 insertions, 48 deletions
diff --git a/Capstone/Capstone.psd1 b/Capstone/Capstone.psd1
deleted file mode 100644
index d85443f..0000000
--- a/Capstone/Capstone.psd1
+++ /dev/null
@@ -1,48 +0,0 @@
-@{
-
-# Script module or binary module file associated with this manifest.
-ModuleToProcess = 'Capstone.psm1'
-
-# Version number of this module.
-ModuleVersion = '2.0.0.0'
-
-# ID used to uniquely identify this module
-GUID = 'bc335667-02fd-46c4-a3d9-0a5113c9c03b'
-
-# Author of this module
-Author = 'Matthew Graeber'
-
-# Copyright statement for this module
-Copyright = 'see LICENSE.TXT'
-
-# Description of the functionality provided by this module
-Description = 'Capstone Disassembly Framework Binding Module'
-
-# Minimum version of the Windows PowerShell engine required by this module
-PowerShellVersion = '3.0'
-
-# Minimum version of the common language runtime (CLR) required by this module
-CLRVersion = '4.0'
-
-# Assemblies that must be loaded prior to importing this module
-RequiredAssemblies = 'lib/capstone.dll'
-
-# Format files (.ps1xml) to be loaded when importing this module
-FormatsToProcess = 'Get-CSDisassembly.format.ps1xml'
-
-# Functions to export from this module
-FunctionsToExport = '*'
-
-# List of all modules packaged with this module.
-ModuleList = @(@{ModuleName = 'Capstone'; ModuleVersion = '1.0.0.0'; GUID = 'bc335667-02fd-46c4-a3d9-0a5113c9c03b'})
-
-# List of all files packaged with this module
-FileList = 'Capstone.psm1',
- 'Capstone.psd1',
- 'Get-CSDisassembly.format.ps1xml',
- 'LICENSE.TXT',
- 'README',
- 'lib/capstone.dll',
- 'lib/x86/libcapstone.dll',
- 'lib/x64/libcapstone.dll'
-}