├── .gitignore ├── LICENSE ├── README.md ├── checkpoints ├── checkpoint ├── seq2seq-4805.data-00000-of-00001 ├── seq2seq-4805.index ├── seq2seq-4805.meta └── seq2seq.meta ├── datasets ├── vulnbank_anomaly.txt └── vulnbank_train.txt ├── environment.yml ├── requirements.txt ├── seq2seq.ipynb ├── slides └── detecting_web_attacks_rnn.pdf └── utils ├── __init__.py ├── reader.py ├── utils.py ├── vocab.json └── vocab.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | .idea 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PositiveTechnologies/seq2seq-web-attack-detection/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PositiveTechnologies/seq2seq-web-attack-detection/HEAD/README.md -------------------------------------------------------------------------------- /checkpoints/checkpoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PositiveTechnologies/seq2seq-web-attack-detection/HEAD/checkpoints/checkpoint -------------------------------------------------------------------------------- /checkpoints/seq2seq-4805.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PositiveTechnologies/seq2seq-web-attack-detection/HEAD/checkpoints/seq2seq-4805.data-00000-of-00001 -------------------------------------------------------------------------------- /checkpoints/seq2seq-4805.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PositiveTechnologies/seq2seq-web-attack-detection/HEAD/checkpoints/seq2seq-4805.index -------------------------------------------------------------------------------- /checkpoints/seq2seq-4805.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PositiveTechnologies/seq2seq-web-attack-detection/HEAD/checkpoints/seq2seq-4805.meta -------------------------------------------------------------------------------- /checkpoints/seq2seq.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PositiveTechnologies/seq2seq-web-attack-detection/HEAD/checkpoints/seq2seq.meta -------------------------------------------------------------------------------- /datasets/vulnbank_anomaly.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PositiveTechnologies/seq2seq-web-attack-detection/HEAD/datasets/vulnbank_anomaly.txt -------------------------------------------------------------------------------- /datasets/vulnbank_train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PositiveTechnologies/seq2seq-web-attack-detection/HEAD/datasets/vulnbank_train.txt -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PositiveTechnologies/seq2seq-web-attack-detection/HEAD/environment.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PositiveTechnologies/seq2seq-web-attack-detection/HEAD/requirements.txt -------------------------------------------------------------------------------- /seq2seq.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PositiveTechnologies/seq2seq-web-attack-detection/HEAD/seq2seq.ipynb -------------------------------------------------------------------------------- /slides/detecting_web_attacks_rnn.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PositiveTechnologies/seq2seq-web-attack-detection/HEAD/slides/detecting_web_attacks_rnn.pdf -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PositiveTechnologies/seq2seq-web-attack-detection/HEAD/utils/reader.py -------------------------------------------------------------------------------- /utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PositiveTechnologies/seq2seq-web-attack-detection/HEAD/utils/utils.py -------------------------------------------------------------------------------- /utils/vocab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PositiveTechnologies/seq2seq-web-attack-detection/HEAD/utils/vocab.json -------------------------------------------------------------------------------- /utils/vocab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PositiveTechnologies/seq2seq-web-attack-detection/HEAD/utils/vocab.py --------------------------------------------------------------------------------