wok-6.x diff dev86/stuff/com2exe @ rev 13225
fail2ban: add fail2ban filter
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Mon Aug 13 19:15:01 2012 +0200 (2012-08-13) |
parents | a13a6c5b176e |
children | 12326fc2d995 |
line diff
1.1 --- a/dev86/stuff/com2exe Sun Aug 12 15:55:25 2012 +0200 1.2 +++ b/dev86/stuff/com2exe Mon Aug 13 19:15:01 2012 +0200 1.3 @@ -1,10 +1,10 @@ 1.4 #!/bin/sh 1.5 1.6 -[ ! -s "$1" ] && echo "Usage: $0 file.com > file.exe" && exit 1 1.7 -S=$(stat -c %s $1) 1.8 +[ ! -s "$1" ] && echo "Usage: $0 file.com [extra_ss]> file.exe" && exit 1 1.9 +S=$((32+$(stat -c %s $1))) 1.10 P=$((($S+511)/512)) 1.11 E=$((4096-(32*$P))) 1.12 -for i in 0x5A4D $(($S%512)) $P 0 2 $E $E $((($P/128)*256-16)) -2 0 256 -16 28 0 0 0 1.13 +for i in 0x5A4D $(($S%512)) $P 0 2 $E $E $((${2:-0}-16)) -2 0 256 -16 28 0 0 0 1.14 do printf '\\\\x%02X\\\\x%02X' $(($i&255)) $((($i>>8)&255)) | xargs echo -en 1.15 done 1.16 cat $1