├── .gitattributes ├── .gitignore ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── booLet_1.1 ├── README.md ├── booLet.py ├── booLet_extres │ ├── ASNlist.txt │ ├── GeoLite2-City.mmdb │ └── ipasn_20150224.dat └── windows │ └── BooLet-v1-1.zip ├── booLet_1.2 ├── README.md ├── booLet12.py ├── booLet_extres │ ├── ASNlist.txt │ ├── GeoLite2-City.mmdb │ └── ipasn_20150224.dat └── src │ ├── BooLetLib.py │ ├── __init__.py │ ├── anomaly_agent.yar │ ├── anomaly_common.yar │ ├── anomaly_referer.yar │ ├── anomaly_uri.yar │ └── config.yml ├── samplelog ├── access.log ├── access.log.1 ├── access.log.2 ├── access.log.3 └── access.log.4 └── screenshot ├── boolet.png └── boolet10.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boolaz/BooLet/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.pyc 3 | *_test* 4 | apachelogs.db 5 | summary.csv 6 | SAV/ 7 | 8 | booLet_1.2/README with windows.md 9 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boolaz/BooLet/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boolaz/BooLet/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boolaz/BooLet/HEAD/README.md -------------------------------------------------------------------------------- /booLet_1.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boolaz/BooLet/HEAD/booLet_1.1/README.md -------------------------------------------------------------------------------- /booLet_1.1/booLet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boolaz/BooLet/HEAD/booLet_1.1/booLet.py -------------------------------------------------------------------------------- /booLet_1.1/booLet_extres/ASNlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boolaz/BooLet/HEAD/booLet_1.1/booLet_extres/ASNlist.txt -------------------------------------------------------------------------------- /booLet_1.1/booLet_extres/GeoLite2-City.mmdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boolaz/BooLet/HEAD/booLet_1.1/booLet_extres/GeoLite2-City.mmdb -------------------------------------------------------------------------------- /booLet_1.1/booLet_extres/ipasn_20150224.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boolaz/BooLet/HEAD/booLet_1.1/booLet_extres/ipasn_20150224.dat -------------------------------------------------------------------------------- /booLet_1.1/windows/BooLet-v1-1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boolaz/BooLet/HEAD/booLet_1.1/windows/BooLet-v1-1.zip -------------------------------------------------------------------------------- /booLet_1.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boolaz/BooLet/HEAD/booLet_1.2/README.md -------------------------------------------------------------------------------- /booLet_1.2/booLet12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boolaz/BooLet/HEAD/booLet_1.2/booLet12.py -------------------------------------------------------------------------------- /booLet_1.2/booLet_extres/ASNlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boolaz/BooLet/HEAD/booLet_1.2/booLet_extres/ASNlist.txt -------------------------------------------------------------------------------- /booLet_1.2/booLet_extres/GeoLite2-City.mmdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boolaz/BooLet/HEAD/booLet_1.2/booLet_extres/GeoLite2-City.mmdb -------------------------------------------------------------------------------- /booLet_1.2/booLet_extres/ipasn_20150224.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boolaz/BooLet/HEAD/booLet_1.2/booLet_extres/ipasn_20150224.dat -------------------------------------------------------------------------------- /booLet_1.2/src/BooLetLib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boolaz/BooLet/HEAD/booLet_1.2/src/BooLetLib.py -------------------------------------------------------------------------------- /booLet_1.2/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /booLet_1.2/src/anomaly_agent.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boolaz/BooLet/HEAD/booLet_1.2/src/anomaly_agent.yar -------------------------------------------------------------------------------- /booLet_1.2/src/anomaly_common.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boolaz/BooLet/HEAD/booLet_1.2/src/anomaly_common.yar -------------------------------------------------------------------------------- /booLet_1.2/src/anomaly_referer.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boolaz/BooLet/HEAD/booLet_1.2/src/anomaly_referer.yar -------------------------------------------------------------------------------- /booLet_1.2/src/anomaly_uri.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boolaz/BooLet/HEAD/booLet_1.2/src/anomaly_uri.yar -------------------------------------------------------------------------------- /booLet_1.2/src/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boolaz/BooLet/HEAD/booLet_1.2/src/config.yml -------------------------------------------------------------------------------- /samplelog/access.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boolaz/BooLet/HEAD/samplelog/access.log -------------------------------------------------------------------------------- /samplelog/access.log.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boolaz/BooLet/HEAD/samplelog/access.log.1 -------------------------------------------------------------------------------- /samplelog/access.log.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boolaz/BooLet/HEAD/samplelog/access.log.2 -------------------------------------------------------------------------------- /samplelog/access.log.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boolaz/BooLet/HEAD/samplelog/access.log.3 -------------------------------------------------------------------------------- /samplelog/access.log.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boolaz/BooLet/HEAD/samplelog/access.log.4 -------------------------------------------------------------------------------- /screenshot/boolet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boolaz/BooLet/HEAD/screenshot/boolet.png -------------------------------------------------------------------------------- /screenshot/boolet10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boolaz/BooLet/HEAD/screenshot/boolet10.png --------------------------------------------------------------------------------