Ondump: Many years ago John Miller III wrote a utility called tbdump, this is our updated and enhanced version of that utility. It prints the content of the passed file in a both hex and, where possible, human readable. The Makefile for Solaris and Linux and the GCC compiler is below. # hard gcc options OPTS=-g -ansi -Wall -O3 -Wshadow -Wstrict-prototypes -Wmissing-prototypes -pedantic -static -std=c99 CC=gcc all: make `uname` SunOS: ondump.SunOS ondump.SunOS: ondump.c ${CC} -xarch=v9 -DSUNOS -o ondump ondump.c ${CC} -xarch=v9 -DSUNOS -o onpatch onpatch.c Linux: ondump.Linux ondump.Linux: ondump.c ${CC} ${OPTS} -DLINUX -o ondump ondump.c ${CC} ${OPTS} -DLINUX -o onpatch onpatch.c clean: rm -f *.o ondump onpatch Onpatch: This utility will allow to patch IDS pages, actually it will patch any binary file. Onspeed: A simple piece of ESQLC for quick and easy comparison testing between versions, platforms etc. Just run the following to compile. esql onspeed.ec -o onspeed -static