├── .gitmodules └── README.md /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "BlueHatIL-2020"] 2 | path = BlueHatIL-2020 3 | url = https://github.com/FuzzySecurity/BlueHatIL-2020 4 | [submodule "IBM-RedCON-2020"] 5 | path = IBM-RedCON-2020 6 | url = https://github.com/FuzzySecurity/IBM-RedCON-2020 7 | [submodule "BH-Arsenal-2019"] 8 | path = BH-Arsenal-2019 9 | url = https://github.com/FuzzySecurity/BH-Arsenal-2019 10 | [submodule "DefCon-Beijing-UAC"] 11 | path = DefCon-Beijing-UAC 12 | url = https://github.com/FuzzySecurity/DefCon-Beijing-UAC 13 | [submodule "DefCon25"] 14 | path = DefCon25 15 | url = https://github.com/FuzzySecurity/DefCon25 16 | [submodule "DefCon24"] 17 | path = DefCon24 18 | url = https://github.com/FuzzySecurity/DefCon24 19 | [submodule "WWHF-WayWest-2022"] 20 | path = WWHF-WayWest-2022 21 | url = https://github.com/FuzzySecurity/WWHF-WayWest-2022 22 | [submodule "BHUSA-2023"] 23 | path = BHUSA-2023 24 | url = https://github.com/FuzzySecurity/BHUSA-2023 25 | [submodule "SANS-HackFest-2023"] 26 | path = SANS-HackFest-2023 27 | url = https://github.com/FuzzySecurity/SANS-HackFest-2023 28 | [submodule "SAFACon-Vienna"] 29 | path = SAFACon-Vienna 30 | url = https://github.com/FuzzySecurity/SAFACon-Vienna 31 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Presentations 2 | 3 | This repo is just here to collate materials from presentations I've given without breaking any links that may exist on the interwebs. 4 | --------------------------------------------------------------------------------