Merhaba arkadaşlar,
  1. #!/bin/bash
  2. read -p "Select TCP, DNS or CHARGEN! " RESP

  3. if [ "$RESP" = "TCP" ]; then
  4. echo "Border Gateway Protocol Scanning started, for use of litespeeds TCP attack script"

  5. ##Edit the IPADDRESS below to your requested IP range

  6. nmap -oG - -T4 -p179 -v 109.0.0.0-255 | grep "Ports: 179/filtered/tcp//bgp///" > temp1
  7. echo "Checking Ip's and filtering"
  8. grep -o '[0-9]\{1,3\}\.[0-9]\{1,3\}\.[0-9]\{1,3\}\.[0-9]\{1,3\}' temp1 > temp2
  9. sed -e 's/$/ 179/' -i temp2
  10. cp temp2 TCP.txt
  11. rm -rf temp*
  12. killall -9 nmap
  13. echo "Done!, Saved as TCP.txt"

böyle bir kod buldum. Pek kodlama işinden anlamıyorum bu kod nedir acaba zararlı bir kodlama mı?