mirror of
https://github.com/carlospolop/hacktricks
synced 2024-11-25 14:10:41 +00:00
GitBook: [master] one page modified
This commit is contained in:
parent
7bbd46c41d
commit
9afe756409
1 changed files with 7 additions and 0 deletions
|
@ -330,6 +330,13 @@ Get-NetNeighbor -AddressFamily IPv4 | ft ifIndex,IPAddress,LinkLayerAddress,Stat
|
|||
Get-Content C:\WINDOWS\System32\drivers\etc\hosts
|
||||
```
|
||||
|
||||
### Ping
|
||||
|
||||
```bash
|
||||
$ping = New-Object System.Net.Networkinformation.Ping
|
||||
1..254 | % { $ping.send("10.9.15.$_") | select address, status }
|
||||
```
|
||||
|
||||
### SNMP
|
||||
|
||||
```text
|
||||
|
|
Loading…
Reference in a new issue