aboutsummaryrefslogtreecommitdiff
path: root/ReverseEngineering/Get-MethodAddress.ps1
AgeCommit message (Collapse)AuthorFilesLines
2013-04-05Fixed x86 bug in Get-MethodAddressMatt Graeber1-110/+119
Get-MethodAddress was not working correctly in 32-bit PowerShell because it was returning a [UInt64] value when it should have been a [UInt32]. This fix will detect if PowerShell is running as 32 or 64-bit and define its return type accordingly.
2013-02-17Get-MethodAddress now returns an IntPtr.bitform1-3/+1
It previously returned a UInt64. Returning an IntPtr makes more sense.
2013-01-21Consistency improvements in comment-based helpbitform1-1/+1
2013-01-19Renamed RE_Tools. Now ReverseEngineering modulebitform1-0/+113
* I renamed RE_Tools to ReverseEngineering and made it a module. * Slight consistency modifications were made to documentation. * This is one step in the process of modularizing all of PowerSploit.