February 2012
Intermediate to advanced
800 pages
23h 55m
English
Arrays are used by programmers to define an ordered set of similar data items. Malware sometimes uses an array of pointers to strings that contain multiple hostnames that are used as options for connections.
Example 6-24 shows two arrays used by one program, both of which are
set during the iteration through the for loop. Array a is locally defined, and array b is
globally defined. These definitions will impact the assembly code.
Example 6-24. C code for an array
int b[5]= {123,87,487,7,978}; void main() { int i;int a[5];for(i = 0; i<5; i++) {a[i] = i;b[i] = i;} }
In assembly, arrays are accessed using a base address as a starting point. The size of each element is not always obvious, but it can be determined by seeing how ...