├── .gitignore ├── DGAClassificationAll.py ├── DGAClassificationClass.py ├── README.md ├── RNN ├── RnnDGAClassificationClass.py ├── dataset_all.csv └── decoder_attention.py ├── all_dga.txt ├── all_legit.txt ├── dga_algorithms ├── Conficker.cpp ├── Cryptolocker.pl ├── GameoverZeus.py ├── Matsnu.py ├── PushDO.py ├── Ramdo.cpp ├── Rovnix.py └── Tinba.py ├── dga_wordlists ├── conficker.txt ├── cryptolocker.txt ├── dds-malicious-domains.csv ├── goz.txt ├── main.py ├── matsnu.txt ├── new_goz.txt ├── opendns-random-domains.txt ├── opendns-top-domains.txt ├── others_dga.txt ├── pushdo.txt ├── ramdo.txt ├── rovnix.txt ├── tinba.txt └── zeus.txt └── help ├── 1000domains.py ├── 1000domains ├── alexa_1000.txt ├── conficker_1000.txt ├── cryptolocker_1000.txt ├── matsnu_1000.txt ├── pushdo_1000.txt ├── ramdo_1000.txt ├── rovnix_1000.txt ├── tinba_1000.txt └── zeus_1000.txt ├── alexa.csv ├── russian_words_translit.txt ├── usdeclar.txt └── words.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewaeva/DGA/HEAD/.gitignore -------------------------------------------------------------------------------- /DGAClassificationAll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewaeva/DGA/HEAD/DGAClassificationAll.py -------------------------------------------------------------------------------- /DGAClassificationClass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewaeva/DGA/HEAD/DGAClassificationClass.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewaeva/DGA/HEAD/README.md -------------------------------------------------------------------------------- /RNN/RnnDGAClassificationClass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewaeva/DGA/HEAD/RNN/RnnDGAClassificationClass.py -------------------------------------------------------------------------------- /RNN/dataset_all.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewaeva/DGA/HEAD/RNN/dataset_all.csv -------------------------------------------------------------------------------- /RNN/decoder_attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewaeva/DGA/HEAD/RNN/decoder_attention.py -------------------------------------------------------------------------------- /all_dga.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewaeva/DGA/HEAD/all_dga.txt -------------------------------------------------------------------------------- /all_legit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewaeva/DGA/HEAD/all_legit.txt -------------------------------------------------------------------------------- /dga_algorithms/Conficker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewaeva/DGA/HEAD/dga_algorithms/Conficker.cpp -------------------------------------------------------------------------------- /dga_algorithms/Cryptolocker.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewaeva/DGA/HEAD/dga_algorithms/Cryptolocker.pl -------------------------------------------------------------------------------- /dga_algorithms/GameoverZeus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewaeva/DGA/HEAD/dga_algorithms/GameoverZeus.py -------------------------------------------------------------------------------- /dga_algorithms/Matsnu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewaeva/DGA/HEAD/dga_algorithms/Matsnu.py -------------------------------------------------------------------------------- /dga_algorithms/PushDO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewaeva/DGA/HEAD/dga_algorithms/PushDO.py -------------------------------------------------------------------------------- /dga_algorithms/Ramdo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewaeva/DGA/HEAD/dga_algorithms/Ramdo.cpp -------------------------------------------------------------------------------- /dga_algorithms/Rovnix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewaeva/DGA/HEAD/dga_algorithms/Rovnix.py -------------------------------------------------------------------------------- /dga_algorithms/Tinba.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewaeva/DGA/HEAD/dga_algorithms/Tinba.py -------------------------------------------------------------------------------- /dga_wordlists/conficker.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewaeva/DGA/HEAD/dga_wordlists/conficker.txt -------------------------------------------------------------------------------- /dga_wordlists/cryptolocker.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewaeva/DGA/HEAD/dga_wordlists/cryptolocker.txt -------------------------------------------------------------------------------- /dga_wordlists/dds-malicious-domains.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewaeva/DGA/HEAD/dga_wordlists/dds-malicious-domains.csv -------------------------------------------------------------------------------- /dga_wordlists/goz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewaeva/DGA/HEAD/dga_wordlists/goz.txt -------------------------------------------------------------------------------- /dga_wordlists/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewaeva/DGA/HEAD/dga_wordlists/main.py -------------------------------------------------------------------------------- /dga_wordlists/matsnu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewaeva/DGA/HEAD/dga_wordlists/matsnu.txt -------------------------------------------------------------------------------- /dga_wordlists/new_goz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewaeva/DGA/HEAD/dga_wordlists/new_goz.txt -------------------------------------------------------------------------------- /dga_wordlists/opendns-random-domains.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewaeva/DGA/HEAD/dga_wordlists/opendns-random-domains.txt -------------------------------------------------------------------------------- /dga_wordlists/opendns-top-domains.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewaeva/DGA/HEAD/dga_wordlists/opendns-top-domains.txt -------------------------------------------------------------------------------- /dga_wordlists/others_dga.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewaeva/DGA/HEAD/dga_wordlists/others_dga.txt -------------------------------------------------------------------------------- /dga_wordlists/pushdo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewaeva/DGA/HEAD/dga_wordlists/pushdo.txt -------------------------------------------------------------------------------- /dga_wordlists/ramdo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewaeva/DGA/HEAD/dga_wordlists/ramdo.txt -------------------------------------------------------------------------------- /dga_wordlists/rovnix.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewaeva/DGA/HEAD/dga_wordlists/rovnix.txt -------------------------------------------------------------------------------- /dga_wordlists/tinba.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewaeva/DGA/HEAD/dga_wordlists/tinba.txt -------------------------------------------------------------------------------- /dga_wordlists/zeus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewaeva/DGA/HEAD/dga_wordlists/zeus.txt -------------------------------------------------------------------------------- /help/1000domains.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewaeva/DGA/HEAD/help/1000domains.py -------------------------------------------------------------------------------- /help/1000domains/alexa_1000.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewaeva/DGA/HEAD/help/1000domains/alexa_1000.txt -------------------------------------------------------------------------------- /help/1000domains/conficker_1000.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewaeva/DGA/HEAD/help/1000domains/conficker_1000.txt -------------------------------------------------------------------------------- /help/1000domains/cryptolocker_1000.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewaeva/DGA/HEAD/help/1000domains/cryptolocker_1000.txt -------------------------------------------------------------------------------- /help/1000domains/matsnu_1000.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewaeva/DGA/HEAD/help/1000domains/matsnu_1000.txt -------------------------------------------------------------------------------- /help/1000domains/pushdo_1000.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewaeva/DGA/HEAD/help/1000domains/pushdo_1000.txt -------------------------------------------------------------------------------- /help/1000domains/ramdo_1000.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewaeva/DGA/HEAD/help/1000domains/ramdo_1000.txt -------------------------------------------------------------------------------- /help/1000domains/rovnix_1000.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewaeva/DGA/HEAD/help/1000domains/rovnix_1000.txt -------------------------------------------------------------------------------- /help/1000domains/tinba_1000.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewaeva/DGA/HEAD/help/1000domains/tinba_1000.txt -------------------------------------------------------------------------------- /help/1000domains/zeus_1000.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewaeva/DGA/HEAD/help/1000domains/zeus_1000.txt -------------------------------------------------------------------------------- /help/alexa.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewaeva/DGA/HEAD/help/alexa.csv -------------------------------------------------------------------------------- /help/russian_words_translit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewaeva/DGA/HEAD/help/russian_words_translit.txt -------------------------------------------------------------------------------- /help/usdeclar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewaeva/DGA/HEAD/help/usdeclar.txt -------------------------------------------------------------------------------- /help/words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewaeva/DGA/HEAD/help/words.txt --------------------------------------------------------------------------------