Jump to content

network intrusion detection system

- - - - -

This topic has been archived. This means that you cannot reply to this topic.
1 reply to this topic

#1
senyi

senyi

    Newbie

  • Members
  • Pip
  • 2 posts
hello people..
m workin on final year project on network intrusion detection system(anomaly based) NIDS
workin on java..n have some questions.
which library in java wud help me..
which is best anomaly detection algorithm..
about the packet capture and filter module
suggest me some useful websites,links,or pdfs,
mail me ur implementations..

any help from u guys wud b appreciated so much..thanks in advance
siik_distroy@hotmail.com

#2
Nathandelane

Nathandelane

    Newbie

  • Members
  • PipPip
  • 22 posts
For network-related programming Java has the java.net package. For general security including digest algorithms (MD5, SHA1, etc.), encryption, and such there's the java.security package and sub-packages. The java.util package contains some archive algorithms like zip and gzip. The javax.crypto package contains some more cryptography libraries. Javax.net has SSL libraries. Javax.security has some higher-level authentication algorithms, like kerberos. And those are a few of the libraries that Java 6 (1.6) comes with if you install Sun's package -- on Linux if you install a different package, then it may not come with all of those out of the box. You can find more information at Java Platform SE 6. Beyond that you could do a search on Java.net or even SourceForge.net to see what other people are working on. And aside from that, you should probably base all of your programming around theoretical and scientific knowledge, so I googled and found this site: FAQ: Network Intrusion Detection Systems, which might be useful to you.