├── .github └── workflows │ └── static.yml ├── .gitignore ├── Code └── Vol II │ ├── CH 1 │ ├── enumerateProcesses │ │ ├── enumerateProcesses.xcodeproj │ │ │ └── project.pbxproj │ │ └── enumerateProcesses │ │ │ ├── files.m │ │ │ ├── libraries.m │ │ │ ├── main.m │ │ │ ├── shared.h │ │ │ └── shared.m │ └── procInfo │ │ ├── getProcessInfo │ │ ├── procInfo.xcodeproj │ │ └── project.pbxproj │ │ └── procInfo │ │ ├── launchdXPC.h │ │ ├── launchdXPC.m │ │ └── main.m │ ├── CH 2 │ └── parseBinary │ │ ├── parseBinary.xcodeproj │ │ └── project.pbxproj │ │ └── parseBinary │ │ └── main.m │ ├── CH 3 │ └── checkSignature │ │ ├── checkSignature.xcodeproj │ │ └── project.pbxproj │ │ └── checkSignature │ │ ├── main.m │ │ └── packageKit.h │ ├── CH 4 │ ├── enumerateNetworkConnections │ │ ├── enumerateNetworkConnections.xcodeproj │ │ │ └── project.pbxproj │ │ └── enumerateNetworkConnections │ │ │ └── main.m │ └── enumerateNetworkStatistics │ │ ├── enumerateNetworkStatistics.xcodeproj │ │ └── project.pbxproj │ │ └── enumerateNetworkStatistics │ │ └── main.m │ ├── CH 6 │ └── logStream │ │ ├── logStream.xcodeproj │ │ └── project.pbxproj │ │ └── logStream │ │ ├── LogMonitor.h │ │ ├── LogMonitor.m │ │ └── main.m │ └── CH 8 │ └── ESPlayground │ └── App │ ├── ESPlayground.xcodeproj │ └── project.pbxproj │ └── ESPlayground │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── icon_1024.png │ │ ├── icon_128.png │ │ ├── icon_16.png │ │ ├── icon_256.png │ │ ├── icon_32.png │ │ ├── icon_512.png │ │ └── icon_64.png │ ├── Contents.json │ └── Info.imageset │ │ ├── Contents.json │ │ ├── info.png │ │ └── infoLight.png │ ├── ESPlayground.entitlements │ ├── Info.plist │ ├── MainMenu.xib │ ├── authorization.m │ ├── main.h │ ├── main.m │ ├── monitor.m │ ├── mute.m │ ├── muteInvert.m │ └── protect.m └── Website ├── CNAME ├── PDFs └── vol1 │ ├── CH 0x01 Infection Vectors.pdf │ ├── CH 0x02 Persistence.pdf │ ├── CH 0x03 Capabilities.pdf │ ├── CH 0x04 Static Analysis (Intro).pdf │ ├── CH 0x05 Non-Binary Analysis.pdf │ ├── CH 0x06 Binary Triage.pdf │ ├── CH 0x07 Disassembling & Decompilation.pdf │ ├── CH 0x08 Dynamic Analysis (Intro).pdf │ ├── CH 0x09 Dynamic Monitoring Tools.pdf │ ├── CH 0x0A Debugging.pdf │ ├── CH 0x0B Anti-Analysis.pdf │ ├── CH 0x0C Analyzing EvilQuest.pdf │ ├── Introduction.pdf │ ├── Part 0x01 (Mac) Malware Basics.pdf │ └── Part 0x02 (Mac) Malware Analysis.pdf ├── README.md ├── css └── style.css ├── footer.html ├── header.html ├── images ├── authorIcon.png ├── background.png ├── bookIcon.png ├── bookIcon_2x.png ├── center.png ├── cover.png ├── cover_1.webp ├── cover_2.webp ├── cover_v1.jpg ├── cover_v2.jpg ├── document.png ├── donateIcon.png ├── friends.png ├── friends │ ├── cleanmymac.png │ ├── guardian.png │ ├── haloprivacy.png │ ├── iVerify.png │ ├── jamf.png │ ├── kandji.png │ ├── kolide.png │ ├── malwarebytes.png │ ├── mittenMac.png │ ├── mosyle.png │ ├── panw.png │ └── smugmug.png ├── headshot.jpg ├── loading.gif ├── patreonLogo.png ├── resources.png ├── stoked.jpg ├── supportIcon.png ├── twitter.jpg ├── vol1 │ ├── ch1.png │ ├── ch10.png │ ├── ch11.png │ ├── ch2.png │ ├── ch3.png │ ├── ch4.png │ ├── ch5.png │ ├── ch6.png │ ├── ch7.png │ ├── ch8.png │ ├── ch9.png │ ├── end.png │ ├── p1.png │ ├── p2.png │ └── p3.png └── vol2 │ ├── ch1.png │ ├── ch10.png │ ├── ch11.png │ ├── ch12.png │ ├── ch13.png │ ├── ch14.png │ ├── ch2.png │ ├── ch3.png │ ├── ch4.png │ ├── ch5.png │ ├── ch6.png │ ├── ch7.png │ ├── ch8.png │ ├── ch9.png │ ├── end.webp │ ├── p1.png │ ├── p2.png │ └── p3.png ├── index.html ├── js └── analytics.js ├── social ├── ss-social-circle.css ├── ss-social-circle.eot ├── ss-social-circle.svg ├── ss-social-circle.ttf ├── ss-social-circle.woff ├── ss-social-regular.eot ├── ss-social-regular.svg ├── ss-social-regular.ttf ├── ss-social-regular.woff ├── ss-social.css └── ss-social.js ├── support.html ├── vol1 ├── pdfs │ ├── CH 1 Infection Vectors.pdf │ ├── CH 10 EvilQuest's Infection, Triage, and Deobfuscation.pdf │ ├── CH 11 EvilQuest's Persistence and Core Functionality.pdf │ ├── CH 2 Persistence.pdf │ ├── CH 3 Capabilities.pdf │ ├── CH 4 Nonbinary Analysis.pdf │ ├── CH 5 Binary Triage.pdf │ ├── CH 6 Disassembling & Decompilation.pdf │ ├── CH 7 Dynamic Analysis Tools.pdf │ ├── CH 8 Debugging.pdf │ ├── CH 9 Anti-Analysis.pdf │ ├── EndMatter.pdf │ ├── FrontMatter.pdf │ ├── Part I.pdf │ ├── Part II.pdf │ └── Part III.pdf └── read.html └── vol2 ├── pdfs ├── CH 1 Examining Processes.pdf ├── CH 10 Persistence Enumerator.pdf ├── CH 11 Persistence Monitor.pdf ├── CH 12 Mic and Webcam Monitor.pdf ├── CH 13 DNS Monitor.pdf ├── CH 14 Case Studies.pdf ├── CH 2 Parsing Binaries.pdf ├── CH 3 Code Signing.pdf ├── CH 4 Network State and Statistics.pdf ├── CH 5 Persistence.pdf ├── CH 6 Log Monitoring.pdf ├── CH 7 Network Monitoring.pdf ├── CH 8 Endpoint Security.pdf ├── CH 9 Muting and Authorization Events.pdf ├── EndMatter.pdf ├── FrontMatter.pdf ├── Part I.pdf ├── Part II.pdf └── Part III.pdf └── read.html /.github/workflows/static.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/.github/workflows/static.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/.gitignore -------------------------------------------------------------------------------- /Code/Vol II/CH 1/enumerateProcesses/enumerateProcesses.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Code/Vol II/CH 1/enumerateProcesses/enumerateProcesses.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Code/Vol II/CH 1/enumerateProcesses/enumerateProcesses/files.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Code/Vol II/CH 1/enumerateProcesses/enumerateProcesses/files.m -------------------------------------------------------------------------------- /Code/Vol II/CH 1/enumerateProcesses/enumerateProcesses/libraries.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Code/Vol II/CH 1/enumerateProcesses/enumerateProcesses/libraries.m -------------------------------------------------------------------------------- /Code/Vol II/CH 1/enumerateProcesses/enumerateProcesses/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Code/Vol II/CH 1/enumerateProcesses/enumerateProcesses/main.m -------------------------------------------------------------------------------- /Code/Vol II/CH 1/enumerateProcesses/enumerateProcesses/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Code/Vol II/CH 1/enumerateProcesses/enumerateProcesses/shared.h -------------------------------------------------------------------------------- /Code/Vol II/CH 1/enumerateProcesses/enumerateProcesses/shared.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Code/Vol II/CH 1/enumerateProcesses/enumerateProcesses/shared.m -------------------------------------------------------------------------------- /Code/Vol II/CH 1/procInfo/getProcessInfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Code/Vol II/CH 1/procInfo/getProcessInfo -------------------------------------------------------------------------------- /Code/Vol II/CH 1/procInfo/procInfo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Code/Vol II/CH 1/procInfo/procInfo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Code/Vol II/CH 1/procInfo/procInfo/launchdXPC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Code/Vol II/CH 1/procInfo/procInfo/launchdXPC.h -------------------------------------------------------------------------------- /Code/Vol II/CH 1/procInfo/procInfo/launchdXPC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Code/Vol II/CH 1/procInfo/procInfo/launchdXPC.m -------------------------------------------------------------------------------- /Code/Vol II/CH 1/procInfo/procInfo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Code/Vol II/CH 1/procInfo/procInfo/main.m -------------------------------------------------------------------------------- /Code/Vol II/CH 2/parseBinary/parseBinary.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Code/Vol II/CH 2/parseBinary/parseBinary.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Code/Vol II/CH 2/parseBinary/parseBinary/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Code/Vol II/CH 2/parseBinary/parseBinary/main.m -------------------------------------------------------------------------------- /Code/Vol II/CH 3/checkSignature/checkSignature.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Code/Vol II/CH 3/checkSignature/checkSignature.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Code/Vol II/CH 3/checkSignature/checkSignature/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Code/Vol II/CH 3/checkSignature/checkSignature/main.m -------------------------------------------------------------------------------- /Code/Vol II/CH 3/checkSignature/checkSignature/packageKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Code/Vol II/CH 3/checkSignature/checkSignature/packageKit.h -------------------------------------------------------------------------------- /Code/Vol II/CH 4/enumerateNetworkConnections/enumerateNetworkConnections.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Code/Vol II/CH 4/enumerateNetworkConnections/enumerateNetworkConnections.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Code/Vol II/CH 4/enumerateNetworkConnections/enumerateNetworkConnections/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Code/Vol II/CH 4/enumerateNetworkConnections/enumerateNetworkConnections/main.m -------------------------------------------------------------------------------- /Code/Vol II/CH 4/enumerateNetworkStatistics/enumerateNetworkStatistics.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Code/Vol II/CH 4/enumerateNetworkStatistics/enumerateNetworkStatistics.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Code/Vol II/CH 4/enumerateNetworkStatistics/enumerateNetworkStatistics/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Code/Vol II/CH 4/enumerateNetworkStatistics/enumerateNetworkStatistics/main.m -------------------------------------------------------------------------------- /Code/Vol II/CH 6/logStream/logStream.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Code/Vol II/CH 6/logStream/logStream.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Code/Vol II/CH 6/logStream/logStream/LogMonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Code/Vol II/CH 6/logStream/logStream/LogMonitor.h -------------------------------------------------------------------------------- /Code/Vol II/CH 6/logStream/logStream/LogMonitor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Code/Vol II/CH 6/logStream/logStream/LogMonitor.m -------------------------------------------------------------------------------- /Code/Vol II/CH 6/logStream/logStream/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Code/Vol II/CH 6/logStream/logStream/main.m -------------------------------------------------------------------------------- /Code/Vol II/CH 8/ESPlayground/App/ESPlayground.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Code/Vol II/CH 8/ESPlayground/App/ESPlayground.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Code/Vol II/CH 8/ESPlayground/App/ESPlayground/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Code/Vol II/CH 8/ESPlayground/App/ESPlayground/AppDelegate.h -------------------------------------------------------------------------------- /Code/Vol II/CH 8/ESPlayground/App/ESPlayground/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Code/Vol II/CH 8/ESPlayground/App/ESPlayground/AppDelegate.m -------------------------------------------------------------------------------- /Code/Vol II/CH 8/ESPlayground/App/ESPlayground/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Code/Vol II/CH 8/ESPlayground/App/ESPlayground/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Code/Vol II/CH 8/ESPlayground/App/ESPlayground/Assets.xcassets/AppIcon.appiconset/icon_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Code/Vol II/CH 8/ESPlayground/App/ESPlayground/Assets.xcassets/AppIcon.appiconset/icon_1024.png -------------------------------------------------------------------------------- /Code/Vol II/CH 8/ESPlayground/App/ESPlayground/Assets.xcassets/AppIcon.appiconset/icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Code/Vol II/CH 8/ESPlayground/App/ESPlayground/Assets.xcassets/AppIcon.appiconset/icon_128.png -------------------------------------------------------------------------------- /Code/Vol II/CH 8/ESPlayground/App/ESPlayground/Assets.xcassets/AppIcon.appiconset/icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Code/Vol II/CH 8/ESPlayground/App/ESPlayground/Assets.xcassets/AppIcon.appiconset/icon_16.png -------------------------------------------------------------------------------- /Code/Vol II/CH 8/ESPlayground/App/ESPlayground/Assets.xcassets/AppIcon.appiconset/icon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Code/Vol II/CH 8/ESPlayground/App/ESPlayground/Assets.xcassets/AppIcon.appiconset/icon_256.png -------------------------------------------------------------------------------- /Code/Vol II/CH 8/ESPlayground/App/ESPlayground/Assets.xcassets/AppIcon.appiconset/icon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Code/Vol II/CH 8/ESPlayground/App/ESPlayground/Assets.xcassets/AppIcon.appiconset/icon_32.png -------------------------------------------------------------------------------- /Code/Vol II/CH 8/ESPlayground/App/ESPlayground/Assets.xcassets/AppIcon.appiconset/icon_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Code/Vol II/CH 8/ESPlayground/App/ESPlayground/Assets.xcassets/AppIcon.appiconset/icon_512.png -------------------------------------------------------------------------------- /Code/Vol II/CH 8/ESPlayground/App/ESPlayground/Assets.xcassets/AppIcon.appiconset/icon_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Code/Vol II/CH 8/ESPlayground/App/ESPlayground/Assets.xcassets/AppIcon.appiconset/icon_64.png -------------------------------------------------------------------------------- /Code/Vol II/CH 8/ESPlayground/App/ESPlayground/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Code/Vol II/CH 8/ESPlayground/App/ESPlayground/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Code/Vol II/CH 8/ESPlayground/App/ESPlayground/Assets.xcassets/Info.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Code/Vol II/CH 8/ESPlayground/App/ESPlayground/Assets.xcassets/Info.imageset/Contents.json -------------------------------------------------------------------------------- /Code/Vol II/CH 8/ESPlayground/App/ESPlayground/Assets.xcassets/Info.imageset/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Code/Vol II/CH 8/ESPlayground/App/ESPlayground/Assets.xcassets/Info.imageset/info.png -------------------------------------------------------------------------------- /Code/Vol II/CH 8/ESPlayground/App/ESPlayground/Assets.xcassets/Info.imageset/infoLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Code/Vol II/CH 8/ESPlayground/App/ESPlayground/Assets.xcassets/Info.imageset/infoLight.png -------------------------------------------------------------------------------- /Code/Vol II/CH 8/ESPlayground/App/ESPlayground/ESPlayground.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Code/Vol II/CH 8/ESPlayground/App/ESPlayground/ESPlayground.entitlements -------------------------------------------------------------------------------- /Code/Vol II/CH 8/ESPlayground/App/ESPlayground/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Code/Vol II/CH 8/ESPlayground/App/ESPlayground/Info.plist -------------------------------------------------------------------------------- /Code/Vol II/CH 8/ESPlayground/App/ESPlayground/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Code/Vol II/CH 8/ESPlayground/App/ESPlayground/MainMenu.xib -------------------------------------------------------------------------------- /Code/Vol II/CH 8/ESPlayground/App/ESPlayground/authorization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Code/Vol II/CH 8/ESPlayground/App/ESPlayground/authorization.m -------------------------------------------------------------------------------- /Code/Vol II/CH 8/ESPlayground/App/ESPlayground/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Code/Vol II/CH 8/ESPlayground/App/ESPlayground/main.h -------------------------------------------------------------------------------- /Code/Vol II/CH 8/ESPlayground/App/ESPlayground/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Code/Vol II/CH 8/ESPlayground/App/ESPlayground/main.m -------------------------------------------------------------------------------- /Code/Vol II/CH 8/ESPlayground/App/ESPlayground/monitor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Code/Vol II/CH 8/ESPlayground/App/ESPlayground/monitor.m -------------------------------------------------------------------------------- /Code/Vol II/CH 8/ESPlayground/App/ESPlayground/mute.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Code/Vol II/CH 8/ESPlayground/App/ESPlayground/mute.m -------------------------------------------------------------------------------- /Code/Vol II/CH 8/ESPlayground/App/ESPlayground/muteInvert.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Code/Vol II/CH 8/ESPlayground/App/ESPlayground/muteInvert.m -------------------------------------------------------------------------------- /Code/Vol II/CH 8/ESPlayground/App/ESPlayground/protect.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Code/Vol II/CH 8/ESPlayground/App/ESPlayground/protect.m -------------------------------------------------------------------------------- /Website/CNAME: -------------------------------------------------------------------------------- 1 | taomm.org -------------------------------------------------------------------------------- /Website/PDFs/vol1/CH 0x01 Infection Vectors.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/PDFs/vol1/CH 0x01 Infection Vectors.pdf -------------------------------------------------------------------------------- /Website/PDFs/vol1/CH 0x02 Persistence.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/PDFs/vol1/CH 0x02 Persistence.pdf -------------------------------------------------------------------------------- /Website/PDFs/vol1/CH 0x03 Capabilities.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/PDFs/vol1/CH 0x03 Capabilities.pdf -------------------------------------------------------------------------------- /Website/PDFs/vol1/CH 0x04 Static Analysis (Intro).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/PDFs/vol1/CH 0x04 Static Analysis (Intro).pdf -------------------------------------------------------------------------------- /Website/PDFs/vol1/CH 0x05 Non-Binary Analysis.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/PDFs/vol1/CH 0x05 Non-Binary Analysis.pdf -------------------------------------------------------------------------------- /Website/PDFs/vol1/CH 0x06 Binary Triage.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/PDFs/vol1/CH 0x06 Binary Triage.pdf -------------------------------------------------------------------------------- /Website/PDFs/vol1/CH 0x07 Disassembling & Decompilation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/PDFs/vol1/CH 0x07 Disassembling & Decompilation.pdf -------------------------------------------------------------------------------- /Website/PDFs/vol1/CH 0x08 Dynamic Analysis (Intro).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/PDFs/vol1/CH 0x08 Dynamic Analysis (Intro).pdf -------------------------------------------------------------------------------- /Website/PDFs/vol1/CH 0x09 Dynamic Monitoring Tools.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/PDFs/vol1/CH 0x09 Dynamic Monitoring Tools.pdf -------------------------------------------------------------------------------- /Website/PDFs/vol1/CH 0x0A Debugging.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/PDFs/vol1/CH 0x0A Debugging.pdf -------------------------------------------------------------------------------- /Website/PDFs/vol1/CH 0x0B Anti-Analysis.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/PDFs/vol1/CH 0x0B Anti-Analysis.pdf -------------------------------------------------------------------------------- /Website/PDFs/vol1/CH 0x0C Analyzing EvilQuest.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/PDFs/vol1/CH 0x0C Analyzing EvilQuest.pdf -------------------------------------------------------------------------------- /Website/PDFs/vol1/Introduction.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/PDFs/vol1/Introduction.pdf -------------------------------------------------------------------------------- /Website/PDFs/vol1/Part 0x01 (Mac) Malware Basics.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/PDFs/vol1/Part 0x01 (Mac) Malware Basics.pdf -------------------------------------------------------------------------------- /Website/PDFs/vol1/Part 0x02 (Mac) Malware Analysis.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/PDFs/vol1/Part 0x02 (Mac) Malware Analysis.pdf -------------------------------------------------------------------------------- /Website/README.md: -------------------------------------------------------------------------------- 1 | # TAOMM 2 | The Art of Mac Malware 3 | -------------------------------------------------------------------------------- /Website/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/css/style.css -------------------------------------------------------------------------------- /Website/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/footer.html -------------------------------------------------------------------------------- /Website/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/header.html -------------------------------------------------------------------------------- /Website/images/authorIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/images/authorIcon.png -------------------------------------------------------------------------------- /Website/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/images/background.png -------------------------------------------------------------------------------- /Website/images/bookIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/images/bookIcon.png -------------------------------------------------------------------------------- /Website/images/bookIcon_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/images/bookIcon_2x.png -------------------------------------------------------------------------------- /Website/images/center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/images/center.png -------------------------------------------------------------------------------- /Website/images/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/images/cover.png -------------------------------------------------------------------------------- /Website/images/cover_1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/images/cover_1.webp -------------------------------------------------------------------------------- /Website/images/cover_2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/images/cover_2.webp -------------------------------------------------------------------------------- /Website/images/cover_v1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/images/cover_v1.jpg -------------------------------------------------------------------------------- /Website/images/cover_v2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/images/cover_v2.jpg -------------------------------------------------------------------------------- /Website/images/document.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/images/document.png -------------------------------------------------------------------------------- /Website/images/donateIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/images/donateIcon.png -------------------------------------------------------------------------------- /Website/images/friends.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/images/friends.png -------------------------------------------------------------------------------- /Website/images/friends/cleanmymac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/images/friends/cleanmymac.png -------------------------------------------------------------------------------- /Website/images/friends/guardian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/images/friends/guardian.png -------------------------------------------------------------------------------- /Website/images/friends/haloprivacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/images/friends/haloprivacy.png -------------------------------------------------------------------------------- /Website/images/friends/iVerify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/images/friends/iVerify.png -------------------------------------------------------------------------------- /Website/images/friends/jamf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/images/friends/jamf.png -------------------------------------------------------------------------------- /Website/images/friends/kandji.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/images/friends/kandji.png -------------------------------------------------------------------------------- /Website/images/friends/kolide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/images/friends/kolide.png -------------------------------------------------------------------------------- /Website/images/friends/malwarebytes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/images/friends/malwarebytes.png -------------------------------------------------------------------------------- /Website/images/friends/mittenMac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/images/friends/mittenMac.png -------------------------------------------------------------------------------- /Website/images/friends/mosyle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/images/friends/mosyle.png -------------------------------------------------------------------------------- /Website/images/friends/panw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/images/friends/panw.png -------------------------------------------------------------------------------- /Website/images/friends/smugmug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/images/friends/smugmug.png -------------------------------------------------------------------------------- /Website/images/headshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/images/headshot.jpg -------------------------------------------------------------------------------- /Website/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/images/loading.gif -------------------------------------------------------------------------------- /Website/images/patreonLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/images/patreonLogo.png -------------------------------------------------------------------------------- /Website/images/resources.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/images/resources.png -------------------------------------------------------------------------------- /Website/images/stoked.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/images/stoked.jpg -------------------------------------------------------------------------------- /Website/images/supportIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/images/supportIcon.png -------------------------------------------------------------------------------- /Website/images/twitter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/images/twitter.jpg -------------------------------------------------------------------------------- /Website/images/vol1/ch1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/images/vol1/ch1.png -------------------------------------------------------------------------------- /Website/images/vol1/ch10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/images/vol1/ch10.png -------------------------------------------------------------------------------- /Website/images/vol1/ch11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/images/vol1/ch11.png -------------------------------------------------------------------------------- /Website/images/vol1/ch2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/images/vol1/ch2.png -------------------------------------------------------------------------------- /Website/images/vol1/ch3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/images/vol1/ch3.png -------------------------------------------------------------------------------- /Website/images/vol1/ch4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/images/vol1/ch4.png -------------------------------------------------------------------------------- /Website/images/vol1/ch5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/images/vol1/ch5.png -------------------------------------------------------------------------------- /Website/images/vol1/ch6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/images/vol1/ch6.png -------------------------------------------------------------------------------- /Website/images/vol1/ch7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/images/vol1/ch7.png -------------------------------------------------------------------------------- /Website/images/vol1/ch8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/images/vol1/ch8.png -------------------------------------------------------------------------------- /Website/images/vol1/ch9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/images/vol1/ch9.png -------------------------------------------------------------------------------- /Website/images/vol1/end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/images/vol1/end.png -------------------------------------------------------------------------------- /Website/images/vol1/p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/images/vol1/p1.png -------------------------------------------------------------------------------- /Website/images/vol1/p2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/images/vol1/p2.png -------------------------------------------------------------------------------- /Website/images/vol1/p3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/images/vol1/p3.png -------------------------------------------------------------------------------- /Website/images/vol2/ch1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/images/vol2/ch1.png -------------------------------------------------------------------------------- /Website/images/vol2/ch10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/images/vol2/ch10.png -------------------------------------------------------------------------------- /Website/images/vol2/ch11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/images/vol2/ch11.png -------------------------------------------------------------------------------- /Website/images/vol2/ch12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/images/vol2/ch12.png -------------------------------------------------------------------------------- /Website/images/vol2/ch13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/images/vol2/ch13.png -------------------------------------------------------------------------------- /Website/images/vol2/ch14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/images/vol2/ch14.png -------------------------------------------------------------------------------- /Website/images/vol2/ch2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/images/vol2/ch2.png -------------------------------------------------------------------------------- /Website/images/vol2/ch3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/images/vol2/ch3.png -------------------------------------------------------------------------------- /Website/images/vol2/ch4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/images/vol2/ch4.png -------------------------------------------------------------------------------- /Website/images/vol2/ch5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/images/vol2/ch5.png -------------------------------------------------------------------------------- /Website/images/vol2/ch6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/images/vol2/ch6.png -------------------------------------------------------------------------------- /Website/images/vol2/ch7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/images/vol2/ch7.png -------------------------------------------------------------------------------- /Website/images/vol2/ch8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/images/vol2/ch8.png -------------------------------------------------------------------------------- /Website/images/vol2/ch9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/images/vol2/ch9.png -------------------------------------------------------------------------------- /Website/images/vol2/end.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/images/vol2/end.webp -------------------------------------------------------------------------------- /Website/images/vol2/p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/images/vol2/p1.png -------------------------------------------------------------------------------- /Website/images/vol2/p2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/images/vol2/p2.png -------------------------------------------------------------------------------- /Website/images/vol2/p3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/images/vol2/p3.png -------------------------------------------------------------------------------- /Website/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/index.html -------------------------------------------------------------------------------- /Website/js/analytics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/js/analytics.js -------------------------------------------------------------------------------- /Website/social/ss-social-circle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/social/ss-social-circle.css -------------------------------------------------------------------------------- /Website/social/ss-social-circle.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/social/ss-social-circle.eot -------------------------------------------------------------------------------- /Website/social/ss-social-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/social/ss-social-circle.svg -------------------------------------------------------------------------------- /Website/social/ss-social-circle.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/social/ss-social-circle.ttf -------------------------------------------------------------------------------- /Website/social/ss-social-circle.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/social/ss-social-circle.woff -------------------------------------------------------------------------------- /Website/social/ss-social-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/social/ss-social-regular.eot -------------------------------------------------------------------------------- /Website/social/ss-social-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/social/ss-social-regular.svg -------------------------------------------------------------------------------- /Website/social/ss-social-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/social/ss-social-regular.ttf -------------------------------------------------------------------------------- /Website/social/ss-social-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/social/ss-social-regular.woff -------------------------------------------------------------------------------- /Website/social/ss-social.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/social/ss-social.css -------------------------------------------------------------------------------- /Website/social/ss-social.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/social/ss-social.js -------------------------------------------------------------------------------- /Website/support.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/support.html -------------------------------------------------------------------------------- /Website/vol1/pdfs/CH 1 Infection Vectors.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/vol1/pdfs/CH 1 Infection Vectors.pdf -------------------------------------------------------------------------------- /Website/vol1/pdfs/CH 10 EvilQuest's Infection, Triage, and Deobfuscation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/vol1/pdfs/CH 10 EvilQuest's Infection, Triage, and Deobfuscation.pdf -------------------------------------------------------------------------------- /Website/vol1/pdfs/CH 11 EvilQuest's Persistence and Core Functionality.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/vol1/pdfs/CH 11 EvilQuest's Persistence and Core Functionality.pdf -------------------------------------------------------------------------------- /Website/vol1/pdfs/CH 2 Persistence.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/vol1/pdfs/CH 2 Persistence.pdf -------------------------------------------------------------------------------- /Website/vol1/pdfs/CH 3 Capabilities.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/vol1/pdfs/CH 3 Capabilities.pdf -------------------------------------------------------------------------------- /Website/vol1/pdfs/CH 4 Nonbinary Analysis.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/vol1/pdfs/CH 4 Nonbinary Analysis.pdf -------------------------------------------------------------------------------- /Website/vol1/pdfs/CH 5 Binary Triage.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/vol1/pdfs/CH 5 Binary Triage.pdf -------------------------------------------------------------------------------- /Website/vol1/pdfs/CH 6 Disassembling & Decompilation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/vol1/pdfs/CH 6 Disassembling & Decompilation.pdf -------------------------------------------------------------------------------- /Website/vol1/pdfs/CH 7 Dynamic Analysis Tools.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/vol1/pdfs/CH 7 Dynamic Analysis Tools.pdf -------------------------------------------------------------------------------- /Website/vol1/pdfs/CH 8 Debugging.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/vol1/pdfs/CH 8 Debugging.pdf -------------------------------------------------------------------------------- /Website/vol1/pdfs/CH 9 Anti-Analysis.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/vol1/pdfs/CH 9 Anti-Analysis.pdf -------------------------------------------------------------------------------- /Website/vol1/pdfs/EndMatter.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/vol1/pdfs/EndMatter.pdf -------------------------------------------------------------------------------- /Website/vol1/pdfs/FrontMatter.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/vol1/pdfs/FrontMatter.pdf -------------------------------------------------------------------------------- /Website/vol1/pdfs/Part I.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/vol1/pdfs/Part I.pdf -------------------------------------------------------------------------------- /Website/vol1/pdfs/Part II.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/vol1/pdfs/Part II.pdf -------------------------------------------------------------------------------- /Website/vol1/pdfs/Part III.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/vol1/pdfs/Part III.pdf -------------------------------------------------------------------------------- /Website/vol1/read.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/vol1/read.html -------------------------------------------------------------------------------- /Website/vol2/pdfs/CH 1 Examining Processes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/vol2/pdfs/CH 1 Examining Processes.pdf -------------------------------------------------------------------------------- /Website/vol2/pdfs/CH 10 Persistence Enumerator.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/vol2/pdfs/CH 10 Persistence Enumerator.pdf -------------------------------------------------------------------------------- /Website/vol2/pdfs/CH 11 Persistence Monitor.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/vol2/pdfs/CH 11 Persistence Monitor.pdf -------------------------------------------------------------------------------- /Website/vol2/pdfs/CH 12 Mic and Webcam Monitor.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/vol2/pdfs/CH 12 Mic and Webcam Monitor.pdf -------------------------------------------------------------------------------- /Website/vol2/pdfs/CH 13 DNS Monitor.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/vol2/pdfs/CH 13 DNS Monitor.pdf -------------------------------------------------------------------------------- /Website/vol2/pdfs/CH 14 Case Studies.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/vol2/pdfs/CH 14 Case Studies.pdf -------------------------------------------------------------------------------- /Website/vol2/pdfs/CH 2 Parsing Binaries.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/vol2/pdfs/CH 2 Parsing Binaries.pdf -------------------------------------------------------------------------------- /Website/vol2/pdfs/CH 3 Code Signing.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/vol2/pdfs/CH 3 Code Signing.pdf -------------------------------------------------------------------------------- /Website/vol2/pdfs/CH 4 Network State and Statistics.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/vol2/pdfs/CH 4 Network State and Statistics.pdf -------------------------------------------------------------------------------- /Website/vol2/pdfs/CH 5 Persistence.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/vol2/pdfs/CH 5 Persistence.pdf -------------------------------------------------------------------------------- /Website/vol2/pdfs/CH 6 Log Monitoring.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/vol2/pdfs/CH 6 Log Monitoring.pdf -------------------------------------------------------------------------------- /Website/vol2/pdfs/CH 7 Network Monitoring.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/vol2/pdfs/CH 7 Network Monitoring.pdf -------------------------------------------------------------------------------- /Website/vol2/pdfs/CH 8 Endpoint Security.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/vol2/pdfs/CH 8 Endpoint Security.pdf -------------------------------------------------------------------------------- /Website/vol2/pdfs/CH 9 Muting and Authorization Events.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/vol2/pdfs/CH 9 Muting and Authorization Events.pdf -------------------------------------------------------------------------------- /Website/vol2/pdfs/EndMatter.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/vol2/pdfs/EndMatter.pdf -------------------------------------------------------------------------------- /Website/vol2/pdfs/FrontMatter.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/vol2/pdfs/FrontMatter.pdf -------------------------------------------------------------------------------- /Website/vol2/pdfs/Part I.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/vol2/pdfs/Part I.pdf -------------------------------------------------------------------------------- /Website/vol2/pdfs/Part II.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/vol2/pdfs/Part II.pdf -------------------------------------------------------------------------------- /Website/vol2/pdfs/Part III.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/vol2/pdfs/Part III.pdf -------------------------------------------------------------------------------- /Website/vol2/read.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objective-see/TAOMM/HEAD/Website/vol2/read.html --------------------------------------------------------------------------------