WILEY

Publishers since 1807

Wiley - Publishers Since 1807

United States Change Location

cart.gif CART |  MY ACCOUNT |  CONTACT US |  HELP    
Cover image for product 0764574817
Reversing: Secrets of Reverse Engineering
ISBN: 978-0-7645-7481-8
Paperback
624 pages
April 2005
US $40.00 Add to Cart

This price is valid for United States. Change location to view local pricing and availability.

Other Available Formats: Adobe E-Book
  • Description
  • Table of Contents
  • Author Information
  • Errata
  • Download

Do you think you've discovered an error in this book? Please check the list of errata below to see if we've already addressed the error. If not, please submit the error via our Errata Form. We will attempt to verify your error; if you're right, we will post a correction below.

ChapterPageDetailsDatePrint Run
43 Error in Code
char szWelcome = "This string will be stored in the executable's preinitialized data section";

should be:

char szWelcome[] = "This string will be stored in the executable's preinitialized data section";
09/03/2007
164, 165 Error in Text
Heading: Search Loop 3

It says that it is using EDI as a counter.

should be:

ESI.


*This error also occurs at top of page 165
07/27/2007
185 Error in Code
MOV EAX, ECX
SHR ECX, 2 <--- right shift

A right shift by 2 will divide by 4 and not multiply by 4 as the text says:

"This code..., ECX with ElementSize*4,.."

should be:

ElementSize/4.
07/31/2007