Video není dostupné.
Omlouváme se.

Nmap - Host Discovery With Ping Sweep

Sdílet
Vložit
  • čas přidán 24. 05. 2020
  • In this video, I demonstrate how to perform host discovery on a network with ping sweeps using Nmap. Nmap is a free and open-source network scanner created by Gordon Lyon. Nmap is used to discover hosts and services on a computer network by sending packets and analyzing the responses. Nmap provides a number of features for probing computer networks, including host discovery and service and operating system detection.
    📈 SUPPORT US:
    Patreon: / hackersploit
    Merchandise: teespring.com/en-GB/stores/ha...
    SOCIAL NETWORKS:
    Reddit: / hackersploit
    Twitter: / hackersploit
    Instagram: / hackersploit
    LinkedIn: / 18713892
    WHERE YOU CAN FIND US ONLINE:
    Blog: hsploit.com/
    HackerSploit - Open Source Cybersecurity Training: hackersploit.org/
    HackerSploit Academy: www.hackersploit.academy
    HackerSploit Discord: / discord
    LISTEN TO THE CYBERTALK PODCAST:
    Spotify: open.spotify.com/show/6j0RhRi...
    We hope you enjoyed the video and found value in the content. We value your feedback. If you have any questions or suggestions feel free to post them in the comments section or contact us directly via our social platforms.
    Thanks for watching!
    Благодарю за просмотр!
    Kiitos katsomisesta
    Danke fürs Zuschauen!
    感谢您观看
    Merci d'avoir regardé
    Obrigado por assistir
    دیکھنے کے لیے شکریہ
    देखने के लिए धन्यवाद
    Grazie per la visione
    Gracias por ver
    شكرا للمشاهدة
    #Nmap

Komentáře • 53

  • @therealsuryansh
    @therealsuryansh Před 4 lety +1

    Sir! Keep making more videos. I have learnt a lot.

  • @m-samik
    @m-samik Před 4 lety +2

    Your Videos are 🔥 and we learn a lot from them 💕

  • @FalcoGer
    @FalcoGer Před 3 lety +11

    For TCP:
    Open means a service is running (tcp syn ack received)
    Closed means nmap got a tcp reset message (default behavior as indicated by rfc-whocares)
    Filtered means the packet was dropped or responded with icmp port unreachable (non standard, indicates packet filtering or network issues)
    For UDP:
    Open means that the request got a response (uncommon, but you know something is running)
    Open | Filtered means that you got no response (since udp doesn't respond typically nmap can't determine if the packet was dropped or got through)
    Closed | Filtered means you got an icmp port unreachable (default response for non existing services, or perhaps firewall rule)

  • @zoozeezoozee6726
    @zoozeezoozee6726 Před 3 lety +1

    Fully explained everything. Thank you sir

  • @gentlewolf2749
    @gentlewolf2749 Před 3 lety +1

    your videos are helpful sir. keep making more. clearly explained

  • @Chris-ez1ly
    @Chris-ez1ly Před 2 lety +1

    Great video! Thank you!

  • @arkfitness1151
    @arkfitness1151 Před 3 lety +2

    I am learning from your videos

  • @arkfitness1151
    @arkfitness1151 Před 3 lety +1

    Keep the good work

  • @maniac3292
    @maniac3292 Před 4 lety +1

    relly appriciate ur work mate...💓

  • @yigitaktas715
    @yigitaktas715 Před 3 lety +1

    great video

  • @jamesdickson3631
    @jamesdickson3631 Před 4 lety +1

    A big shout to Hackerspoilt

  • @arkfitness1151
    @arkfitness1151 Před 3 lety +1

    There are very few real hacking channels on CZcams your are one of those

  • @hyperlight3092
    @hyperlight3092 Před 3 lety +2

    Tnx !

  • @drboom9041
    @drboom9041 Před 4 lety +1

    Sir u r great

  • @r4d1calwr4th7
    @r4d1calwr4th7 Před 4 lety +1

    pretty gud sir...

  • @theexecutioner8784
    @theexecutioner8784 Před 2 lety +1

    Hey can you make vedio about connecting a wifi adaptor to virtual box

  • @marouaneakassab
    @marouaneakassab Před 4 lety +1

    Niice

  • @ZTechSecurity
    @ZTechSecurity Před rokem +4

    Don't use `-sn` without `sudo` otherwise it will scan 80, 443 ports to detect the host and if there is a firewall on the other end host will not be detected, and that method is slower for host detection
    Tips to detect every host:
    1. use sudo with `nmap -sn ` (uses ARP scan, which is fast as well)
    2. use `nmap -sL | grep \)` (it will use rDNS lookup technique, so nmap don't send request to the host directly)
    OR
    use -Pn with -sn `nmap -Pn -sn | grep \)` (uses rDNS technique like -sL)
    use --packet-trace with every command to see the packets.

    • @bhaskarbhar237
      @bhaskarbhar237 Před 9 měsíci

      For me only the ip address is shown not the host name. Example: Samsung-A32 all that stuff? How to resolve it?

  • @patelgaurav4808
    @patelgaurav4808 Před 4 lety +1

    I have try to do my network scan but it's not showing name and the all users also ?
    What should I do?

  • @ryaddraou851
    @ryaddraou851 Před 4 lety +2

    hi tkx for the video, but one question plz can we scan a network even if the firewall bloc the ports ? if yes how and can we bypass the firewall rules ?

  • @travelwithwolves7243
    @travelwithwolves7243 Před rokem +1

    What if the target is in on different network

  • @prajeeshnair4949
    @prajeeshnair4949 Před 4 lety +2

    @HackerSploit - Question: How do you I perform a nmap sweep to identify live hosts in a network when all I have is an IPv6 address?

    • @diru424
      @diru424 Před 3 lety

      Nmap -6 [target ipv6 adress]
      This is the command you may use to perform a default ipv6 port scan.
      You can't scan multiple hosts in a single command as its pointless in this context.
      So if you have to scan a network of systems and you only have their ipv6 addresses you may do that by creating a list of all ipv6 addresses you have and scanning them using the following command.
      Nmap -6 -iL -sn list.txt
      I havent worked on ipv6 either but i hope this helps, please let us know if this solves your porblem..
      Peace

  • @AjayKumar-je2lk
    @AjayKumar-je2lk Před 4 lety +1

    u can simply run nmap -T4 -p- -A (ip address)

  • @fabrykoll9218
    @fabrykoll9218 Před 2 lety +1

    Why when I use Nmap -sn it do not give Mac address?

  • @tayabfarooq7544
    @tayabfarooq7544 Před 3 lety +1

    Which operating system are you using? And what type of the cmd you have used??

    • @8080VB
      @8080VB Před 3 lety +1

      Kali with terminal

  • @abdallahusman5963
    @abdallahusman5963 Před 4 měsíci

    hello please I need help, I am a beginner in using nmap. I don't know what the problem is, if I try to scan an IP, it sends a message that host seems down, if it is really up, but blocking our ping probes, try -Pn. please what should I do to solve this?

  • @Jawlaya
    @Jawlaya Před 4 lety +1

    👍🏾👍🏾👍🏾

  • @mohamedkarmadi560
    @mohamedkarmadi560 Před 4 lety +1

    How to use a port i would like to know how to

    • @8080VB
      @8080VB Před 3 lety

      Scan your network find what ports are open

  • @waffle3632
    @waffle3632 Před 2 lety +1

    So I guess I just have bad luck and I cannot get results with my home network. I have direct tv and their default router. But even if I use nmap on it. It won't tell me the manufacturer or any connected devices which blows when trying to learn tools by hacking my own equipment.

  • @piyushdutta8752
    @piyushdutta8752 Před 4 lety +1

    What vulnerable machine is he using is it metasploitable ??

    • @8080VB
      @8080VB Před 3 lety

      Yh , n also meta 3 ~ win2008

  • @saurabhsharma1221
    @saurabhsharma1221 Před 4 lety +2

    There are lot of version and gui alternative of nmap

  • @homelander4881
    @homelander4881 Před rokem +1

    Hey everyone.
    *Smartphones in my network won't show during the scan.*
    ANYONE HELP..

  • @gopimanideepreddy5325
    @gopimanideepreddy5325 Před 4 lety +2

    Sir please make videos about bugbounty haunting in hackerone. Com site

  • @ShajuCruz
    @ShajuCruz Před rokem

    i tried but "Failed to resolve/decode supposed IPv4 source address "n": Name or service not known
    QUITTING!" this will arise

  • @ARUNS-om5ng
    @ARUNS-om5ng Před 4 lety +1

    Sir,how to protect from hacking ?

  • @arkfitness1151
    @arkfitness1151 Před 3 lety +1

    Anymouse out

  • @sunmoonstarkiwi
    @sunmoonstarkiwi Před 3 lety +2

    Can you make your text zoomed
    It's so hard to view this on mobile

  • @kernelpanicatthedisco1604

    First again