Это видео недоступно.
Сожалеем об этом.

How to Scan IP address and find all open ports

Поделиться
HTML-код
  • Опубликовано: 6 авг 2024
  • Scanning IP address for all open ports
    Scan port 80 on the target system
    nmap -p 80 192.168.0.1
    Scan ports 1 through 200 on the target system
    nmap -p 1-200 192.168.0.1
    Scan (Fast) the most common ports
    nmap -F 192.168.0.1
    To scan all ports (1 - 65535)
    nmap -p- 192.168.0.1
    To scan using TCP connect (it takes longer, but is more likely to connect):
    nmap -sT 192.168.0.1
    To perform the default SYN scan (it tests by performing only half of the TCP handshake):
    nmap -sS 192.168.0.1
    To instruct Nmap to scan UDP ports instead of TCP ports (the -p switch specifies ports 80, 130, and 255 in this example):
    nmap -sU -p 80,130,255 192.168.0.1
    Run a fast scan on the target system, but bypass host discovery. (Host discovery uses ping, but many server firewalls do not respond to ping requests. This option forces the test without waiting for a reply that may not be coming):
    nmap -Pn -F 192.168.0.1
    The nmap utility can be used to detect the operating system of a particular target:
    nmap -A 192.168.0.1
    It can also be used to probe for the services that might be using different ports:
    nmap -sV 192.168.0.1
    ➡️ Follow me on Twitter
    / cryptotech_yt
    My Ada handle: $cryptotech
    ⚠️I'm not a financial adviser and this video is for educational purpose only⚠️
    You can support my channel by donating crypto, or use my affiliated link to KuCoin or coinbase exchange, every donation is appreciated.
    Thank you!!!
    Coin Base - www.coinbase.com/join/pashko_5w
    KuCoin - www.kucoin.com/ucenter/signup...
    BTC: bc1qnznzmhmuvxpehlm30u9r7p79zlgyltvtjm0v4h
    ETH: 0x0371cbD420ba1B31E325e3714e9AEf5adEa105F0
    ADA: addr1q8vau4cyxudq699y86kfgwcama9c5fma2j97m3255005udxemetsgdc6p522g04vjsa3mh6t3gnh64ytahz4fg7lfc6qw0hykl
    ________________________________________________________________
    PERSONAL GEAR
    Camera - amzn.to/33c1vTI
    JOBY GorillaPod - amzn.to/2St79sp
    Portable Handheld Recorder - amzn.to/2BRt8Tf
    Sony ECMCS3 Clip Style Mic - amzn.to/2BRuWvv
    Blue Yeti - amzn.to/2E162fd
    Ring Light - amzn.to/2O4vzJE
    4k Asus Monitor - amzn.to/2NN9ptW
    Video Camera Tripod - amzn.to/3mxJPYY
    ___________________________________________________________________
    #portScanner #scanPorts

Комментарии •