• Online tools


    Explore online vulnerability for servers and IoT devices : https://www.shodan.com

    get dumped leaked information : https://www.pastebin.com

    Text  and source code leak: https://github.com

    online Swiss Army knife tools: https://www.dnsstuff.com

    also use the url: http://searchdns.netcraft.com you can find target website information

    whois domain-name.com ,because every domain name is registered in a public WHOIS database , depending on the database that is queried.it will reveal a lot of juicy information . including name ,phone number ,Emails address Physical DNS  and so on .

    dnsenum domain-name.com  ,DOMAIN name System is a database that resolves domain name  ,wen can use it gather information such as  identigy new domain names or subdomians associated target .and find services (for example FTP ,SSL ,Telnet)

      these commands may userful

       denenum domain_name.com 

       fierce -dns domain_name.com

       dnsrecon -w -d domain_name.com  -t axfr      (-w it means deep ,  -t  stand for type   axfr it's all DNS server )

    Gatering email address :theharvester script is a Python tool/script that can gather the target email address

     Active information gathering services enumeration  ,a lot of wegit can be used .scan ,advanced_ip_scanner   nmap 

      the nmap command :

          nmap -sn [ip ]

          netdiscover -r [ip]

    how to identifying opne ports/services ,we usually use ping ,but is not in here : we can use TCP scan -interanet

     nmap -sS -sV -sC --version-all -o --osscan-guess -T4 --reason --open -p--Pn -v [ip]

     

    UDP scan -intranet : nmap -sU --top-ports 1000 -Pn -v [ip]

    TCP scan -from the internet:  nmap -sS -T2 --top--ports 1000  -Pn -v [ip]

       nmap -sU --top-ports 100 -Pn -v [ip]

    Server probing and enumeration   to find 21 port server FTP we can use command

          nmap -sV -p 21 -Pn -T5 --host-timeout 15ms --script=ftp* -v [ip]

    ofcourse the Credential burte force:   hydra -t 10 -V -f -L [users dic file path ] -P [passwords dic file path] ftp://[ip]

     and other ports also user the way .

  • 相关阅读:
    简练网软考知识点整理-项目选择和优先级排列方法
    简练网软考知识点整理-项目基线
    简练网软考知识点整理-项目质量控制七工具之排列图
    简练网软考知识点整理-项目经理应具备的技能能力
    简练网软考知识点整理-项目招投标相关法律
    Scala集合库、模式匹配和样例类
    Scala函数式编程
    Scala面向对象—类详解2(继承相关)
    gVerify验证码
    Scala面向对象—类详解
  • 原文地址:https://www.cnblogs.com/xinxianquan/p/10217561.html
Copyright © 2020-2023  润新知