-Arbomb-------------------Archive Bomb tester--------

Rather simple....

	make
	make install

	arbomb binary will be installed in /usr/local/bin

Using arbomb:

	Usage: arbomb -f <archive to test> [-u KBytes] [-r ratio] [-c filecount] [-v]
        -f <archive to test> : The file which needs to be tested for volatility
        -u <KBytes> : Maximum size in KBytes which a single file can be
        -r <ratio> : Iteger ratio maxmimum between compressed size and uncompressed size
        -c <filecount> : Maximum number of files permitted
        -c : Log to syslog
        -d : Activate debugging mode
        -v : Arbomb version

RETURN VALUES:

AB_ERR_RATIO	100
	The archive exceeded the ratio limits

AB_ERR_FCOUNT	101
	The archive exceeded the file count limits

AB_ERR_UCSIZE	102
	The archive exceeded the uncompressed size limits

AB_ERR_INTERNAL	-1
	There was a problem with the processing of the archive
	(ie, broken archive)


EXAMPLE: (BASH script)


	result=`./arbomb -f $inputzip -r 100 -c 1000 -u 100000`
	if [ $result -gt 0 ]; then
		printf "Error - Archive violated limits\n"


Regards.

--END.
