Clean up comment typos from copy/pasta

GSoC/Meterpreter_Web_Console
bwatters-r7 2018-05-03 14:43:31 -05:00
parent 96b892a546
commit c08f45223d
No known key found for this signature in database
GPG Key ID: ECC0F0A52E65F268
1 changed files with 2 additions and 2 deletions

View File

@ -315,11 +315,11 @@ DLLEXPORT ULONG_PTR WINAPI ReflectiveLoader( VOID )
// uiValueB = the address of the import directory
uiValueB = (ULONG_PTR)&((PIMAGE_NT_HEADERS)uiHeaderValue)->OptionalHeader.DataDirectory[ IMAGE_DIRECTORY_ENTRY_IMPORT ];
// we assume their is an import table to process
// we assume there is an import table to process
// uiValueC is the first entry in the import table
uiValueC = ( uiBaseAddress + ((PIMAGE_DATA_DIRECTORY)uiValueB)->VirtualAddress );
// itterate through all imports
// iterate through all imports
while( ((PIMAGE_IMPORT_DESCRIPTOR)uiValueC)->Name )
{
// use LoadLibraryA to load the imported module into memory