├── .gitattributes ├── .gitignore ├── 2018-01-Exploiting ActionScript3 interpreter.pdf ├── 2018-02-Catching multilayered zero-day attacks on MS Office.pdf ├── 2019-01-Hacking Microcontroller Firmware through a USB.pdf ├── 2019-02-Overview of the latest Windows OS kernel exploits found in the wild.pdf ├── 2019-03-Operation ShadowHammer.pdf ├── 2019-04-The evolution and future of supply chain attacks.pdf ├── 2020-01-Retrospective on the latest zero-days found in the wild.pdf └── Hacking Sony PlayStation Blu-ray Drives.pdf /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | 7 | # Standard to msysgit 8 | *.doc diff=astextplain 9 | *.DOC diff=astextplain 10 | *.docx diff=astextplain 11 | *.DOCX diff=astextplain 12 | *.dot diff=astextplain 13 | *.DOT diff=astextplain 14 | *.pdf diff=astextplain 15 | *.PDF diff=astextplain 16 | *.rtf diff=astextplain 17 | *.RTF diff=astextplain 18 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Windows thumbnail cache files 2 | Thumbs.db 3 | ehthumbs.db 4 | ehthumbs_vista.db 5 | 6 | # Folder config file 7 | Desktop.ini 8 | 9 | # Recycle Bin used on file shares 10 | $RECYCLE.BIN/ 11 | 12 | # Windows Installer files 13 | *.cab 14 | *.msi 15 | *.msm 16 | *.msp 17 | 18 | # Windows shortcuts 19 | *.lnk 20 | 21 | # ========================= 22 | # Operating System Files 23 | # ========================= 24 | -------------------------------------------------------------------------------- /2018-01-Exploiting ActionScript3 interpreter.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oct0xor/presentations/7703e82a944188f6214d199a7b92e59cf5e0ba2f/2018-01-Exploiting ActionScript3 interpreter.pdf -------------------------------------------------------------------------------- /2018-02-Catching multilayered zero-day attacks on MS Office.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oct0xor/presentations/7703e82a944188f6214d199a7b92e59cf5e0ba2f/2018-02-Catching multilayered zero-day attacks on MS Office.pdf -------------------------------------------------------------------------------- /2019-01-Hacking Microcontroller Firmware through a USB.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oct0xor/presentations/7703e82a944188f6214d199a7b92e59cf5e0ba2f/2019-01-Hacking Microcontroller Firmware through a USB.pdf -------------------------------------------------------------------------------- /2019-02-Overview of the latest Windows OS kernel exploits found in the wild.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oct0xor/presentations/7703e82a944188f6214d199a7b92e59cf5e0ba2f/2019-02-Overview of the latest Windows OS kernel exploits found in the wild.pdf -------------------------------------------------------------------------------- /2019-03-Operation ShadowHammer.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oct0xor/presentations/7703e82a944188f6214d199a7b92e59cf5e0ba2f/2019-03-Operation ShadowHammer.pdf -------------------------------------------------------------------------------- /2019-04-The evolution and future of supply chain attacks.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oct0xor/presentations/7703e82a944188f6214d199a7b92e59cf5e0ba2f/2019-04-The evolution and future of supply chain attacks.pdf -------------------------------------------------------------------------------- /2020-01-Retrospective on the latest zero-days found in the wild.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oct0xor/presentations/7703e82a944188f6214d199a7b92e59cf5e0ba2f/2020-01-Retrospective on the latest zero-days found in the wild.pdf -------------------------------------------------------------------------------- /Hacking Sony PlayStation Blu-ray Drives.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oct0xor/presentations/7703e82a944188f6214d199a7b92e59cf5e0ba2f/Hacking Sony PlayStation Blu-ray Drives.pdf --------------------------------------------------------------------------------