kdd99_feature_extractor
Utility for extraction of subset of KDD '99 features from realtime network traffic or .pcap file
File Explorer
Download Latest Version (.zip)- FindPCAP.cmake
- extractor_output_header.txt
- flag_values.txt
- protocol_values.txt
- service_values.txt
- tcp_state_diagram.png
- tcp_state_diagram.xml
- CMakeLists.txt
- Config.cpp
- Config.h
- Conversation.cpp
- Conversation.h
- ConversationFeatures.cpp
- ConversationFeatures.h
- ConversationReconstructor.cpp
- ConversationReconstructor.h
- FeatureUpdater.h
- FeatureUpdaterCount.cpp
- FeatureUpdaterCount.h
- FeatureUpdaterTime.cpp
- FeatureUpdaterTime.h
- FiveTuple.cpp
- FiveTuple.h
- IcmpConversation.cpp
- IcmpConversation.h
- IntervalKeeper.cpp
- IntervalKeeper.h
- IpDatagram.cpp
- IpDatagram.h
- IpFragment.cpp
- IpFragment.h
- IpReassembler.cpp
- IpReassembler.h
- IpReassemblyBuffer.cpp
- IpReassemblyBuffer.h
- IpReassemblyBufferHoleList.cpp
- IpReassemblyBufferHoleList.h
- main.cpp
- net.cpp
- net.h
- Packet.cpp
- Packet.h
- ReferenceCounter.cpp
- ReferenceCounter.h
- Sniffer.cpp
- Sniffer.h
- StatsCollector.h
- StatsEngine.cpp
- StatsEngine.h
- StatsPerHost.cpp
- StatsPerHost.h
- StatsPerService.cpp
- StatsPerService.h
- StatsPerServiceWithSrcPort.cpp
- StatsPerServiceWithSrcPort.h
- StatsWindow.cpp
- StatsWindow.h
- StatsWindowCount.cpp
- StatsWindowCount.h
- StatsWindowTime.cpp
- StatsWindowTime.h
- TcpConnection.cpp
- TcpConnection.h
- Timestamp.cpp
- Timestamp.h
- types.h
- UdpConversation.cpp
- UdpConversation.h
- .gitignore
- CMakeLists.txt
- LICENSE
- README.md
# Installation Guide
1. Get the code
git clone https://github.com/AI-IDS/kdd99_feature_extractor
Downloads the entire project code from GitHub to your computer.
cd kdd99_feature_extractor
Moves into the project folder you just downloaded.
2. CMake
Medium RecommendedPrerequisites
mkdir build && cd build
Creates a folder to hold the build output and moves into it.
cmake ..
Analyzes the source code and generates build configuration files (must be run inside the build folder).
make
Compiles the code based on the generated build configuration to produce an executable.
Check that an executable was created inside the build folder, then run it directly (e.g. ./build/app_name).
// repository documentation
Was this content helpful?
(0 ratings)
