Displaying 1 result from an estimated 1 matches for "ermi".
Did you mean:
fermi
1997 Jan 07
3
logwatching
If it''s any help, here''s a sed script that is reasonably good at pulling out
suspicious-looking items generated by various daemons. Fix appropriately...
_H*
==========
# this should match a buncha different stuff
/ [Pp]ermi/b ff
/ PERMI/b ff
/ [Rr]efuse/b ff
/ REFUSE/b ff
/ [Dd]en[yi]/b ff
/ DEN[YI]/b ff
/[Rr]eject/b ff
/REJECT/b ff
/[Bb]ogus/b ff
/[Pp]assw/b ff
/PASSW/b ff
/[Ff]ail[eu]/b ff
/FAIL[EU]/b ff
/[Mm]ismatc/b ff
/ != /b ff
/[Aa]ttack/b ff
/ATTACK/b ff
/[Aa]ttempt/b ff
/ATTEMPT/b ff
/[Ss]poof/b ff
/SPOOF/b f...