├── AV_Evasion ├── Command_Line_Obfuscation │ └── README.md ├── Documents │ ├── Bypass-AV.pdf │ ├── BypassAVDynamics.pdf │ ├── D1T1 - EDR Evasion Primer for Red Teamers - Karsten Nohl & Jorge Gimenez.pdf │ └── README.md ├── Metasploit │ ├── README.md │ └── handler-reverse-https.rc ├── Payload_Snippets │ ├── Assemblyinfo.cs │ ├── Copy_in_Chunks.cs │ └── README.md ├── README.md ├── Sandbox_Evasion │ ├── DomainCheck.cs │ ├── DomainCheck.vb │ ├── README.md │ ├── Sleep.cs │ ├── Sleep.vba │ ├── VirtualAllocExNuma.cs │ ├── WebRequest.cs │ ├── WebRequest.vb │ ├── flsAlloc.cs │ └── flsAlloc.vba └── UAC_Bypass │ ├── README.md │ └── UAC_UP.cs ├── Active_Directory ├── DACL_Abuse │ └── README.md ├── Forests_and_Trusts │ ├── Enumeration │ │ └── README.md │ ├── Forest_Attacks │ │ └── README.md │ └── README.md ├── Just_Enough_Administration │ └── README.md ├── Just_In_Time_Administration │ └── README.md ├── Kerberos_Delegation │ ├── Constrained │ │ └── README.md │ ├── RBCD │ │ └── README.md │ ├── README.md │ └── Unconstrained │ │ └── README.md └── README.md ├── Application_Whitelisting ├── Bypass_Alternate_Data_Streams │ └── README.md ├── Bypass_DLLs │ └── README.md ├── Bypass_Execution_Methods │ ├── InstallUtil │ │ ├── README.md │ │ ├── Templates │ │ │ └── Standard_Template_InstallUtils.cs │ │ ├── Templates_CLM │ │ │ ├── CLM_Runner_Interactive.cs │ │ │ ├── CLM_Runner_Non_Interactive.cs │ │ │ └── README.md │ │ └── Templates_Shellcode │ │ │ ├── AES_Process_Injection_Dynamic_Invoke_Alternative_InstallUtils.cs │ │ │ ├── AES_Shellcode_Runner_Dynamic_Invoke_Alternate_InstallUtils.cs │ │ │ └── README.md │ ├── MSBuild │ │ ├── README.md │ │ ├── Templates │ │ │ ├── MSBuild_Template.csproj │ │ │ └── MSBuild_Template_2.csproj │ │ ├── Templates_CLM │ │ │ ├── CLM_Runner_Interactive.csproj │ │ │ ├── CLM_Runner_Non_Interactive.csproj │ │ │ └── README.md │ │ └── Templates_Shellcode │ │ │ ├── AES_Process_Injection_Dynamic_Invoke_Alternative_InLine.csproj │ │ │ ├── AES_Shellcode_Runner_Dynamic_Invoke_Alternate_InLine.csproj │ │ │ ├── README.md │ │ │ └── Shellcode_Runner_Dynamic_Invoke_Alternate_InLine.csproj │ ├── Mshta │ │ ├── README.md │ │ └── Templates │ │ │ ├── Template_HTA.hta │ │ │ ├── Template_JScript.sct │ │ │ └── Template_VB_Script.sct │ └── WMIC │ │ └── README.md ├── Bypass_Hardlinks │ └── README.md ├── Bypass_PowerShell │ ├── IgnoreCLM │ │ ├── IgnoreCLM.cs │ │ ├── IgnoreCLM.exe │ │ └── README.md │ └── README.md └── README.md ├── DLL_Reflective └── README.md ├── Helpers ├── Convert-UUID.ps1 ├── Invoke-DecryptAES.ps1 ├── Invoke-EncryptAES.ps1 ├── Invoke-VBString.ps1 ├── String-FromUUID .ps1 ├── XOR_Shellcode_Encrypter.cs ├── XOR_Shellcode_Encrypter.ps1 └── XOR_Shellcode_Encrypter_VisualBasic.cs ├── Kiosk_Breakouts └── README.md ├── Linux_Exploitation ├── Backdoors │ └── README.md ├── Bypassing_AV │ └── README.md ├── README.md ├── Shared_Libraries │ └── README.md └── VIM │ └── README.md ├── Linux_Lateral_Movement ├── Ansible │ ├── Playbook_Meterpreter_Execute.yml │ ├── Playbook_SSH_Create.yml │ ├── Playbook_Shell_Execute.yml │ └── README.md ├── Artifactory │ └── README.md ├── Kerberos │ └── README.md ├── README.md └── SSH │ └── README.md ├── MSSQL ├── Authentication │ └── README.md ├── Enumeration │ └── README.md ├── Linked_Servers │ └── README.md ├── NTLM │ └── README.md └── Privilege_Escalation │ └── README.md ├── Macros ├── Download_Cradles │ ├── Download_Execute_On_Disk_x86.vba │ ├── PowerShell_Execute_Reflective_DLL_x64.vba │ ├── PowerShell_Execute_Reflective_DLL_x86.vba │ ├── Standard_PowerShell_x86.vba │ └── Standard_Powershell_x64.vba ├── Helpers │ ├── ProcessCheck.vba │ └── XOR_ShellCode_Encrypter_Helper_VBA_3Byte.cs ├── README.md ├── Shellcode_Templates │ ├── README.md │ ├── Shellcode_Runner.vba │ ├── Shellcode_Runner_Alternative.vba │ └── XOR_ShellCode_Encrypter_Helper_VBA_3Byte.cs └── WMI_DeChain_PowerShell.vb ├── Network_Filters └── README.md ├── Phishing ├── Calendars │ ├── HTML_Microsoft_Teams.html │ ├── HTML_Template_1.html │ ├── HTML_Template_2.html │ ├── ICS_Template.ics │ └── README.md ├── HTML Smuggling │ ├── AES_Encrypter_Encoder.ps1 │ ├── HTML Templates │ │ ├── AES_HTML.html │ │ ├── AES_HTML_Pretext.html │ │ └── Standard_Blank_HTML.html │ └── README.md └── Payloads │ ├── HTA │ ├── HTA-1.hta │ └── HTA-2.hta │ └── VBA │ └── README.md ├── Pivoting ├── README.md ├── ligolo_shellcode_process_injection.cs ├── ligolo_shellcode_runner.cs └── ligolo_shellcode_runner_InstallUtil.cs ├── Process_Hollowing ├── C# │ ├── Standard_Process_Hollowing.cs │ ├── Standard_Process_Hollowing_Delegate.cs │ └── Standard_Process_Hollowing_Dynamic_Invoke.cs └── PowerShell │ ├── Standard_Process_Hollowing.ps1 │ ├── Standard_Process_Hollowing_Delegate_InMemory.ps1 │ └── WIP_Standard_Process_Hollowing_Delegate.ps1 ├── Process_Injection ├── C# │ ├── Standard_Process_Injection.cs │ ├── Standard_Process_Injection_Alternative.cs │ ├── Standard_Process_Injection_Delegate.cs │ ├── Standard_Process_Injection_Delegate_Alternative.cs │ ├── Standard_Process_Injection_Dynamic_Invoke.cs │ └── Standard_Process_Injection_Dynamic_Invoke_Alternative.cs └── PowerShell │ ├── Standard_Process_Injection.ps1 │ ├── Standard_Process_Injection_Alternative.ps1 │ ├── Standard_Process_Injection_Delegate.ps1 │ ├── Standard_Process_Injection_Delegate_Alternative.ps1 │ ├── Standard_Process_Injection_Delegate_inMemory.ps1 │ └── Standard_Process_Injection_Delegate_inMemory_Alternative.ps1 ├── README.md ├── Shellcode_Runners ├── C# │ ├── Shellcode_Runner.cs │ ├── Shellcode_Runner_Delegate.cs │ └── Standard_Shellcode_Runner_Dynamic_Invoke.cs ├── PowerShell │ ├── Shellcode_Runner.ps1 │ ├── Shellcode_Runner_Delegate.ps1 │ └── Standard_Shellcode_Runner_Delegate_inMemory.ps1 └── Visual Basic │ └── Shellcode_Runner.vb ├── Shellcode_Templates ├── DecryptAESAsBytes.cs ├── Invoke-DecryptXOR.ps1 ├── Invoke-XOR2ByteArray.ps1 ├── README.md └── Shellcode_Templates │ ├── ASPX │ └── AES_Shellcode_Runner_Dynamic_Invoke.aspx │ ├── C# │ ├── AES_Process_Hollowing_Dynamic_Invoke.cs │ ├── AES_Process_Injection_Dynamic_Invoke.cs │ ├── AES_Process_Injection_Dynamic_Invoke_Alternate.cs │ ├── AES_Shellcode_Runner_Dynamic_Invoke.cs │ ├── AES_Shellcode_Runner_Dynamic_Invoke_Alternate.cs │ ├── README.md │ ├── UUID_Process_Hollowing_Dynamic_Invoke.cs │ ├── UUID_Process_Injection_Dynamic_Invoke_Alternate.cs │ └── UUID_Shellcode_Runner_Dynamic_Invoke.cs │ └── PowerShell │ ├── AES_Process_Hollowing_Delegate.ps1 │ ├── AES_Process_Injection_Delegate_Alternate.ps1 │ ├── AES_Shellcode_Runner_Delegate.ps1 │ ├── README.md │ ├── UUID_Process_Hollowing_Delegate.ps1.ps1 │ └── UUID_Process_Injection_Delegate_Alternate.ps1 ├── Tools ├── Binaries │ ├── All_Binaries.7z │ ├── DeadPotato-NET4.exe │ ├── PsExec.exe │ ├── SQLRecon.exe │ ├── SharpEfsTrigger.exe │ ├── SharpSpoolTrigger.exe │ ├── accesschk.exe │ ├── mimikatz.exe │ └── pspy64 └── PowerShell │ ├── All_PowerShell.7z │ ├── Amnesiac.ps1 │ ├── Invoke-ADEnum.ps1 │ ├── Invoke-DeadPotato.ps1 │ ├── Invoke-DumpMDF.ps1 │ ├── Invoke-Mimikatz.ps1 │ ├── Invoke-PPLKiller.ps1 │ ├── Invoke-PowerIncrease.ps1 │ ├── Invoke-RDPThief.ps1 │ ├── Invoke-ReflectivePEInjection.ps1 │ ├── Invoke-Rubeus.ps1 │ ├── Invoke-RunAsSystem.ps1 │ ├── Invoke-SMBRemoting.ps1 │ ├── Invoke-SQLRecon.ps1 │ ├── Invoke-SpoolSample.ps1 │ ├── PowerUpSQL.ps1 │ ├── PsMapExec.ps1 │ ├── SimpleCat-TCP.ps1 │ ├── SimpleCat-TCP_Obfuscated.ps1 │ └── Token-Impersonation.ps1 ├── Windows_Credentials ├── Access_Tokens │ ├── AES_Shellcode_Injection_Alternative_Dynamic_Invoke_PrintSpooferNet.cs │ ├── Standard_PrintSpooferNet.cs │ ├── Standard_Shellcode_Injection_Alternative_Dynamic_Invoke_PrintSpooferNet.cs │ └── Standard_Shellcode_Injection_PrintSpooferNet.cs ├── LSASS │ └── README.md ├── Memory_Dumping │ ├── Invoke-DumpLSASS.ps1 │ ├── README.md │ └── SharpDumpLSASS.cs └── SAM │ └── README.md ├── Windows_Lateral_Movement ├── RDP │ ├── Invoke-RDPThief.ps1 │ └── README.md └── README.md └── Windows_Local_Privilege_Escalation └── Always_Install_Elevated └── README.md /AV_Evasion/Command_Line_Obfuscation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/AV_Evasion/Command_Line_Obfuscation/README.md -------------------------------------------------------------------------------- /AV_Evasion/Documents/Bypass-AV.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/AV_Evasion/Documents/Bypass-AV.pdf -------------------------------------------------------------------------------- /AV_Evasion/Documents/BypassAVDynamics.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/AV_Evasion/Documents/BypassAVDynamics.pdf -------------------------------------------------------------------------------- /AV_Evasion/Documents/D1T1 - EDR Evasion Primer for Red Teamers - Karsten Nohl & Jorge Gimenez.pdf: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /AV_Evasion/Documents/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /AV_Evasion/Metasploit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/AV_Evasion/Metasploit/README.md -------------------------------------------------------------------------------- /AV_Evasion/Metasploit/handler-reverse-https.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/AV_Evasion/Metasploit/handler-reverse-https.rc -------------------------------------------------------------------------------- /AV_Evasion/Payload_Snippets/Assemblyinfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/AV_Evasion/Payload_Snippets/Assemblyinfo.cs -------------------------------------------------------------------------------- /AV_Evasion/Payload_Snippets/Copy_in_Chunks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/AV_Evasion/Payload_Snippets/Copy_in_Chunks.cs -------------------------------------------------------------------------------- /AV_Evasion/Payload_Snippets/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /AV_Evasion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/AV_Evasion/README.md -------------------------------------------------------------------------------- /AV_Evasion/Sandbox_Evasion/DomainCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/AV_Evasion/Sandbox_Evasion/DomainCheck.cs -------------------------------------------------------------------------------- /AV_Evasion/Sandbox_Evasion/DomainCheck.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/AV_Evasion/Sandbox_Evasion/DomainCheck.vb -------------------------------------------------------------------------------- /AV_Evasion/Sandbox_Evasion/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /AV_Evasion/Sandbox_Evasion/Sleep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/AV_Evasion/Sandbox_Evasion/Sleep.cs -------------------------------------------------------------------------------- /AV_Evasion/Sandbox_Evasion/Sleep.vba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/AV_Evasion/Sandbox_Evasion/Sleep.vba -------------------------------------------------------------------------------- /AV_Evasion/Sandbox_Evasion/VirtualAllocExNuma.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/AV_Evasion/Sandbox_Evasion/VirtualAllocExNuma.cs -------------------------------------------------------------------------------- /AV_Evasion/Sandbox_Evasion/WebRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/AV_Evasion/Sandbox_Evasion/WebRequest.cs -------------------------------------------------------------------------------- /AV_Evasion/Sandbox_Evasion/WebRequest.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/AV_Evasion/Sandbox_Evasion/WebRequest.vb -------------------------------------------------------------------------------- /AV_Evasion/Sandbox_Evasion/flsAlloc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/AV_Evasion/Sandbox_Evasion/flsAlloc.cs -------------------------------------------------------------------------------- /AV_Evasion/Sandbox_Evasion/flsAlloc.vba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/AV_Evasion/Sandbox_Evasion/flsAlloc.vba -------------------------------------------------------------------------------- /AV_Evasion/UAC_Bypass/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/AV_Evasion/UAC_Bypass/README.md -------------------------------------------------------------------------------- /AV_Evasion/UAC_Bypass/UAC_UP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/AV_Evasion/UAC_Bypass/UAC_UP.cs -------------------------------------------------------------------------------- /Active_Directory/DACL_Abuse/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Active_Directory/DACL_Abuse/README.md -------------------------------------------------------------------------------- /Active_Directory/Forests_and_Trusts/Enumeration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Active_Directory/Forests_and_Trusts/Enumeration/README.md -------------------------------------------------------------------------------- /Active_Directory/Forests_and_Trusts/Forest_Attacks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Active_Directory/Forests_and_Trusts/Forest_Attacks/README.md -------------------------------------------------------------------------------- /Active_Directory/Forests_and_Trusts/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Active_Directory/Just_Enough_Administration/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Active_Directory/Just_In_Time_Administration/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Active_Directory/Kerberos_Delegation/Constrained/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Active_Directory/Kerberos_Delegation/Constrained/README.md -------------------------------------------------------------------------------- /Active_Directory/Kerberos_Delegation/RBCD/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Active_Directory/Kerberos_Delegation/RBCD/README.md -------------------------------------------------------------------------------- /Active_Directory/Kerberos_Delegation/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Active_Directory/Kerberos_Delegation/Unconstrained/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Active_Directory/Kerberos_Delegation/Unconstrained/README.md -------------------------------------------------------------------------------- /Active_Directory/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Application_Whitelisting/Bypass_Alternate_Data_Streams/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Application_Whitelisting/Bypass_Alternate_Data_Streams/README.md -------------------------------------------------------------------------------- /Application_Whitelisting/Bypass_DLLs/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Application_Whitelisting/Bypass_Execution_Methods/InstallUtil/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Application_Whitelisting/Bypass_Execution_Methods/InstallUtil/README.md -------------------------------------------------------------------------------- /Application_Whitelisting/Bypass_Execution_Methods/InstallUtil/Templates/Standard_Template_InstallUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Application_Whitelisting/Bypass_Execution_Methods/InstallUtil/Templates/Standard_Template_InstallUtils.cs -------------------------------------------------------------------------------- /Application_Whitelisting/Bypass_Execution_Methods/InstallUtil/Templates_CLM/CLM_Runner_Interactive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Application_Whitelisting/Bypass_Execution_Methods/InstallUtil/Templates_CLM/CLM_Runner_Interactive.cs -------------------------------------------------------------------------------- /Application_Whitelisting/Bypass_Execution_Methods/InstallUtil/Templates_CLM/CLM_Runner_Non_Interactive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Application_Whitelisting/Bypass_Execution_Methods/InstallUtil/Templates_CLM/CLM_Runner_Non_Interactive.cs -------------------------------------------------------------------------------- /Application_Whitelisting/Bypass_Execution_Methods/InstallUtil/Templates_CLM/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Application_Whitelisting/Bypass_Execution_Methods/InstallUtil/Templates_CLM/README.md -------------------------------------------------------------------------------- /Application_Whitelisting/Bypass_Execution_Methods/InstallUtil/Templates_Shellcode/AES_Process_Injection_Dynamic_Invoke_Alternative_InstallUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Application_Whitelisting/Bypass_Execution_Methods/InstallUtil/Templates_Shellcode/AES_Process_Injection_Dynamic_Invoke_Alternative_InstallUtils.cs -------------------------------------------------------------------------------- /Application_Whitelisting/Bypass_Execution_Methods/InstallUtil/Templates_Shellcode/AES_Shellcode_Runner_Dynamic_Invoke_Alternate_InstallUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Application_Whitelisting/Bypass_Execution_Methods/InstallUtil/Templates_Shellcode/AES_Shellcode_Runner_Dynamic_Invoke_Alternate_InstallUtils.cs -------------------------------------------------------------------------------- /Application_Whitelisting/Bypass_Execution_Methods/InstallUtil/Templates_Shellcode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Application_Whitelisting/Bypass_Execution_Methods/InstallUtil/Templates_Shellcode/README.md -------------------------------------------------------------------------------- /Application_Whitelisting/Bypass_Execution_Methods/MSBuild/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Application_Whitelisting/Bypass_Execution_Methods/MSBuild/README.md -------------------------------------------------------------------------------- /Application_Whitelisting/Bypass_Execution_Methods/MSBuild/Templates/MSBuild_Template.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Application_Whitelisting/Bypass_Execution_Methods/MSBuild/Templates/MSBuild_Template.csproj -------------------------------------------------------------------------------- /Application_Whitelisting/Bypass_Execution_Methods/MSBuild/Templates/MSBuild_Template_2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Application_Whitelisting/Bypass_Execution_Methods/MSBuild/Templates/MSBuild_Template_2.csproj -------------------------------------------------------------------------------- /Application_Whitelisting/Bypass_Execution_Methods/MSBuild/Templates_CLM/CLM_Runner_Interactive.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Application_Whitelisting/Bypass_Execution_Methods/MSBuild/Templates_CLM/CLM_Runner_Interactive.csproj -------------------------------------------------------------------------------- /Application_Whitelisting/Bypass_Execution_Methods/MSBuild/Templates_CLM/CLM_Runner_Non_Interactive.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Application_Whitelisting/Bypass_Execution_Methods/MSBuild/Templates_CLM/CLM_Runner_Non_Interactive.csproj -------------------------------------------------------------------------------- /Application_Whitelisting/Bypass_Execution_Methods/MSBuild/Templates_CLM/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Application_Whitelisting/Bypass_Execution_Methods/MSBuild/Templates_CLM/README.md -------------------------------------------------------------------------------- /Application_Whitelisting/Bypass_Execution_Methods/MSBuild/Templates_Shellcode/AES_Process_Injection_Dynamic_Invoke_Alternative_InLine.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Application_Whitelisting/Bypass_Execution_Methods/MSBuild/Templates_Shellcode/AES_Process_Injection_Dynamic_Invoke_Alternative_InLine.csproj -------------------------------------------------------------------------------- /Application_Whitelisting/Bypass_Execution_Methods/MSBuild/Templates_Shellcode/AES_Shellcode_Runner_Dynamic_Invoke_Alternate_InLine.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Application_Whitelisting/Bypass_Execution_Methods/MSBuild/Templates_Shellcode/AES_Shellcode_Runner_Dynamic_Invoke_Alternate_InLine.csproj -------------------------------------------------------------------------------- /Application_Whitelisting/Bypass_Execution_Methods/MSBuild/Templates_Shellcode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Application_Whitelisting/Bypass_Execution_Methods/MSBuild/Templates_Shellcode/README.md -------------------------------------------------------------------------------- /Application_Whitelisting/Bypass_Execution_Methods/MSBuild/Templates_Shellcode/Shellcode_Runner_Dynamic_Invoke_Alternate_InLine.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Application_Whitelisting/Bypass_Execution_Methods/MSBuild/Templates_Shellcode/Shellcode_Runner_Dynamic_Invoke_Alternate_InLine.csproj -------------------------------------------------------------------------------- /Application_Whitelisting/Bypass_Execution_Methods/Mshta/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Application_Whitelisting/Bypass_Execution_Methods/Mshta/README.md -------------------------------------------------------------------------------- /Application_Whitelisting/Bypass_Execution_Methods/Mshta/Templates/Template_HTA.hta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Application_Whitelisting/Bypass_Execution_Methods/Mshta/Templates/Template_HTA.hta -------------------------------------------------------------------------------- /Application_Whitelisting/Bypass_Execution_Methods/Mshta/Templates/Template_JScript.sct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Application_Whitelisting/Bypass_Execution_Methods/Mshta/Templates/Template_JScript.sct -------------------------------------------------------------------------------- /Application_Whitelisting/Bypass_Execution_Methods/Mshta/Templates/Template_VB_Script.sct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Application_Whitelisting/Bypass_Execution_Methods/Mshta/Templates/Template_VB_Script.sct -------------------------------------------------------------------------------- /Application_Whitelisting/Bypass_Execution_Methods/WMIC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Application_Whitelisting/Bypass_Execution_Methods/WMIC/README.md -------------------------------------------------------------------------------- /Application_Whitelisting/Bypass_Hardlinks/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Application_Whitelisting/Bypass_PowerShell/IgnoreCLM/IgnoreCLM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Application_Whitelisting/Bypass_PowerShell/IgnoreCLM/IgnoreCLM.cs -------------------------------------------------------------------------------- /Application_Whitelisting/Bypass_PowerShell/IgnoreCLM/IgnoreCLM.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Application_Whitelisting/Bypass_PowerShell/IgnoreCLM/IgnoreCLM.exe -------------------------------------------------------------------------------- /Application_Whitelisting/Bypass_PowerShell/IgnoreCLM/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Application_Whitelisting/Bypass_PowerShell/IgnoreCLM/README.md -------------------------------------------------------------------------------- /Application_Whitelisting/Bypass_PowerShell/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Application_Whitelisting/Bypass_PowerShell/README.md -------------------------------------------------------------------------------- /Application_Whitelisting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Application_Whitelisting/README.md -------------------------------------------------------------------------------- /DLL_Reflective/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/DLL_Reflective/README.md -------------------------------------------------------------------------------- /Helpers/Convert-UUID.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Helpers/Convert-UUID.ps1 -------------------------------------------------------------------------------- /Helpers/Invoke-DecryptAES.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Helpers/Invoke-DecryptAES.ps1 -------------------------------------------------------------------------------- /Helpers/Invoke-EncryptAES.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Helpers/Invoke-EncryptAES.ps1 -------------------------------------------------------------------------------- /Helpers/Invoke-VBString.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Helpers/Invoke-VBString.ps1 -------------------------------------------------------------------------------- /Helpers/String-FromUUID .ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Helpers/String-FromUUID .ps1 -------------------------------------------------------------------------------- /Helpers/XOR_Shellcode_Encrypter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Helpers/XOR_Shellcode_Encrypter.cs -------------------------------------------------------------------------------- /Helpers/XOR_Shellcode_Encrypter.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Helpers/XOR_Shellcode_Encrypter.ps1 -------------------------------------------------------------------------------- /Helpers/XOR_Shellcode_Encrypter_VisualBasic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Helpers/XOR_Shellcode_Encrypter_VisualBasic.cs -------------------------------------------------------------------------------- /Kiosk_Breakouts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Kiosk_Breakouts/README.md -------------------------------------------------------------------------------- /Linux_Exploitation/Backdoors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Linux_Exploitation/Backdoors/README.md -------------------------------------------------------------------------------- /Linux_Exploitation/Bypassing_AV/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Linux_Exploitation/Bypassing_AV/README.md -------------------------------------------------------------------------------- /Linux_Exploitation/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Linux_Exploitation/Shared_Libraries/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Linux_Exploitation/Shared_Libraries/README.md -------------------------------------------------------------------------------- /Linux_Exploitation/VIM/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Linux_Exploitation/VIM/README.md -------------------------------------------------------------------------------- /Linux_Lateral_Movement/Ansible/Playbook_Meterpreter_Execute.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Linux_Lateral_Movement/Ansible/Playbook_Meterpreter_Execute.yml -------------------------------------------------------------------------------- /Linux_Lateral_Movement/Ansible/Playbook_SSH_Create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Linux_Lateral_Movement/Ansible/Playbook_SSH_Create.yml -------------------------------------------------------------------------------- /Linux_Lateral_Movement/Ansible/Playbook_Shell_Execute.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Linux_Lateral_Movement/Ansible/Playbook_Shell_Execute.yml -------------------------------------------------------------------------------- /Linux_Lateral_Movement/Ansible/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Linux_Lateral_Movement/Ansible/README.md -------------------------------------------------------------------------------- /Linux_Lateral_Movement/Artifactory/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Linux_Lateral_Movement/Artifactory/README.md -------------------------------------------------------------------------------- /Linux_Lateral_Movement/Kerberos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Linux_Lateral_Movement/Kerberos/README.md -------------------------------------------------------------------------------- /Linux_Lateral_Movement/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Linux_Lateral_Movement/SSH/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Linux_Lateral_Movement/SSH/README.md -------------------------------------------------------------------------------- /MSSQL/Authentication/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/MSSQL/Authentication/README.md -------------------------------------------------------------------------------- /MSSQL/Enumeration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/MSSQL/Enumeration/README.md -------------------------------------------------------------------------------- /MSSQL/Linked_Servers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/MSSQL/Linked_Servers/README.md -------------------------------------------------------------------------------- /MSSQL/NTLM/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/MSSQL/NTLM/README.md -------------------------------------------------------------------------------- /MSSQL/Privilege_Escalation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/MSSQL/Privilege_Escalation/README.md -------------------------------------------------------------------------------- /Macros/Download_Cradles/Download_Execute_On_Disk_x86.vba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Macros/Download_Cradles/Download_Execute_On_Disk_x86.vba -------------------------------------------------------------------------------- /Macros/Download_Cradles/PowerShell_Execute_Reflective_DLL_x64.vba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Macros/Download_Cradles/PowerShell_Execute_Reflective_DLL_x64.vba -------------------------------------------------------------------------------- /Macros/Download_Cradles/PowerShell_Execute_Reflective_DLL_x86.vba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Macros/Download_Cradles/PowerShell_Execute_Reflective_DLL_x86.vba -------------------------------------------------------------------------------- /Macros/Download_Cradles/Standard_PowerShell_x86.vba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Macros/Download_Cradles/Standard_PowerShell_x86.vba -------------------------------------------------------------------------------- /Macros/Download_Cradles/Standard_Powershell_x64.vba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Macros/Download_Cradles/Standard_Powershell_x64.vba -------------------------------------------------------------------------------- /Macros/Helpers/ProcessCheck.vba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Macros/Helpers/ProcessCheck.vba -------------------------------------------------------------------------------- /Macros/Helpers/XOR_ShellCode_Encrypter_Helper_VBA_3Byte.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Macros/Helpers/XOR_ShellCode_Encrypter_Helper_VBA_3Byte.cs -------------------------------------------------------------------------------- /Macros/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Macros/README.md -------------------------------------------------------------------------------- /Macros/Shellcode_Templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Macros/Shellcode_Templates/README.md -------------------------------------------------------------------------------- /Macros/Shellcode_Templates/Shellcode_Runner.vba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Macros/Shellcode_Templates/Shellcode_Runner.vba -------------------------------------------------------------------------------- /Macros/Shellcode_Templates/Shellcode_Runner_Alternative.vba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Macros/Shellcode_Templates/Shellcode_Runner_Alternative.vba -------------------------------------------------------------------------------- /Macros/Shellcode_Templates/XOR_ShellCode_Encrypter_Helper_VBA_3Byte.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Macros/Shellcode_Templates/XOR_ShellCode_Encrypter_Helper_VBA_3Byte.cs -------------------------------------------------------------------------------- /Macros/WMI_DeChain_PowerShell.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Macros/WMI_DeChain_PowerShell.vb -------------------------------------------------------------------------------- /Network_Filters/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Network_Filters/README.md -------------------------------------------------------------------------------- /Phishing/Calendars/HTML_Microsoft_Teams.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Phishing/Calendars/HTML_Microsoft_Teams.html -------------------------------------------------------------------------------- /Phishing/Calendars/HTML_Template_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Phishing/Calendars/HTML_Template_1.html -------------------------------------------------------------------------------- /Phishing/Calendars/HTML_Template_2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Phishing/Calendars/HTML_Template_2.html -------------------------------------------------------------------------------- /Phishing/Calendars/ICS_Template.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Phishing/Calendars/ICS_Template.ics -------------------------------------------------------------------------------- /Phishing/Calendars/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Phishing/Calendars/README.md -------------------------------------------------------------------------------- /Phishing/HTML Smuggling/AES_Encrypter_Encoder.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Phishing/HTML Smuggling/AES_Encrypter_Encoder.ps1 -------------------------------------------------------------------------------- /Phishing/HTML Smuggling/HTML Templates/AES_HTML.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Phishing/HTML Smuggling/HTML Templates/AES_HTML.html -------------------------------------------------------------------------------- /Phishing/HTML Smuggling/HTML Templates/AES_HTML_Pretext.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Phishing/HTML Smuggling/HTML Templates/AES_HTML_Pretext.html -------------------------------------------------------------------------------- /Phishing/HTML Smuggling/HTML Templates/Standard_Blank_HTML.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Phishing/HTML Smuggling/HTML Templates/Standard_Blank_HTML.html -------------------------------------------------------------------------------- /Phishing/HTML Smuggling/README.md: -------------------------------------------------------------------------------- 1 | ## Resources 2 | 3 | https://github.com/Arno0x/EmbedInHTML 4 | -------------------------------------------------------------------------------- /Phishing/Payloads/HTA/HTA-1.hta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Phishing/Payloads/HTA/HTA-1.hta -------------------------------------------------------------------------------- /Phishing/Payloads/HTA/HTA-2.hta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Phishing/Payloads/HTA/HTA-2.hta -------------------------------------------------------------------------------- /Phishing/Payloads/VBA/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Phishing/Payloads/VBA/README.md -------------------------------------------------------------------------------- /Pivoting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Pivoting/README.md -------------------------------------------------------------------------------- /Pivoting/ligolo_shellcode_process_injection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Pivoting/ligolo_shellcode_process_injection.cs -------------------------------------------------------------------------------- /Pivoting/ligolo_shellcode_runner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Pivoting/ligolo_shellcode_runner.cs -------------------------------------------------------------------------------- /Pivoting/ligolo_shellcode_runner_InstallUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Pivoting/ligolo_shellcode_runner_InstallUtil.cs -------------------------------------------------------------------------------- /Process_Hollowing/C#/Standard_Process_Hollowing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Process_Hollowing/C#/Standard_Process_Hollowing.cs -------------------------------------------------------------------------------- /Process_Hollowing/C#/Standard_Process_Hollowing_Delegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Process_Hollowing/C#/Standard_Process_Hollowing_Delegate.cs -------------------------------------------------------------------------------- /Process_Hollowing/C#/Standard_Process_Hollowing_Dynamic_Invoke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Process_Hollowing/C#/Standard_Process_Hollowing_Dynamic_Invoke.cs -------------------------------------------------------------------------------- /Process_Hollowing/PowerShell/Standard_Process_Hollowing.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Process_Hollowing/PowerShell/Standard_Process_Hollowing.ps1 -------------------------------------------------------------------------------- /Process_Hollowing/PowerShell/Standard_Process_Hollowing_Delegate_InMemory.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Process_Hollowing/PowerShell/Standard_Process_Hollowing_Delegate_InMemory.ps1 -------------------------------------------------------------------------------- /Process_Hollowing/PowerShell/WIP_Standard_Process_Hollowing_Delegate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Process_Hollowing/PowerShell/WIP_Standard_Process_Hollowing_Delegate.ps1 -------------------------------------------------------------------------------- /Process_Injection/C#/Standard_Process_Injection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Process_Injection/C#/Standard_Process_Injection.cs -------------------------------------------------------------------------------- /Process_Injection/C#/Standard_Process_Injection_Alternative.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Process_Injection/C#/Standard_Process_Injection_Alternative.cs -------------------------------------------------------------------------------- /Process_Injection/C#/Standard_Process_Injection_Delegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Process_Injection/C#/Standard_Process_Injection_Delegate.cs -------------------------------------------------------------------------------- /Process_Injection/C#/Standard_Process_Injection_Delegate_Alternative.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Process_Injection/C#/Standard_Process_Injection_Delegate_Alternative.cs -------------------------------------------------------------------------------- /Process_Injection/C#/Standard_Process_Injection_Dynamic_Invoke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Process_Injection/C#/Standard_Process_Injection_Dynamic_Invoke.cs -------------------------------------------------------------------------------- /Process_Injection/C#/Standard_Process_Injection_Dynamic_Invoke_Alternative.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Process_Injection/C#/Standard_Process_Injection_Dynamic_Invoke_Alternative.cs -------------------------------------------------------------------------------- /Process_Injection/PowerShell/Standard_Process_Injection.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Process_Injection/PowerShell/Standard_Process_Injection.ps1 -------------------------------------------------------------------------------- /Process_Injection/PowerShell/Standard_Process_Injection_Alternative.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Process_Injection/PowerShell/Standard_Process_Injection_Alternative.ps1 -------------------------------------------------------------------------------- /Process_Injection/PowerShell/Standard_Process_Injection_Delegate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Process_Injection/PowerShell/Standard_Process_Injection_Delegate.ps1 -------------------------------------------------------------------------------- /Process_Injection/PowerShell/Standard_Process_Injection_Delegate_Alternative.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Process_Injection/PowerShell/Standard_Process_Injection_Delegate_Alternative.ps1 -------------------------------------------------------------------------------- /Process_Injection/PowerShell/Standard_Process_Injection_Delegate_inMemory.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Process_Injection/PowerShell/Standard_Process_Injection_Delegate_inMemory.ps1 -------------------------------------------------------------------------------- /Process_Injection/PowerShell/Standard_Process_Injection_Delegate_inMemory_Alternative.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Process_Injection/PowerShell/Standard_Process_Injection_Delegate_inMemory_Alternative.ps1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/README.md -------------------------------------------------------------------------------- /Shellcode_Runners/C#/Shellcode_Runner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Shellcode_Runners/C#/Shellcode_Runner.cs -------------------------------------------------------------------------------- /Shellcode_Runners/C#/Shellcode_Runner_Delegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Shellcode_Runners/C#/Shellcode_Runner_Delegate.cs -------------------------------------------------------------------------------- /Shellcode_Runners/C#/Standard_Shellcode_Runner_Dynamic_Invoke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Shellcode_Runners/C#/Standard_Shellcode_Runner_Dynamic_Invoke.cs -------------------------------------------------------------------------------- /Shellcode_Runners/PowerShell/Shellcode_Runner.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Shellcode_Runners/PowerShell/Shellcode_Runner.ps1 -------------------------------------------------------------------------------- /Shellcode_Runners/PowerShell/Shellcode_Runner_Delegate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Shellcode_Runners/PowerShell/Shellcode_Runner_Delegate.ps1 -------------------------------------------------------------------------------- /Shellcode_Runners/PowerShell/Standard_Shellcode_Runner_Delegate_inMemory.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Shellcode_Runners/PowerShell/Standard_Shellcode_Runner_Delegate_inMemory.ps1 -------------------------------------------------------------------------------- /Shellcode_Runners/Visual Basic/Shellcode_Runner.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Shellcode_Runners/Visual Basic/Shellcode_Runner.vb -------------------------------------------------------------------------------- /Shellcode_Templates/DecryptAESAsBytes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Shellcode_Templates/DecryptAESAsBytes.cs -------------------------------------------------------------------------------- /Shellcode_Templates/Invoke-DecryptXOR.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Shellcode_Templates/Invoke-DecryptXOR.ps1 -------------------------------------------------------------------------------- /Shellcode_Templates/Invoke-XOR2ByteArray.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Shellcode_Templates/Invoke-XOR2ByteArray.ps1 -------------------------------------------------------------------------------- /Shellcode_Templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Shellcode_Templates/README.md -------------------------------------------------------------------------------- /Shellcode_Templates/Shellcode_Templates/ASPX/AES_Shellcode_Runner_Dynamic_Invoke.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Shellcode_Templates/Shellcode_Templates/ASPX/AES_Shellcode_Runner_Dynamic_Invoke.aspx -------------------------------------------------------------------------------- /Shellcode_Templates/Shellcode_Templates/C#/AES_Process_Hollowing_Dynamic_Invoke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Shellcode_Templates/Shellcode_Templates/C#/AES_Process_Hollowing_Dynamic_Invoke.cs -------------------------------------------------------------------------------- /Shellcode_Templates/Shellcode_Templates/C#/AES_Process_Injection_Dynamic_Invoke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Shellcode_Templates/Shellcode_Templates/C#/AES_Process_Injection_Dynamic_Invoke.cs -------------------------------------------------------------------------------- /Shellcode_Templates/Shellcode_Templates/C#/AES_Process_Injection_Dynamic_Invoke_Alternate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Shellcode_Templates/Shellcode_Templates/C#/AES_Process_Injection_Dynamic_Invoke_Alternate.cs -------------------------------------------------------------------------------- /Shellcode_Templates/Shellcode_Templates/C#/AES_Shellcode_Runner_Dynamic_Invoke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Shellcode_Templates/Shellcode_Templates/C#/AES_Shellcode_Runner_Dynamic_Invoke.cs -------------------------------------------------------------------------------- /Shellcode_Templates/Shellcode_Templates/C#/AES_Shellcode_Runner_Dynamic_Invoke_Alternate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Shellcode_Templates/Shellcode_Templates/C#/AES_Shellcode_Runner_Dynamic_Invoke_Alternate.cs -------------------------------------------------------------------------------- /Shellcode_Templates/Shellcode_Templates/C#/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Shellcode_Templates/Shellcode_Templates/C#/README.md -------------------------------------------------------------------------------- /Shellcode_Templates/Shellcode_Templates/C#/UUID_Process_Hollowing_Dynamic_Invoke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Shellcode_Templates/Shellcode_Templates/C#/UUID_Process_Hollowing_Dynamic_Invoke.cs -------------------------------------------------------------------------------- /Shellcode_Templates/Shellcode_Templates/C#/UUID_Process_Injection_Dynamic_Invoke_Alternate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Shellcode_Templates/Shellcode_Templates/C#/UUID_Process_Injection_Dynamic_Invoke_Alternate.cs -------------------------------------------------------------------------------- /Shellcode_Templates/Shellcode_Templates/C#/UUID_Shellcode_Runner_Dynamic_Invoke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Shellcode_Templates/Shellcode_Templates/C#/UUID_Shellcode_Runner_Dynamic_Invoke.cs -------------------------------------------------------------------------------- /Shellcode_Templates/Shellcode_Templates/PowerShell/AES_Process_Hollowing_Delegate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Shellcode_Templates/Shellcode_Templates/PowerShell/AES_Process_Hollowing_Delegate.ps1 -------------------------------------------------------------------------------- /Shellcode_Templates/Shellcode_Templates/PowerShell/AES_Process_Injection_Delegate_Alternate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Shellcode_Templates/Shellcode_Templates/PowerShell/AES_Process_Injection_Delegate_Alternate.ps1 -------------------------------------------------------------------------------- /Shellcode_Templates/Shellcode_Templates/PowerShell/AES_Shellcode_Runner_Delegate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Shellcode_Templates/Shellcode_Templates/PowerShell/AES_Shellcode_Runner_Delegate.ps1 -------------------------------------------------------------------------------- /Shellcode_Templates/Shellcode_Templates/PowerShell/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Shellcode_Templates/Shellcode_Templates/PowerShell/README.md -------------------------------------------------------------------------------- /Shellcode_Templates/Shellcode_Templates/PowerShell/UUID_Process_Hollowing_Delegate.ps1.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Shellcode_Templates/Shellcode_Templates/PowerShell/UUID_Process_Hollowing_Delegate.ps1.ps1 -------------------------------------------------------------------------------- /Shellcode_Templates/Shellcode_Templates/PowerShell/UUID_Process_Injection_Delegate_Alternate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Shellcode_Templates/Shellcode_Templates/PowerShell/UUID_Process_Injection_Delegate_Alternate.ps1 -------------------------------------------------------------------------------- /Tools/Binaries/All_Binaries.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Tools/Binaries/All_Binaries.7z -------------------------------------------------------------------------------- /Tools/Binaries/DeadPotato-NET4.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Tools/Binaries/DeadPotato-NET4.exe -------------------------------------------------------------------------------- /Tools/Binaries/PsExec.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Tools/Binaries/PsExec.exe -------------------------------------------------------------------------------- /Tools/Binaries/SQLRecon.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Tools/Binaries/SQLRecon.exe -------------------------------------------------------------------------------- /Tools/Binaries/SharpEfsTrigger.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Tools/Binaries/SharpEfsTrigger.exe -------------------------------------------------------------------------------- /Tools/Binaries/SharpSpoolTrigger.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Tools/Binaries/SharpSpoolTrigger.exe -------------------------------------------------------------------------------- /Tools/Binaries/accesschk.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Tools/Binaries/accesschk.exe -------------------------------------------------------------------------------- /Tools/Binaries/mimikatz.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Tools/Binaries/mimikatz.exe -------------------------------------------------------------------------------- /Tools/Binaries/pspy64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Tools/Binaries/pspy64 -------------------------------------------------------------------------------- /Tools/PowerShell/All_PowerShell.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Tools/PowerShell/All_PowerShell.7z -------------------------------------------------------------------------------- /Tools/PowerShell/Amnesiac.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Tools/PowerShell/Amnesiac.ps1 -------------------------------------------------------------------------------- /Tools/PowerShell/Invoke-ADEnum.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Tools/PowerShell/Invoke-ADEnum.ps1 -------------------------------------------------------------------------------- /Tools/PowerShell/Invoke-DeadPotato.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Tools/PowerShell/Invoke-DeadPotato.ps1 -------------------------------------------------------------------------------- /Tools/PowerShell/Invoke-DumpMDF.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Tools/PowerShell/Invoke-DumpMDF.ps1 -------------------------------------------------------------------------------- /Tools/PowerShell/Invoke-Mimikatz.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Tools/PowerShell/Invoke-Mimikatz.ps1 -------------------------------------------------------------------------------- /Tools/PowerShell/Invoke-PPLKiller.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Tools/PowerShell/Invoke-PPLKiller.ps1 -------------------------------------------------------------------------------- /Tools/PowerShell/Invoke-PowerIncrease.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Tools/PowerShell/Invoke-PowerIncrease.ps1 -------------------------------------------------------------------------------- /Tools/PowerShell/Invoke-RDPThief.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Tools/PowerShell/Invoke-RDPThief.ps1 -------------------------------------------------------------------------------- /Tools/PowerShell/Invoke-ReflectivePEInjection.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Tools/PowerShell/Invoke-ReflectivePEInjection.ps1 -------------------------------------------------------------------------------- /Tools/PowerShell/Invoke-Rubeus.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Tools/PowerShell/Invoke-Rubeus.ps1 -------------------------------------------------------------------------------- /Tools/PowerShell/Invoke-RunAsSystem.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Tools/PowerShell/Invoke-RunAsSystem.ps1 -------------------------------------------------------------------------------- /Tools/PowerShell/Invoke-SMBRemoting.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Tools/PowerShell/Invoke-SMBRemoting.ps1 -------------------------------------------------------------------------------- /Tools/PowerShell/Invoke-SQLRecon.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Tools/PowerShell/Invoke-SQLRecon.ps1 -------------------------------------------------------------------------------- /Tools/PowerShell/Invoke-SpoolSample.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Tools/PowerShell/Invoke-SpoolSample.ps1 -------------------------------------------------------------------------------- /Tools/PowerShell/PowerUpSQL.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Tools/PowerShell/PowerUpSQL.ps1 -------------------------------------------------------------------------------- /Tools/PowerShell/PsMapExec.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Tools/PowerShell/PsMapExec.ps1 -------------------------------------------------------------------------------- /Tools/PowerShell/SimpleCat-TCP.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Tools/PowerShell/SimpleCat-TCP.ps1 -------------------------------------------------------------------------------- /Tools/PowerShell/SimpleCat-TCP_Obfuscated.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Tools/PowerShell/SimpleCat-TCP_Obfuscated.ps1 -------------------------------------------------------------------------------- /Tools/PowerShell/Token-Impersonation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Tools/PowerShell/Token-Impersonation.ps1 -------------------------------------------------------------------------------- /Windows_Credentials/Access_Tokens/AES_Shellcode_Injection_Alternative_Dynamic_Invoke_PrintSpooferNet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Windows_Credentials/Access_Tokens/AES_Shellcode_Injection_Alternative_Dynamic_Invoke_PrintSpooferNet.cs -------------------------------------------------------------------------------- /Windows_Credentials/Access_Tokens/Standard_PrintSpooferNet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Windows_Credentials/Access_Tokens/Standard_PrintSpooferNet.cs -------------------------------------------------------------------------------- /Windows_Credentials/Access_Tokens/Standard_Shellcode_Injection_Alternative_Dynamic_Invoke_PrintSpooferNet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Windows_Credentials/Access_Tokens/Standard_Shellcode_Injection_Alternative_Dynamic_Invoke_PrintSpooferNet.cs -------------------------------------------------------------------------------- /Windows_Credentials/Access_Tokens/Standard_Shellcode_Injection_PrintSpooferNet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Windows_Credentials/Access_Tokens/Standard_Shellcode_Injection_PrintSpooferNet.cs -------------------------------------------------------------------------------- /Windows_Credentials/LSASS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Windows_Credentials/LSASS/README.md -------------------------------------------------------------------------------- /Windows_Credentials/Memory_Dumping/Invoke-DumpLSASS.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Windows_Credentials/Memory_Dumping/Invoke-DumpLSASS.ps1 -------------------------------------------------------------------------------- /Windows_Credentials/Memory_Dumping/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Windows_Credentials/Memory_Dumping/README.md -------------------------------------------------------------------------------- /Windows_Credentials/Memory_Dumping/SharpDumpLSASS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Windows_Credentials/Memory_Dumping/SharpDumpLSASS.cs -------------------------------------------------------------------------------- /Windows_Credentials/SAM/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Windows_Credentials/SAM/README.md -------------------------------------------------------------------------------- /Windows_Lateral_Movement/RDP/Invoke-RDPThief.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Windows_Lateral_Movement/RDP/Invoke-RDPThief.ps1 -------------------------------------------------------------------------------- /Windows_Lateral_Movement/RDP/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Windows_Lateral_Movement/RDP/README.md -------------------------------------------------------------------------------- /Windows_Lateral_Movement/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Windows_Local_Privilege_Escalation/Always_Install_Elevated/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Viper-One/OSEP-Notes/HEAD/Windows_Local_Privilege_Escalation/Always_Install_Elevated/README.md --------------------------------------------------------------------------------