Posts

Showing posts from December, 2011

Another Challenge of Hash Functions

No comments, please refer to the following docs: "Hash Table Collision Attacks Could Trigger DDoS on a Massive Scale | SecurityWeek.Com" and the research from n.runs AG

Search and Replace Strings in Files Under a Certain Directory

As simple as: $ find thePath -type f -name theFileNamePattern |xargs \ perl -e "s/toBeReplacedString/newString/g" -pi