Mode

Purpose: formats the output file that Hackman gives to you.

Syntax:

Mode = number

Where number is

        1 for hex & ASCII format (default)
        2 for hex only format
        3 for binary format (3.0 only)

Note: The output file (input for you) is named out.dat and is placed in the \plugins directory. Records are formatted in 16-byte groups. The first record is the offset. For example this is a sample output file (mode=2):

0000:0097, 91,FF,FF,FF,FF,FF,FF,FF,FF,FF,FF,FF,FF,FF,FF,FF,
0000:00A7, FF,FF,FF,FF,FF,FF,FF,FF,FF,FF,FF,FF,FF,FF,FF,FF,

If the mode had been 1 instead of 2, two 16 characters long string would have been appended after the last FF byte of every string:

0000:0020, 2D,2D,2D,2D,2D,2D,2D,2D,2D,2D,2D,2D,2D,2D,2D,2D, ----------------
0000:0030, 2D,0D,0A,0D,0A,0D,0A,31,2E,20,49,6E,73,74,61,6C, -......1. Instal

Mode 3 is like mode 1 but instead of Hex codes returns binary strings (16 at a row).

Back