Intrusion Detection Systems mailing list archives
Re: brute force
From: mjr () nfr net (Marcus J. Ranum)
Date: Fri, 30 Jun 2000 11:25:51 -0400
Archive: http://msgs.securepoint.com/ids FAQ: http://www.ticm.com/kb/faq/idsfaq.html IDS: http://www-rnks.informatik.tu-cottbus.de/~sobirey/ids.html UNSUBSCRIBE: email "unsubscribe ids" to majordomo () uow edu au
Im looking for a fast and efficient brute force algorithm
Brute force for _what_ purpose?
The term "brute force" characterizes the elegance of an
algorithm, it doesn't describe what the algorithm _does_.
So you might be talking about brute force searching, brute
force decryption, brute force sorting, whatever.
Here's a simple (and efficient and fast) brute force
algorithm that doesn't do much. ;) It parallelizes pretty
well, too!
main()
{
while(1)
;
}
mjr.
-----
Marcus J. Ranum
Chief Technology Officer, Network Flight Recorder, Inc.
Work: http://www.nfr.net
Personal: http://pubweb.nfr.net/~mjr
Current thread:
- brute force chris (Jun 29)
- Re: brute force Marcus J. Ranum (Jun 30)
