-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Philipp Boenninghausen
committed
Jan 23, 2024
1 parent
d1457e2
commit 1bebbd8
Showing
110 changed files
with
10,141 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
# Define standard eol format | ||
|
||
# Web Files | ||
*.html text eol=lf | ||
*.md text eol=lf | ||
*.css text eol=lf | ||
*.js text eol=lf | ||
|
||
# Jekyll related files | ||
*.yml text eol=lf | ||
|
||
# Git related files | ||
.gittattributes text eol=lf | ||
.gitignore text eol=lf | ||
.gitkeep text eol=lf | ||
|
||
# Ruby files | ||
*.rb text eol=lf | ||
Gemfile text eol=lf | ||
Gemfile.lock text eol=lf | ||
|
||
# Github specific fies | ||
LICENCE text eol=lf | ||
|
||
# Docker specific files | ||
Dockerfile text eol=lf | ||
|
||
# VSCode files | ||
*.json text eol=lf | ||
|
||
# General multimedia files | ||
*.jpg binary | ||
*.jpeg binary | ||
*.gif binary | ||
*.png binary | ||
*.t3x binary | ||
*.t3d binary | ||
*.exe binary | ||
*.data binary | ||
*.ttf binary | ||
*.eof binary | ||
*.eot binary | ||
*.swf binary | ||
*.mov binary | ||
*.mp4 binary | ||
*.mp3 binary | ||
*.ogg binary | ||
*.flv binary |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# project | ||
_site | ||
.sass-cache | ||
.vagrant | ||
|
||
# general | ||
.DS_Store | ||
Thumbs.db | ||
ehthumbs.db | ||
|
||
Gemfile.lock | ||
|
||
beautiful-jekyll-theme-*.gem | ||
|
||
# PyCharm | ||
/.idea |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
--- | ||
layout: default | ||
title: 404 - Page not found | ||
permalink: /404.html | ||
--- | ||
|
||
<div class="text-center"> | ||
<h1>Whoops, this page doesn't exist.</h1> | ||
<h1>Move along. (404 error)</h1> | ||
<br/> | ||
|
||
<img src="{{ 'assets/img/404-southpark.jpg' | relative_url }}" alt="Not found" /> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# frozen_string_literal: true | ||
|
||
source "https://rubygems.org" | ||
|
||
gemspec |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
MIT License | ||
|
||
Copyright (c) 2023 Dean Attali | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,19 @@ | ||
# intrusion-detection-datasets | ||
A comprehensive overview of datasets for research in host-based and/or network-based intrusion detection with a focus on enterprise networks | ||
## The content of this repository is intended to be viewed through its [webpage](https://maspital.github.io/Intrusion-Detection-Datasets/)! | ||
|
||
|
||
*** | ||
|
||
# Overview | ||
This repository hosts the website for [Intrusion Detection Datasets](https://maspital.github.io/Intrusion-Detection-Datasets/), a collection of datasets suitable for the analysis, evaluation and development of intrusion detection methods. | ||
The scope of this collection can generally be described as "log datasets that enable generation of IDS alerts"; | ||
the main goal is to provide a comprehensive and detailed list of available datasets, aiding researchers in finding and selecting suitable data to work with. | ||
Each dataset has a separate entry, listing key features and describing the underlying scenario, activity, etc. | ||
|
||
|
||
# Contributing | ||
Any kind of contribution is most welcome, both in the form of adding new entries and improving existing ones! | ||
For more information, simply refer to the [Contribution Guide](https://maspital.github.io/Intrusion-Detection-Datasets/content/contributing/). | ||
|
||
|
||
# Acknowledgements | ||
- The webpage was made using [Beautiful Jekyll](https://beautifuljekyll.com/) |
Oops, something went wrong.