├── .gitignore ├── Anomaly.pyc ├── BotSummary.py ├── DnsAnalyser.pyc ├── IPInfo.py ├── LICENSE ├── ML ├── BotDAD.ipynb └── Readme.MD ├── Output └── Outfile.txt ├── PcapParser.pyc ├── README.md ├── Src ├── Anomaly.py ├── DnsAnalyser.py ├── IPInfo.py ├── PcapParser.py ├── Readme ├── Test.py ├── main.py ├── test_domain_matcher.py └── whitelist.py ├── Test.py ├── Threshold.py ├── dnsgraph.pyc ├── filename.txt ├── find_flux.pyc ├── main.py ├── misc.py ├── test_domain_matcher.py └── whitelist.pyc /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mannirulz/BotDAD/HEAD/.gitignore -------------------------------------------------------------------------------- /Anomaly.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mannirulz/BotDAD/HEAD/Anomaly.pyc -------------------------------------------------------------------------------- /BotSummary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mannirulz/BotDAD/HEAD/BotSummary.py -------------------------------------------------------------------------------- /DnsAnalyser.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mannirulz/BotDAD/HEAD/DnsAnalyser.pyc -------------------------------------------------------------------------------- /IPInfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mannirulz/BotDAD/HEAD/IPInfo.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mannirulz/BotDAD/HEAD/LICENSE -------------------------------------------------------------------------------- /ML/BotDAD.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mannirulz/BotDAD/HEAD/ML/BotDAD.ipynb -------------------------------------------------------------------------------- /ML/Readme.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mannirulz/BotDAD/HEAD/ML/Readme.MD -------------------------------------------------------------------------------- /Output/Outfile.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /PcapParser.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mannirulz/BotDAD/HEAD/PcapParser.pyc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mannirulz/BotDAD/HEAD/README.md -------------------------------------------------------------------------------- /Src/Anomaly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mannirulz/BotDAD/HEAD/Src/Anomaly.py -------------------------------------------------------------------------------- /Src/DnsAnalyser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mannirulz/BotDAD/HEAD/Src/DnsAnalyser.py -------------------------------------------------------------------------------- /Src/IPInfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mannirulz/BotDAD/HEAD/Src/IPInfo.py -------------------------------------------------------------------------------- /Src/PcapParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mannirulz/BotDAD/HEAD/Src/PcapParser.py -------------------------------------------------------------------------------- /Src/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mannirulz/BotDAD/HEAD/Src/Readme -------------------------------------------------------------------------------- /Src/Test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mannirulz/BotDAD/HEAD/Src/Test.py -------------------------------------------------------------------------------- /Src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mannirulz/BotDAD/HEAD/Src/main.py -------------------------------------------------------------------------------- /Src/test_domain_matcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mannirulz/BotDAD/HEAD/Src/test_domain_matcher.py -------------------------------------------------------------------------------- /Src/whitelist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mannirulz/BotDAD/HEAD/Src/whitelist.py -------------------------------------------------------------------------------- /Test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mannirulz/BotDAD/HEAD/Test.py -------------------------------------------------------------------------------- /Threshold.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mannirulz/BotDAD/HEAD/Threshold.py -------------------------------------------------------------------------------- /dnsgraph.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mannirulz/BotDAD/HEAD/dnsgraph.pyc -------------------------------------------------------------------------------- /filename.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mannirulz/BotDAD/HEAD/filename.txt -------------------------------------------------------------------------------- /find_flux.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mannirulz/BotDAD/HEAD/find_flux.pyc -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mannirulz/BotDAD/HEAD/main.py -------------------------------------------------------------------------------- /misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mannirulz/BotDAD/HEAD/misc.py -------------------------------------------------------------------------------- /test_domain_matcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mannirulz/BotDAD/HEAD/test_domain_matcher.py -------------------------------------------------------------------------------- /whitelist.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mannirulz/BotDAD/HEAD/whitelist.pyc --------------------------------------------------------------------------------