Revision
428 -
Directory Listing
-
[select for diffs]
Modified
Tue May 28 13:32:28 2013 UTC
(10 years, 4 months ago)
by
william
Diff to
previous 427
+ fix memory scanner and memory providers to read and write process memory simulataneously without crashing due to null process handle
*** this has been done using ProcessMemoryChunk for all memory read/write operations
** we no longer need to open and close native handles to the process
Revision
419 -
Directory Listing
-
[select for diffs]
Modified
Tue May 28 11:08:26 2013 UTC
(10 years, 4 months ago)
by
william
Diff to
previous 415
+ stop complaining about exception variables not being used: changed from 'throw;' to 'throw ex;'
+ comment-out currently unsued variables:
FloatingMemorySearcher.cs:
static int col_Found_Frozen = 3;
static int col_Added_Frozen = 3;
MemoryScanner.cs:
SafeWaitHandle m_hProcess;
Revision
379 -
Directory Listing
-
[select for diffs]
Modified
Tue Jun 19 08:09:02 2012 UTC
(11 years, 3 months ago)
by
william
Diff to
previous 378
+ correctly read linker timedatestamp
// This field holds the number of seconds since December 31st, 1969, at 4:00 P.M.
Revision
290 -
Directory Listing
-
[select for diffs]
Modified
Tue Jun 5 09:30:32 2012 UTC
(11 years, 3 months ago)
by
william
Diff to
previous 286
+ IMAGE_NT_HEADERS->IMAGE_FILE_HEADER set FieldOffset to 8 to not overlapp Signature
+ add exception handling that will bubble up from the using statement
Revision
254 -
Directory Listing
-
[select for diffs]
Modified
Sun Jun 3 16:44:42 2012 UTC
(11 years, 4 months ago)
by
william
Diff to
previous 253
ReadProcessMemory(): byte[] buffer = new byte[] { }; ==> byte[] buffer = new byte[bytesToRead]; (the lack of capacity was causing errors to be thrown)
Revision
160 -
Directory Listing
-
[select for diffs]
Modified
Mon May 28 05:30:14 2012 UTC
(11 years, 4 months ago)
by
william
Diff to
previous 159
Force the use of the enum values for these types
public struct IMAGE_FILE_HEADER
{
public MachineType Machine;
public DllCharacteristicsType Characteristics;
}