mirror of
https://github.com/The-Art-of-Hacking/h4cker
synced 2024-11-10 05:34:12 +00:00
Update powershell_commands.md
This commit is contained in:
parent
b87afb96a3
commit
c9f6dd7554
1 changed files with 5 additions and 5 deletions
|
@ -9,10 +9,10 @@
|
|||
| `Get-Process` | Gets a process listing |
|
||||
| `Get-Service` | Gets a service listing |
|
||||
| `Get-Process \| Export-Csvprocs.csv` | Exports output to a comma-separated values (CSV) file |
|
||||
| `1..255 \| % {echo "10.1.2.$_"; ping -n 1 -w 100 10.1.2.$_ | SelectString ttl}` | Launches a ping sweep to the 10.1.2.0/24 network |
|
||||
| `1..255 \| % {echo "10.1.2.$_"; ping -n 1 -w 100 10.1.2.$_ | SelectString ttl}` | Launches a ping sweep to the 10.1.2.0/24 network |
|
||||
| `1..1024 \| % {echo ((new-object Net.Sockets.TcpClient).Connect("10.1.2.3",$_))"Port $_ is open!"} 2>$null` | Launches a port scan to the 10.1.2.3 host (scans for ports 1 through 1024) |
|
||||
| `Get-HotFix` | Obtains a list of all installed hotfixes |
|
||||
| ```cd HKLM:
|
||||
\ls``` | Navigates the Windows registry |
|
||||
| ```Get-NetFirewallRule –all ``` ```New-NetFirewallRule -Action Allow -DisplayName LetMeIn-RemoteAddress 10.6.6.6 | Lists and modifies the Windows firewall rules``` |
|
||||
| `Get-HotFix` | Obtains a list of all installed hotfixes |
|
||||
| ```cd HKLM: ls``` | Navigates the Windows registry |
|
||||
| ```Get-NetFirewallRule –all
|
||||
New-NetFirewallRule -Action Allow -DisplayName LetMeIn-RemoteAddress 10.6.6.6 | Lists and modifies the Windows firewall rules``` |
|
||||
| `Get-Command` | Gets a list of all available commands |
|
||||
|
|
Loading…
Reference in a new issue