├── PDF Lessons ├── 0. Preface.pdf ├── 1. Introduction to Obsidian.pdf ├── 2. Getting to Know the Vault.pdf ├── 3. Note Types.pdf ├── 4. Keeping a Backup.pdf ├── 5. Using Templates.pdf ├── 6. Metadata.pdf ├── 7. Formatting your Notes.pdf ├── 8. Optimizing Your Vault.pdf └── 9. Producing Write Ups.pdf ├── README.md ├── TemplateVault ├── !Knowledge Management for Offensive Security Professional │ ├── 0. Preface.md │ ├── 1. Introduction to Obsidian.md │ ├── 2. Getting to Know the Vault.md │ ├── 3. Note Types.md │ ├── 4. Keeping a Backup.md │ ├── 5. Using Templates.md │ ├── 6. Metadata.md │ ├── 7. Formatting your Notes.md │ ├── 8. Optimizing Your Vault.md │ ├── 9. Producing Write Ups.md │ └── Course Index.md ├── .obsidian │ ├── app.json │ ├── appearance.json │ ├── backlink.json │ ├── bookmarks.json │ ├── community-plugins.json │ ├── core-plugins-migration.json │ ├── core-plugins.json │ ├── file-recovery.json │ ├── graph.json │ ├── hotkeys.json │ ├── plugins │ │ ├── auto-glossary │ │ │ ├── main.js │ │ │ ├── manifest.json │ │ │ └── styles.css │ │ ├── codeblock-customizer │ │ │ ├── data.json │ │ │ ├── main.js │ │ │ ├── manifest.json │ │ │ └── styles.css │ │ ├── dataview │ │ │ ├── main.js │ │ │ ├── manifest.json │ │ │ └── styles.css │ │ ├── janitor │ │ │ ├── data.json │ │ │ ├── main.js │ │ │ ├── manifest.json │ │ │ └── styles.css │ │ ├── note-refactor-obsidian │ │ │ ├── data.json │ │ │ ├── main.js │ │ │ ├── manifest.json │ │ │ └── styles.css │ │ ├── obsidian-admonition │ │ │ ├── data.json │ │ │ ├── main.js │ │ │ ├── manifest.json │ │ │ └── styles.css │ │ ├── obsidian-auto-link-title │ │ │ ├── main.js │ │ │ ├── manifest.json │ │ │ └── styles.css │ │ ├── obsidian-dangling-links │ │ │ ├── data.json │ │ │ ├── main.js │ │ │ ├── manifest.json │ │ │ └── styles.css │ │ ├── obsidian-footnotes │ │ │ ├── data.json │ │ │ ├── main.js │ │ │ └── manifest.json │ │ ├── obsidian-image-toolkit │ │ │ ├── main.js │ │ │ ├── manifest.json │ │ │ └── styles.css │ │ ├── obsidian-kanban │ │ │ ├── main.js │ │ │ ├── manifest.json │ │ │ └── styles.css │ │ ├── obsidian-linter │ │ │ ├── data.json │ │ │ ├── main.js │ │ │ ├── manifest.json │ │ │ └── styles.css │ │ ├── obsidian-local-images │ │ │ ├── data.json │ │ │ ├── main.js │ │ │ ├── manifest.json │ │ │ └── styles.css │ │ ├── obsidian-markmind │ │ │ ├── data.json │ │ │ ├── main.js │ │ │ ├── manifest.json │ │ │ └── styles.css │ │ ├── obsidian-plugin-toc │ │ │ ├── data.json │ │ │ ├── main.js │ │ │ └── manifest.json │ │ ├── obsidian-quiet-outline │ │ │ ├── data.json │ │ │ ├── main.js │ │ │ ├── manifest.json │ │ │ └── styles.css │ │ ├── obsidian-statusbar-pomo │ │ │ ├── data.json │ │ │ ├── main.js │ │ │ ├── manifest.json │ │ │ └── styles.css │ │ ├── obsidian-style-settings │ │ │ ├── data.json │ │ │ ├── main.js │ │ │ ├── manifest.json │ │ │ └── styles.css │ │ ├── oz-clear-unused-images │ │ │ ├── data.json │ │ │ ├── main.js │ │ │ ├── manifest.json │ │ │ └── styles.css │ │ ├── tag-wrangler │ │ │ ├── main.js │ │ │ ├── manifest.json │ │ │ └── styles.css │ │ ├── templater-obsidian │ │ │ ├── data.json │ │ │ ├── main.js │ │ │ ├── manifest.json │ │ │ └── styles.css │ │ └── various-complements │ │ │ ├── data.json │ │ │ ├── histories.json │ │ │ ├── main.js │ │ │ ├── manifest.json │ │ │ └── styles.css │ ├── starred.json │ ├── templates.json │ ├── text-generator.json │ ├── themes │ │ └── Prism │ │ │ ├── manifest.json │ │ │ └── theme.css │ ├── types.json │ └── workspace.json ├── 01 - Topics │ ├── 01 - Networking.md │ ├── 01 - Pentesting.md │ ├── 01 - Programming.md │ └── 01 - Red Team.md ├── 02 - Types │ ├── 02 - Cheatsheets.md │ ├── 02 - Documentation.md │ ├── 02 - Techniques.md │ └── 02 - Write Ups.md ├── 03 - Content │ ├── !Cert │ │ └── placeholder │ ├── Cheatsheets │ │ ├── ADPT Discovery.md │ │ └── Active Directory Penetration Testing Methodology Cheatsheet.md │ ├── Documentation │ │ └── placeholder │ ├── Programming │ │ └── placeholder │ ├── Techniques │ │ └── placeholder │ └── Write Ups │ │ └── Blueprint │ │ ├── Blueprint External.md │ │ ├── Blueprint Internal.md │ │ └── My Report.md ├── 04 - Tasks │ ├── My Ideas.canvas │ └── To-Do Kanban.md ├── 05 - Templates │ ├── 0500 - Report Templates │ │ └── OSCP Report Template.md │ ├── 0500 - Structural Elements │ │ ├── 0501 - Header_CheatSheet.md │ │ ├── 0502 - Header_Technique.md │ │ ├── 0503 - Header_Documentation.md │ │ ├── 0504 - Header_Writeup.md │ │ ├── 0505 - Body.md │ │ ├── 0506 - Body_Challenges.md │ │ ├── 0507 - Body_MITRE.md │ │ ├── 0508 - Body_Steps.md │ │ ├── 0509 - Body_OPSEC.md │ │ ├── 0510 - Body_Code.md │ │ ├── 0511 - Body_Examples.md │ │ ├── 0512 - Body_Install.md │ │ └── 0513 - Resources.md │ ├── 0500 - Write Up Templates │ │ ├── 0514 - Progress Tracker Template.md │ │ ├── 0515 - External Discovery Template.md │ │ ├── 0516 - Linux Methodology Template.md │ │ ├── 0517 - Windows Methodology Template.md │ │ └── 0518 - Active Directory Methodology Template.md │ └── Note Generator.md ├── Attachments │ ├── 04_Tasks.png │ ├── 2_1_Organizational_Folders_Topics.png │ ├── 2_1_Organizational_Folders_Types.png │ ├── 2_2_Content_Folder.png │ ├── 2_5_Attachments.png │ ├── 4.2_Implementing_Backups.png │ ├── KM4OP.jpg │ ├── Pasted image 20240323140614.png │ ├── Pasted image 20240323140833.png │ ├── Pasted image 20240323142317.png │ ├── Pasted image 20240323142516.png │ ├── Pasted image 20240323143101.png │ ├── Pasted image 20240323144130.png │ ├── Pasted image 20240323144656.png │ ├── Pasted image 20240323144729.png │ ├── Pasted image 20240323144850.png │ ├── Pasted image 20240323150111.png │ ├── Pasted image 20240323150149.png │ ├── Pasted image 20240323150204.png │ ├── Pasted image 20240323150226.png │ ├── Pasted image 20240323151436.png │ ├── Pasted image 20240323151732.png │ ├── Pasted image 20240428140516.png │ ├── Pasted image 20240428140923.png │ ├── Pasted image 20240615134520.png │ ├── Pasted image 20240619170327.png │ ├── Pasted image 20240619171415.png │ ├── Pasted image 20240619171843.png │ ├── Pasted image 20240619172115.png │ ├── Pasted image 20240619172205.png │ ├── Pasted image 20240619172305.png │ ├── Pasted image 20240619172653.png │ ├── Pasted image 20240619174130.png │ ├── Pasted image 20240619174244.png │ ├── Pasted image 20240619174627.png │ ├── Pasted image 20240619175151.png │ ├── Pasted image 20240629123717.png │ ├── Pasted image 20240629123739.png │ ├── Pasted image 20240629123821.png │ ├── Pasted image 20240629124143.png │ ├── Pasted image 20240629124255.png │ ├── Pasted image 20240629124901.png │ ├── Pasted image 20240629125329.png │ ├── Pasted image 20240629125504.png │ ├── Pasted image 20240629125642.png │ ├── Pasted image 20240629130102.png │ ├── Pasted image 20240629130139.png │ ├── Pasted image 20240629130205.png │ ├── Pasted image 20240629130507.png │ ├── Pasted image 20240629130538.png │ ├── Pasted image 20240629130828.png │ ├── Pasted image 20240629130839.png │ ├── Pasted image 20240629133252.png │ ├── Pasted image 20240629133546.png │ ├── Pasted image 20240629133715.png │ ├── Pasted image 20240629133843.png │ ├── Pasted image 20240629134248.png │ ├── Pasted image 20240629134530.png │ ├── Pasted image 20240629135027.png │ ├── Pasted image 20240629135048.png │ ├── Pasted image 20240629135104.png │ ├── Pasted image 20240629135147.png │ ├── Pasted image 20240629135223.png │ ├── Pasted image 20240629135455.png │ ├── Pasted image 20240629135526.png │ ├── Pasted image 20240629140100.png │ ├── Pasted image 20240629140137.png │ ├── Pasted image 20240629140813.png │ ├── Pasted image 20240629140923.png │ ├── Pasted image 20240629141008.png │ ├── Pasted image 20240629141143.png │ ├── Pasted image 20240630154701.png │ ├── Pasted image 20240630154730.png │ ├── Pasted image 20240630154800.png │ ├── Pasted image 20240630154813.png │ ├── Pasted image 20240630154826.png │ ├── Pasted image 20240630154836.png │ ├── Pasted image 20240630154847.png │ ├── Pasted image 20240630154859.png │ ├── Pasted image 20240630155222.png │ ├── Pasted image 20240630155545.png │ ├── Pasted image 20240630155911.png │ ├── Pasted image 20240630160046.png │ ├── Pasted image 20240630161126.png │ ├── Pasted image 20240630161944.png │ ├── Pasted image 20240630162425.png │ ├── Pasted image 20240702125928.png │ ├── Pasted image 20240702130558.png │ ├── Pasted image 20240702130813.png │ ├── Pasted image 20240702131350.png │ ├── Pasted image 20240702131746.png │ ├── Pasted image 20240702131814.png │ ├── Pasted image 20240702131900.png │ ├── Pasted image 20240702132614.png │ ├── Pasted image 20240702133334.png │ ├── Pasted image 20240702133535.png │ ├── Pasted image 20240702133545.png │ ├── Pasted image 20240702134455.png │ ├── Pasted image 20240702134811.png │ ├── Pasted image 20240702134917.png │ ├── Pasted image 20240702135053.png │ ├── Pasted image 20240702135203.png │ ├── Pasted image 20240702135251.png │ ├── Pasted image 20240702140310.png │ ├── Pasted image 20240702140328.png │ ├── Pasted image 20240702140431.png │ ├── Pasted image 20240702140706.png │ ├── Pasted image 20240702140758.png │ ├── Pasted image 20240702141357.png │ ├── Pasted image 20240702141506.png │ ├── Pasted image 20240702142042.png │ ├── Pasted image 20240702142102.png │ ├── Pasted image 20240702142134.png │ ├── Pasted image 20240702142319.png │ ├── Pasted image 20240702142801.png │ ├── Pasted image 20240702142923.png │ ├── Pasted image 20240702143110.png │ ├── Pasted image 20240702143209.png │ ├── Pasted image 20240702143448.png │ ├── Pasted image 20240702143655.png │ ├── Pasted image 20240702144835.png │ ├── Pasted image 20240702144900.png │ ├── Pasted image 20240702145218.png │ ├── Pasted image 20240702145249.png │ ├── Pasted image 20240702145427.png │ ├── Pasted image 20240702145529.png │ ├── Pasted image 20240702145807.png │ ├── Pasted image 20240702145826.png │ ├── Pasted image 20240702150125.png │ ├── Pasted image 20240702150856.png │ ├── Pasted image 20240702151143.png │ ├── Pasted image 20240702151207.png │ ├── Pasted image 20240702155743.png │ ├── Pasted image 20240704161653.png │ ├── Pasted image 20240704161714.png │ ├── Pasted image 20240704161730.png │ ├── Pasted image 20240704161744.png │ ├── Pasted image 20240704161823.png │ ├── Pasted image 20240704161840.png │ ├── Pasted image 20240704162013.png │ ├── Pasted image 20240704162240.png │ ├── Pasted image 20240704162418.png │ ├── Pasted image 20240704162507.png │ ├── Pasted image 20240704162548.png │ ├── Pasted image 20240704162743.png │ ├── Pasted image 20240704163223.png │ ├── Pasted image 20240704163631.png │ ├── Pasted image 20240704163720.png │ ├── Pasted image 20240704163739.png │ ├── Pasted image 20240704163957.png │ ├── Pasted image 20240704164056.png │ ├── Pasted image 20240704164254.png │ ├── Pasted image 20240704164519.png │ ├── Pasted image 20240704164532.png │ ├── Pasted image 20240704165017.png │ ├── Pasted image 20240704165239.png │ ├── Pasted image 20240704165527.png │ ├── Pasted image 20240704165654.png │ ├── Pasted image 20240704170033.png │ ├── Pasted image 20240704170244.png │ ├── Pasted image 20240704170522.png │ ├── Pasted image 20240704171258.png │ ├── Pasted image 20240711155820.png │ ├── Pasted image 20240711155919.png │ ├── Pasted image 20240711161138.png │ ├── Pasted image 20240711171706.png │ ├── Pasted image 20240711171736.png │ ├── Pasted image 20240718162747.png │ ├── Pasted image 20240718162820.png │ ├── Pasted image 20240718165020.png │ ├── Pasted image 20240718165046.png │ ├── Pasted image 20240718215132.png │ ├── Pasted image 20240718215718.png │ ├── Pasted image 20240718215854.png │ ├── Pasted image 20240718220104.png │ ├── Pasted image 20240718220427.png │ ├── Pasted image 20240718220747.png │ ├── Pasted image 20240718221056.png │ ├── Pasted image 20240718221155.png │ ├── Pasted image 20240718221333.png │ ├── Pasted image 20240718221349.png │ ├── Pasted image 20240718221739.png │ ├── Pasted image 20240718221853.png │ ├── Pasted image 20240718222026.png │ ├── Pasted image 20240718222118.png │ ├── Pasted image 20240718222620.png │ ├── Pasted image 20240718222755.png │ ├── Pasted image 20240718225718.png │ ├── Pasted image 20240718230135.png │ ├── Pasted image 20240718230706.png │ ├── Pasted image 20240718231008.png │ ├── Pasted image 20240718234244.png │ ├── Pasted image 20240718234304.png │ ├── Pasted image 20240718234353.png │ ├── Pasted image 20240718234605.png │ ├── Pasted image 20240718234950.png │ ├── Pasted image 20240718235057.png │ ├── Pasted image 20240718235235.png │ ├── Pasted image 20240719000802.png │ ├── Pasted image 20240719000904.png │ ├── Pasted image 20240719000936.png │ ├── Pasted image 20240719000943.png │ ├── Pasted image 20240719001206.png │ ├── Pasted image 20240719002155.png │ ├── Pasted image 20240719002429.png │ ├── Pasted image 20240719002628.png │ ├── Pasted image 20240719002732.png │ ├── Pasted image 20240719003018.png │ ├── Pasted image 20240719003211.png │ ├── Pasted image 20240719003503.png │ ├── Pasted image 20240719003641.png │ ├── Pasted image 20240719003929.png │ ├── Pasted image 20240719003949.png │ ├── Pasted image 20240719004013.png │ ├── Pasted image 20240719004051.png │ ├── Pasted image 20240719004144.png │ ├── Pasted image 20240719004902.png │ ├── Pasted image 20240719004954.png │ ├── Pasted image 20240719005037.png │ ├── Pasted image 20240719005052.png │ ├── Pasted image 20240719005829.png │ ├── Pasted image 20240719010446.png │ ├── Pasted image 20240719010521.png │ ├── Pasted image 20240719010736.png │ ├── Pasted image 20240719010755.png │ ├── Pasted image 20240719010840.png │ ├── Pasted image 20240719010919.png │ ├── Pasted image 20240719011011.png │ ├── Pasted image 20240719011111.png │ ├── Pasted image 20240719011226.png │ ├── Pasted image 20240719011257.png │ ├── Pasted image 20240719011410.png │ ├── Pasted image 20240719011422.png │ ├── Pasted image 20240719011442.png │ ├── Pasted image 20240719012235.png │ ├── Pasted image 20240719012243.png │ ├── Pasted image 20240719012414.png │ ├── Pasted image 20240719012617.png │ ├── Pasted image 20240719012735.png │ ├── Pasted image 20240719013351.png │ ├── Pasted image 20240719013557.png │ ├── Pasted image 20240719013609.png │ ├── Pasted image 20240719013626.png │ ├── Pasted image 20240719013832.png │ ├── Pasted image 20240719013912.png │ ├── Pasted image 20240719014400.png │ ├── Pasted image 20240719020653.png │ ├── Pasted image 20240719114410.png │ ├── Pasted image 20240719114436.png │ ├── Pasted image 20240723053433.png │ ├── Pasted image 20240723053911.png │ ├── Pasted image 20240723053925.png │ ├── Pasted image 20240723054526.png │ ├── Pasted image 20240723055033.png │ ├── Pasted image 20240723055203.png │ ├── Pasted image 20240723055325.png │ ├── Pasted image 20240723055909.png │ ├── Pasted image 20240723060341.png │ ├── Pasted image 20240723060418.png │ ├── Pasted image 20240723060513.png │ ├── Pasted image 20240723060635.png │ ├── Pasted image 20240723061211.png │ ├── Pasted image 20240723061502.png │ ├── Pasted image 20240723062258.png │ ├── Pasted image 20240723062314.png │ ├── Pasted image 20240723063915.png │ ├── Pasted image 20240723063934.png │ ├── Pasted image 20240723063946.png │ ├── Pasted image 20240723064019.png │ ├── Pasted image 20240723064040.png │ ├── Pasted image 20240723064444.png │ ├── Pasted image 20240723064856.png │ ├── Pasted image 20240723064931.png │ ├── Pasted image 20240723064950.png │ ├── Pasted image 20240723065021.png │ ├── Pasted image 20240723065109.png │ ├── Pasted image 20240723065228.png │ ├── Pasted image 20240723065306.png │ ├── Pasted image 20240723065351.png │ ├── Pasted image 20240723065430.png │ └── Pasted image 20240723070517.png └── Vault Index.md └── attachments ├── course-content.png ├── extracted-course.png ├── launch-obsidian.png ├── open-templatevault.png └── repo-zip.png /PDF Lessons/0. Preface.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/PDF Lessons/0. Preface.pdf -------------------------------------------------------------------------------- /PDF Lessons/1. Introduction to Obsidian.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/PDF Lessons/1. Introduction to Obsidian.pdf -------------------------------------------------------------------------------- /PDF Lessons/2. Getting to Know the Vault.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/PDF Lessons/2. Getting to Know the Vault.pdf -------------------------------------------------------------------------------- /PDF Lessons/3. Note Types.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/PDF Lessons/3. Note Types.pdf -------------------------------------------------------------------------------- /PDF Lessons/4. Keeping a Backup.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/PDF Lessons/4. Keeping a Backup.pdf -------------------------------------------------------------------------------- /PDF Lessons/5. Using Templates.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/PDF Lessons/5. Using Templates.pdf -------------------------------------------------------------------------------- /PDF Lessons/6. Metadata.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/PDF Lessons/6. Metadata.pdf -------------------------------------------------------------------------------- /PDF Lessons/7. Formatting your Notes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/PDF Lessons/7. Formatting your Notes.pdf -------------------------------------------------------------------------------- /PDF Lessons/8. Optimizing Your Vault.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/PDF Lessons/8. Optimizing Your Vault.pdf -------------------------------------------------------------------------------- /PDF Lessons/9. Producing Write Ups.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/PDF Lessons/9. Producing Write Ups.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/README.md -------------------------------------------------------------------------------- /TemplateVault/!Knowledge Management for Offensive Security Professional/0. Preface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/!Knowledge Management for Offensive Security Professional/0. Preface.md -------------------------------------------------------------------------------- /TemplateVault/!Knowledge Management for Offensive Security Professional/1. Introduction to Obsidian.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/!Knowledge Management for Offensive Security Professional/1. Introduction to Obsidian.md -------------------------------------------------------------------------------- /TemplateVault/!Knowledge Management for Offensive Security Professional/2. Getting to Know the Vault.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/!Knowledge Management for Offensive Security Professional/2. Getting to Know the Vault.md -------------------------------------------------------------------------------- /TemplateVault/!Knowledge Management for Offensive Security Professional/3. Note Types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/!Knowledge Management for Offensive Security Professional/3. Note Types.md -------------------------------------------------------------------------------- /TemplateVault/!Knowledge Management for Offensive Security Professional/4. Keeping a Backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/!Knowledge Management for Offensive Security Professional/4. Keeping a Backup.md -------------------------------------------------------------------------------- /TemplateVault/!Knowledge Management for Offensive Security Professional/5. Using Templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/!Knowledge Management for Offensive Security Professional/5. Using Templates.md -------------------------------------------------------------------------------- /TemplateVault/!Knowledge Management for Offensive Security Professional/6. Metadata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/!Knowledge Management for Offensive Security Professional/6. Metadata.md -------------------------------------------------------------------------------- /TemplateVault/!Knowledge Management for Offensive Security Professional/7. Formatting your Notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/!Knowledge Management for Offensive Security Professional/7. Formatting your Notes.md -------------------------------------------------------------------------------- /TemplateVault/!Knowledge Management for Offensive Security Professional/8. Optimizing Your Vault.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/!Knowledge Management for Offensive Security Professional/8. Optimizing Your Vault.md -------------------------------------------------------------------------------- /TemplateVault/!Knowledge Management for Offensive Security Professional/9. Producing Write Ups.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/!Knowledge Management for Offensive Security Professional/9. Producing Write Ups.md -------------------------------------------------------------------------------- /TemplateVault/!Knowledge Management for Offensive Security Professional/Course Index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/!Knowledge Management for Offensive Security Professional/Course Index.md -------------------------------------------------------------------------------- /TemplateVault/.obsidian/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/app.json -------------------------------------------------------------------------------- /TemplateVault/.obsidian/appearance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/appearance.json -------------------------------------------------------------------------------- /TemplateVault/.obsidian/backlink.json: -------------------------------------------------------------------------------- 1 | { 2 | "backlinkInDocument": true 3 | } -------------------------------------------------------------------------------- /TemplateVault/.obsidian/bookmarks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/bookmarks.json -------------------------------------------------------------------------------- /TemplateVault/.obsidian/community-plugins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/community-plugins.json -------------------------------------------------------------------------------- /TemplateVault/.obsidian/core-plugins-migration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/core-plugins-migration.json -------------------------------------------------------------------------------- /TemplateVault/.obsidian/core-plugins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/core-plugins.json -------------------------------------------------------------------------------- /TemplateVault/.obsidian/file-recovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/file-recovery.json -------------------------------------------------------------------------------- /TemplateVault/.obsidian/graph.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/graph.json -------------------------------------------------------------------------------- /TemplateVault/.obsidian/hotkeys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/hotkeys.json -------------------------------------------------------------------------------- /TemplateVault/.obsidian/plugins/auto-glossary/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/plugins/auto-glossary/main.js -------------------------------------------------------------------------------- /TemplateVault/.obsidian/plugins/auto-glossary/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/plugins/auto-glossary/manifest.json -------------------------------------------------------------------------------- /TemplateVault/.obsidian/plugins/auto-glossary/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/plugins/auto-glossary/styles.css -------------------------------------------------------------------------------- /TemplateVault/.obsidian/plugins/codeblock-customizer/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/plugins/codeblock-customizer/data.json -------------------------------------------------------------------------------- /TemplateVault/.obsidian/plugins/codeblock-customizer/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/plugins/codeblock-customizer/main.js -------------------------------------------------------------------------------- /TemplateVault/.obsidian/plugins/codeblock-customizer/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/plugins/codeblock-customizer/manifest.json -------------------------------------------------------------------------------- /TemplateVault/.obsidian/plugins/codeblock-customizer/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/plugins/codeblock-customizer/styles.css -------------------------------------------------------------------------------- /TemplateVault/.obsidian/plugins/dataview/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/plugins/dataview/main.js -------------------------------------------------------------------------------- /TemplateVault/.obsidian/plugins/dataview/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/plugins/dataview/manifest.json -------------------------------------------------------------------------------- /TemplateVault/.obsidian/plugins/dataview/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/plugins/dataview/styles.css -------------------------------------------------------------------------------- /TemplateVault/.obsidian/plugins/janitor/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/plugins/janitor/data.json -------------------------------------------------------------------------------- /TemplateVault/.obsidian/plugins/janitor/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/plugins/janitor/main.js -------------------------------------------------------------------------------- /TemplateVault/.obsidian/plugins/janitor/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/plugins/janitor/manifest.json -------------------------------------------------------------------------------- /TemplateVault/.obsidian/plugins/janitor/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/plugins/janitor/styles.css -------------------------------------------------------------------------------- /TemplateVault/.obsidian/plugins/note-refactor-obsidian/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/plugins/note-refactor-obsidian/data.json -------------------------------------------------------------------------------- /TemplateVault/.obsidian/plugins/note-refactor-obsidian/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/plugins/note-refactor-obsidian/main.js -------------------------------------------------------------------------------- /TemplateVault/.obsidian/plugins/note-refactor-obsidian/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/plugins/note-refactor-obsidian/manifest.json -------------------------------------------------------------------------------- /TemplateVault/.obsidian/plugins/note-refactor-obsidian/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/plugins/note-refactor-obsidian/styles.css -------------------------------------------------------------------------------- /TemplateVault/.obsidian/plugins/obsidian-admonition/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/plugins/obsidian-admonition/data.json -------------------------------------------------------------------------------- /TemplateVault/.obsidian/plugins/obsidian-admonition/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/plugins/obsidian-admonition/main.js -------------------------------------------------------------------------------- /TemplateVault/.obsidian/plugins/obsidian-admonition/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/plugins/obsidian-admonition/manifest.json -------------------------------------------------------------------------------- /TemplateVault/.obsidian/plugins/obsidian-admonition/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/plugins/obsidian-admonition/styles.css -------------------------------------------------------------------------------- /TemplateVault/.obsidian/plugins/obsidian-auto-link-title/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/plugins/obsidian-auto-link-title/main.js -------------------------------------------------------------------------------- /TemplateVault/.obsidian/plugins/obsidian-auto-link-title/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/plugins/obsidian-auto-link-title/manifest.json -------------------------------------------------------------------------------- /TemplateVault/.obsidian/plugins/obsidian-auto-link-title/styles.css: -------------------------------------------------------------------------------- 1 | /* no styles */ -------------------------------------------------------------------------------- /TemplateVault/.obsidian/plugins/obsidian-dangling-links/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/plugins/obsidian-dangling-links/data.json -------------------------------------------------------------------------------- /TemplateVault/.obsidian/plugins/obsidian-dangling-links/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/plugins/obsidian-dangling-links/main.js -------------------------------------------------------------------------------- /TemplateVault/.obsidian/plugins/obsidian-dangling-links/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/plugins/obsidian-dangling-links/manifest.json -------------------------------------------------------------------------------- /TemplateVault/.obsidian/plugins/obsidian-dangling-links/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/plugins/obsidian-dangling-links/styles.css -------------------------------------------------------------------------------- /TemplateVault/.obsidian/plugins/obsidian-footnotes/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/plugins/obsidian-footnotes/data.json -------------------------------------------------------------------------------- /TemplateVault/.obsidian/plugins/obsidian-footnotes/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/plugins/obsidian-footnotes/main.js -------------------------------------------------------------------------------- /TemplateVault/.obsidian/plugins/obsidian-footnotes/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/plugins/obsidian-footnotes/manifest.json -------------------------------------------------------------------------------- /TemplateVault/.obsidian/plugins/obsidian-image-toolkit/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/plugins/obsidian-image-toolkit/main.js -------------------------------------------------------------------------------- /TemplateVault/.obsidian/plugins/obsidian-image-toolkit/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/plugins/obsidian-image-toolkit/manifest.json -------------------------------------------------------------------------------- /TemplateVault/.obsidian/plugins/obsidian-image-toolkit/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/plugins/obsidian-image-toolkit/styles.css -------------------------------------------------------------------------------- /TemplateVault/.obsidian/plugins/obsidian-kanban/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/plugins/obsidian-kanban/main.js -------------------------------------------------------------------------------- /TemplateVault/.obsidian/plugins/obsidian-kanban/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/plugins/obsidian-kanban/manifest.json -------------------------------------------------------------------------------- /TemplateVault/.obsidian/plugins/obsidian-kanban/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/plugins/obsidian-kanban/styles.css -------------------------------------------------------------------------------- /TemplateVault/.obsidian/plugins/obsidian-linter/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/plugins/obsidian-linter/data.json -------------------------------------------------------------------------------- /TemplateVault/.obsidian/plugins/obsidian-linter/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/plugins/obsidian-linter/main.js -------------------------------------------------------------------------------- /TemplateVault/.obsidian/plugins/obsidian-linter/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/plugins/obsidian-linter/manifest.json -------------------------------------------------------------------------------- /TemplateVault/.obsidian/plugins/obsidian-linter/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/plugins/obsidian-linter/styles.css -------------------------------------------------------------------------------- /TemplateVault/.obsidian/plugins/obsidian-local-images/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/plugins/obsidian-local-images/data.json -------------------------------------------------------------------------------- /TemplateVault/.obsidian/plugins/obsidian-local-images/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/plugins/obsidian-local-images/main.js -------------------------------------------------------------------------------- /TemplateVault/.obsidian/plugins/obsidian-local-images/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/plugins/obsidian-local-images/manifest.json -------------------------------------------------------------------------------- /TemplateVault/.obsidian/plugins/obsidian-local-images/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/plugins/obsidian-local-images/styles.css -------------------------------------------------------------------------------- /TemplateVault/.obsidian/plugins/obsidian-markmind/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/plugins/obsidian-markmind/data.json -------------------------------------------------------------------------------- /TemplateVault/.obsidian/plugins/obsidian-markmind/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/plugins/obsidian-markmind/main.js -------------------------------------------------------------------------------- /TemplateVault/.obsidian/plugins/obsidian-markmind/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/plugins/obsidian-markmind/manifest.json -------------------------------------------------------------------------------- /TemplateVault/.obsidian/plugins/obsidian-markmind/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/plugins/obsidian-markmind/styles.css -------------------------------------------------------------------------------- /TemplateVault/.obsidian/plugins/obsidian-plugin-toc/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/plugins/obsidian-plugin-toc/data.json -------------------------------------------------------------------------------- /TemplateVault/.obsidian/plugins/obsidian-plugin-toc/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/plugins/obsidian-plugin-toc/main.js -------------------------------------------------------------------------------- /TemplateVault/.obsidian/plugins/obsidian-plugin-toc/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/plugins/obsidian-plugin-toc/manifest.json -------------------------------------------------------------------------------- /TemplateVault/.obsidian/plugins/obsidian-quiet-outline/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/plugins/obsidian-quiet-outline/data.json -------------------------------------------------------------------------------- /TemplateVault/.obsidian/plugins/obsidian-quiet-outline/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/plugins/obsidian-quiet-outline/main.js -------------------------------------------------------------------------------- /TemplateVault/.obsidian/plugins/obsidian-quiet-outline/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/plugins/obsidian-quiet-outline/manifest.json -------------------------------------------------------------------------------- /TemplateVault/.obsidian/plugins/obsidian-quiet-outline/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/plugins/obsidian-quiet-outline/styles.css -------------------------------------------------------------------------------- /TemplateVault/.obsidian/plugins/obsidian-statusbar-pomo/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/plugins/obsidian-statusbar-pomo/data.json -------------------------------------------------------------------------------- /TemplateVault/.obsidian/plugins/obsidian-statusbar-pomo/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/plugins/obsidian-statusbar-pomo/main.js -------------------------------------------------------------------------------- /TemplateVault/.obsidian/plugins/obsidian-statusbar-pomo/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/plugins/obsidian-statusbar-pomo/manifest.json -------------------------------------------------------------------------------- /TemplateVault/.obsidian/plugins/obsidian-statusbar-pomo/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/plugins/obsidian-statusbar-pomo/styles.css -------------------------------------------------------------------------------- /TemplateVault/.obsidian/plugins/obsidian-style-settings/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/plugins/obsidian-style-settings/data.json -------------------------------------------------------------------------------- /TemplateVault/.obsidian/plugins/obsidian-style-settings/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/plugins/obsidian-style-settings/main.js -------------------------------------------------------------------------------- /TemplateVault/.obsidian/plugins/obsidian-style-settings/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/plugins/obsidian-style-settings/manifest.json -------------------------------------------------------------------------------- /TemplateVault/.obsidian/plugins/obsidian-style-settings/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/plugins/obsidian-style-settings/styles.css -------------------------------------------------------------------------------- /TemplateVault/.obsidian/plugins/oz-clear-unused-images/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/plugins/oz-clear-unused-images/data.json -------------------------------------------------------------------------------- /TemplateVault/.obsidian/plugins/oz-clear-unused-images/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/plugins/oz-clear-unused-images/main.js -------------------------------------------------------------------------------- /TemplateVault/.obsidian/plugins/oz-clear-unused-images/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/plugins/oz-clear-unused-images/manifest.json -------------------------------------------------------------------------------- /TemplateVault/.obsidian/plugins/oz-clear-unused-images/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/plugins/oz-clear-unused-images/styles.css -------------------------------------------------------------------------------- /TemplateVault/.obsidian/plugins/tag-wrangler/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/plugins/tag-wrangler/main.js -------------------------------------------------------------------------------- /TemplateVault/.obsidian/plugins/tag-wrangler/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/plugins/tag-wrangler/manifest.json -------------------------------------------------------------------------------- /TemplateVault/.obsidian/plugins/tag-wrangler/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/plugins/tag-wrangler/styles.css -------------------------------------------------------------------------------- /TemplateVault/.obsidian/plugins/templater-obsidian/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/plugins/templater-obsidian/data.json -------------------------------------------------------------------------------- /TemplateVault/.obsidian/plugins/templater-obsidian/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/plugins/templater-obsidian/main.js -------------------------------------------------------------------------------- /TemplateVault/.obsidian/plugins/templater-obsidian/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/plugins/templater-obsidian/manifest.json -------------------------------------------------------------------------------- /TemplateVault/.obsidian/plugins/templater-obsidian/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/plugins/templater-obsidian/styles.css -------------------------------------------------------------------------------- /TemplateVault/.obsidian/plugins/various-complements/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/plugins/various-complements/data.json -------------------------------------------------------------------------------- /TemplateVault/.obsidian/plugins/various-complements/histories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/plugins/various-complements/histories.json -------------------------------------------------------------------------------- /TemplateVault/.obsidian/plugins/various-complements/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/plugins/various-complements/main.js -------------------------------------------------------------------------------- /TemplateVault/.obsidian/plugins/various-complements/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/plugins/various-complements/manifest.json -------------------------------------------------------------------------------- /TemplateVault/.obsidian/plugins/various-complements/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/plugins/various-complements/styles.css -------------------------------------------------------------------------------- /TemplateVault/.obsidian/starred.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/starred.json -------------------------------------------------------------------------------- /TemplateVault/.obsidian/templates.json: -------------------------------------------------------------------------------- 1 | { 2 | "folder": "05 - Templates" 3 | } -------------------------------------------------------------------------------- /TemplateVault/.obsidian/text-generator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/text-generator.json -------------------------------------------------------------------------------- /TemplateVault/.obsidian/themes/Prism/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/themes/Prism/manifest.json -------------------------------------------------------------------------------- /TemplateVault/.obsidian/themes/Prism/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/themes/Prism/theme.css -------------------------------------------------------------------------------- /TemplateVault/.obsidian/types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/types.json -------------------------------------------------------------------------------- /TemplateVault/.obsidian/workspace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/.obsidian/workspace.json -------------------------------------------------------------------------------- /TemplateVault/01 - Topics/01 - Networking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/01 - Topics/01 - Networking.md -------------------------------------------------------------------------------- /TemplateVault/01 - Topics/01 - Pentesting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/01 - Topics/01 - Pentesting.md -------------------------------------------------------------------------------- /TemplateVault/01 - Topics/01 - Programming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/01 - Topics/01 - Programming.md -------------------------------------------------------------------------------- /TemplateVault/01 - Topics/01 - Red Team.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/01 - Topics/01 - Red Team.md -------------------------------------------------------------------------------- /TemplateVault/02 - Types/02 - Cheatsheets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/02 - Types/02 - Cheatsheets.md -------------------------------------------------------------------------------- /TemplateVault/02 - Types/02 - Documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/02 - Types/02 - Documentation.md -------------------------------------------------------------------------------- /TemplateVault/02 - Types/02 - Techniques.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/02 - Types/02 - Techniques.md -------------------------------------------------------------------------------- /TemplateVault/02 - Types/02 - Write Ups.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/02 - Types/02 - Write Ups.md -------------------------------------------------------------------------------- /TemplateVault/03 - Content/!Cert/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TemplateVault/03 - Content/Cheatsheets/ADPT Discovery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/03 - Content/Cheatsheets/ADPT Discovery.md -------------------------------------------------------------------------------- /TemplateVault/03 - Content/Cheatsheets/Active Directory Penetration Testing Methodology Cheatsheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/03 - Content/Cheatsheets/Active Directory Penetration Testing Methodology Cheatsheet.md -------------------------------------------------------------------------------- /TemplateVault/03 - Content/Documentation/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TemplateVault/03 - Content/Programming/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TemplateVault/03 - Content/Techniques/placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TemplateVault/03 - Content/Write Ups/Blueprint/Blueprint External.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/03 - Content/Write Ups/Blueprint/Blueprint External.md -------------------------------------------------------------------------------- /TemplateVault/03 - Content/Write Ups/Blueprint/Blueprint Internal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/03 - Content/Write Ups/Blueprint/Blueprint Internal.md -------------------------------------------------------------------------------- /TemplateVault/03 - Content/Write Ups/Blueprint/My Report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/03 - Content/Write Ups/Blueprint/My Report.md -------------------------------------------------------------------------------- /TemplateVault/04 - Tasks/My Ideas.canvas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/04 - Tasks/My Ideas.canvas -------------------------------------------------------------------------------- /TemplateVault/04 - Tasks/To-Do Kanban.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/04 - Tasks/To-Do Kanban.md -------------------------------------------------------------------------------- /TemplateVault/05 - Templates/0500 - Report Templates/OSCP Report Template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/05 - Templates/0500 - Report Templates/OSCP Report Template.md -------------------------------------------------------------------------------- /TemplateVault/05 - Templates/0500 - Structural Elements/0501 - Header_CheatSheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/05 - Templates/0500 - Structural Elements/0501 - Header_CheatSheet.md -------------------------------------------------------------------------------- /TemplateVault/05 - Templates/0500 - Structural Elements/0502 - Header_Technique.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/05 - Templates/0500 - Structural Elements/0502 - Header_Technique.md -------------------------------------------------------------------------------- /TemplateVault/05 - Templates/0500 - Structural Elements/0503 - Header_Documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/05 - Templates/0500 - Structural Elements/0503 - Header_Documentation.md -------------------------------------------------------------------------------- /TemplateVault/05 - Templates/0500 - Structural Elements/0504 - Header_Writeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/05 - Templates/0500 - Structural Elements/0504 - Header_Writeup.md -------------------------------------------------------------------------------- /TemplateVault/05 - Templates/0500 - Structural Elements/0505 - Body.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/05 - Templates/0500 - Structural Elements/0505 - Body.md -------------------------------------------------------------------------------- /TemplateVault/05 - Templates/0500 - Structural Elements/0506 - Body_Challenges.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/05 - Templates/0500 - Structural Elements/0506 - Body_Challenges.md -------------------------------------------------------------------------------- /TemplateVault/05 - Templates/0500 - Structural Elements/0507 - Body_MITRE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/05 - Templates/0500 - Structural Elements/0507 - Body_MITRE.md -------------------------------------------------------------------------------- /TemplateVault/05 - Templates/0500 - Structural Elements/0508 - Body_Steps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/05 - Templates/0500 - Structural Elements/0508 - Body_Steps.md -------------------------------------------------------------------------------- /TemplateVault/05 - Templates/0500 - Structural Elements/0509 - Body_OPSEC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/05 - Templates/0500 - Structural Elements/0509 - Body_OPSEC.md -------------------------------------------------------------------------------- /TemplateVault/05 - Templates/0500 - Structural Elements/0510 - Body_Code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/05 - Templates/0500 - Structural Elements/0510 - Body_Code.md -------------------------------------------------------------------------------- /TemplateVault/05 - Templates/0500 - Structural Elements/0511 - Body_Examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/05 - Templates/0500 - Structural Elements/0511 - Body_Examples.md -------------------------------------------------------------------------------- /TemplateVault/05 - Templates/0500 - Structural Elements/0512 - Body_Install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/05 - Templates/0500 - Structural Elements/0512 - Body_Install.md -------------------------------------------------------------------------------- /TemplateVault/05 - Templates/0500 - Structural Elements/0513 - Resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/05 - Templates/0500 - Structural Elements/0513 - Resources.md -------------------------------------------------------------------------------- /TemplateVault/05 - Templates/0500 - Write Up Templates/0514 - Progress Tracker Template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/05 - Templates/0500 - Write Up Templates/0514 - Progress Tracker Template.md -------------------------------------------------------------------------------- /TemplateVault/05 - Templates/0500 - Write Up Templates/0515 - External Discovery Template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/05 - Templates/0500 - Write Up Templates/0515 - External Discovery Template.md -------------------------------------------------------------------------------- /TemplateVault/05 - Templates/0500 - Write Up Templates/0516 - Linux Methodology Template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/05 - Templates/0500 - Write Up Templates/0516 - Linux Methodology Template.md -------------------------------------------------------------------------------- /TemplateVault/05 - Templates/0500 - Write Up Templates/0517 - Windows Methodology Template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/05 - Templates/0500 - Write Up Templates/0517 - Windows Methodology Template.md -------------------------------------------------------------------------------- /TemplateVault/05 - Templates/0500 - Write Up Templates/0518 - Active Directory Methodology Template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/05 - Templates/0500 - Write Up Templates/0518 - Active Directory Methodology Template.md -------------------------------------------------------------------------------- /TemplateVault/05 - Templates/Note Generator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/05 - Templates/Note Generator.md -------------------------------------------------------------------------------- /TemplateVault/Attachments/04_Tasks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/04_Tasks.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/2_1_Organizational_Folders_Topics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/2_1_Organizational_Folders_Topics.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/2_1_Organizational_Folders_Types.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/2_1_Organizational_Folders_Types.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/2_2_Content_Folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/2_2_Content_Folder.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/2_5_Attachments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/2_5_Attachments.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/4.2_Implementing_Backups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/4.2_Implementing_Backups.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/KM4OP.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/KM4OP.jpg -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240323140614.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240323140614.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240323140833.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240323140833.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240323142317.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240323142317.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240323142516.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240323142516.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240323143101.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240323143101.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240323144130.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240323144130.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240323144656.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240323144656.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240323144729.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240323144729.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240323144850.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240323144850.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240323150111.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240323150111.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240323150149.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240323150149.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240323150204.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240323150204.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240323150226.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240323150226.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240323151436.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240323151436.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240323151732.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240323151732.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240428140516.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240428140516.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240428140923.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240428140923.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240615134520.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240615134520.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240619170327.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240619170327.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240619171415.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240619171415.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240619171843.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240619171843.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240619172115.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240619172115.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240619172205.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240619172205.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240619172305.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240619172305.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240619172653.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240619172653.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240619174130.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240619174130.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240619174244.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240619174244.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240619174627.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240619174627.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240619175151.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240619175151.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240629123717.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240629123717.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240629123739.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240629123739.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240629123821.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240629123821.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240629124143.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240629124143.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240629124255.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240629124255.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240629124901.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240629124901.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240629125329.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240629125329.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240629125504.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240629125504.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240629125642.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240629125642.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240629130102.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240629130102.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240629130139.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240629130139.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240629130205.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240629130205.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240629130507.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240629130507.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240629130538.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240629130538.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240629130828.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240629130828.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240629130839.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240629130839.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240629133252.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240629133252.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240629133546.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240629133546.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240629133715.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240629133715.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240629133843.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240629133843.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240629134248.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240629134248.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240629134530.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240629134530.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240629135027.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240629135027.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240629135048.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240629135048.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240629135104.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240629135104.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240629135147.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240629135147.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240629135223.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240629135223.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240629135455.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240629135455.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240629135526.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240629135526.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240629140100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240629140100.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240629140137.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240629140137.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240629140813.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240629140813.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240629140923.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240629140923.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240629141008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240629141008.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240629141143.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240629141143.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240630154701.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240630154701.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240630154730.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240630154730.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240630154800.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240630154800.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240630154813.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240630154813.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240630154826.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240630154826.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240630154836.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240630154836.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240630154847.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240630154847.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240630154859.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240630154859.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240630155222.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240630155222.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240630155545.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240630155545.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240630155911.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240630155911.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240630160046.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240630160046.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240630161126.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240630161126.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240630161944.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240630161944.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240630162425.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240630162425.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240702125928.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240702125928.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240702130558.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240702130558.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240702130813.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240702130813.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240702131350.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240702131350.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240702131746.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240702131746.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240702131814.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240702131814.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240702131900.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240702131900.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240702132614.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240702132614.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240702133334.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240702133334.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240702133535.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240702133535.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240702133545.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240702133545.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240702134455.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240702134455.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240702134811.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240702134811.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240702134917.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240702134917.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240702135053.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240702135053.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240702135203.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240702135203.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240702135251.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240702135251.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240702140310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240702140310.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240702140328.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240702140328.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240702140431.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240702140431.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240702140706.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240702140706.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240702140758.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240702140758.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240702141357.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240702141357.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240702141506.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240702141506.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240702142042.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240702142042.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240702142102.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240702142102.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240702142134.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240702142134.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240702142319.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240702142319.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240702142801.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240702142801.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240702142923.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240702142923.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240702143110.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240702143110.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240702143209.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240702143209.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240702143448.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240702143448.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240702143655.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240702143655.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240702144835.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240702144835.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240702144900.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240702144900.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240702145218.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240702145218.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240702145249.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240702145249.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240702145427.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240702145427.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240702145529.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240702145529.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240702145807.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240702145807.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240702145826.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240702145826.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240702150125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240702150125.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240702150856.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240702150856.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240702151143.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240702151143.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240702151207.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240702151207.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240702155743.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240702155743.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240704161653.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240704161653.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240704161714.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240704161714.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240704161730.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240704161730.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240704161744.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240704161744.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240704161823.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240704161823.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240704161840.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240704161840.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240704162013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240704162013.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240704162240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240704162240.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240704162418.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240704162418.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240704162507.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240704162507.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240704162548.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240704162548.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240704162743.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240704162743.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240704163223.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240704163223.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240704163631.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240704163631.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240704163720.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240704163720.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240704163739.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240704163739.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240704163957.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240704163957.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240704164056.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240704164056.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240704164254.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240704164254.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240704164519.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240704164519.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240704164532.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240704164532.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240704165017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240704165017.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240704165239.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240704165239.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240704165527.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240704165527.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240704165654.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240704165654.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240704170033.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240704170033.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240704170244.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240704170244.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240704170522.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240704170522.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240704171258.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240704171258.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240711155820.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240711155820.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240711155919.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240711155919.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240711161138.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240711161138.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240711171706.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240711171706.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240711171736.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240711171736.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240718162747.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240718162747.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240718162820.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240718162820.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240718165020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240718165020.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240718165046.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240718165046.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240718215132.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240718215132.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240718215718.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240718215718.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240718215854.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240718215854.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240718220104.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240718220104.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240718220427.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240718220427.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240718220747.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240718220747.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240718221056.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240718221056.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240718221155.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240718221155.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240718221333.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240718221333.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240718221349.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240718221349.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240718221739.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240718221739.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240718221853.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240718221853.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240718222026.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240718222026.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240718222118.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240718222118.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240718222620.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240718222620.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240718222755.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240718222755.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240718225718.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240718225718.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240718230135.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240718230135.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240718230706.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240718230706.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240718231008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240718231008.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240718234244.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240718234244.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240718234304.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240718234304.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240718234353.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240718234353.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240718234605.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240718234605.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240718234950.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240718234950.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240718235057.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240718235057.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240718235235.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240718235235.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240719000802.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240719000802.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240719000904.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240719000904.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240719000936.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240719000936.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240719000943.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240719000943.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240719001206.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240719001206.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240719002155.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240719002155.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240719002429.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240719002429.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240719002628.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240719002628.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240719002732.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240719002732.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240719003018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240719003018.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240719003211.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240719003211.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240719003503.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240719003503.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240719003641.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240719003641.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240719003929.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240719003929.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240719003949.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240719003949.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240719004013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240719004013.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240719004051.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240719004051.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240719004144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240719004144.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240719004902.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240719004902.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240719004954.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240719004954.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240719005037.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240719005037.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240719005052.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240719005052.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240719005829.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240719005829.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240719010446.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240719010446.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240719010521.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240719010521.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240719010736.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240719010736.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240719010755.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240719010755.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240719010840.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240719010840.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240719010919.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240719010919.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240719011011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240719011011.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240719011111.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240719011111.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240719011226.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240719011226.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240719011257.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240719011257.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240719011410.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240719011410.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240719011422.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240719011422.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240719011442.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240719011442.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240719012235.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240719012235.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240719012243.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240719012243.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240719012414.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240719012414.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240719012617.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240719012617.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240719012735.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240719012735.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240719013351.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240719013351.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240719013557.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240719013557.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240719013609.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240719013609.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240719013626.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240719013626.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240719013832.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240719013832.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240719013912.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240719013912.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240719014400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240719014400.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240719020653.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240719020653.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240719114410.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240719114410.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240719114436.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240719114436.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240723053433.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240723053433.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240723053911.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240723053911.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240723053925.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240723053925.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240723054526.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240723054526.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240723055033.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240723055033.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240723055203.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240723055203.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240723055325.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240723055325.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240723055909.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240723055909.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240723060341.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240723060341.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240723060418.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240723060418.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240723060513.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240723060513.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240723060635.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240723060635.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240723061211.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240723061211.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240723061502.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240723061502.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240723062258.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240723062258.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240723062314.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240723062314.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240723063915.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240723063915.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240723063934.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240723063934.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240723063946.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240723063946.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240723064019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240723064019.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240723064040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240723064040.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240723064444.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240723064444.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240723064856.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240723064856.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240723064931.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240723064931.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240723064950.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240723064950.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240723065021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240723065021.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240723065109.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240723065109.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240723065228.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240723065228.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240723065306.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240723065306.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240723065351.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240723065351.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240723065430.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240723065430.png -------------------------------------------------------------------------------- /TemplateVault/Attachments/Pasted image 20240723070517.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Attachments/Pasted image 20240723070517.png -------------------------------------------------------------------------------- /TemplateVault/Vault Index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/TemplateVault/Vault Index.md -------------------------------------------------------------------------------- /attachments/course-content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/attachments/course-content.png -------------------------------------------------------------------------------- /attachments/extracted-course.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/attachments/extracted-course.png -------------------------------------------------------------------------------- /attachments/launch-obsidian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/attachments/launch-obsidian.png -------------------------------------------------------------------------------- /attachments/open-templatevault.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/attachments/open-templatevault.png -------------------------------------------------------------------------------- /attachments/repo-zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/808ale/Knowledge-Management-for-Offensive-Security-Professionals/HEAD/attachments/repo-zip.png --------------------------------------------------------------------------------