├── README.md ├── bro ├── checkshell.py └── detector.bro ├── exploit_code └── pwn.py ├── slide_report ├── BRO-UNICORN.docx └── Bro IDS-Unicorn.pptx └── vulnserver ├── socat.sh ├── vuln └── vuln.c /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mipu94/BroIDS_Unicorn/HEAD/README.md -------------------------------------------------------------------------------- /bro/checkshell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mipu94/BroIDS_Unicorn/HEAD/bro/checkshell.py -------------------------------------------------------------------------------- /bro/detector.bro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mipu94/BroIDS_Unicorn/HEAD/bro/detector.bro -------------------------------------------------------------------------------- /exploit_code/pwn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mipu94/BroIDS_Unicorn/HEAD/exploit_code/pwn.py -------------------------------------------------------------------------------- /slide_report/BRO-UNICORN.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mipu94/BroIDS_Unicorn/HEAD/slide_report/BRO-UNICORN.docx -------------------------------------------------------------------------------- /slide_report/Bro IDS-Unicorn.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mipu94/BroIDS_Unicorn/HEAD/slide_report/Bro IDS-Unicorn.pptx -------------------------------------------------------------------------------- /vulnserver/socat.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | socat TCP-LISTEN:4000,reuseaddr,fork EXEC:"$PWD/$1" 3 | 4 | -------------------------------------------------------------------------------- /vulnserver/vuln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mipu94/BroIDS_Unicorn/HEAD/vulnserver/vuln -------------------------------------------------------------------------------- /vulnserver/vuln.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mipu94/BroIDS_Unicorn/HEAD/vulnserver/vuln.c --------------------------------------------------------------------------------