🤖
Guides
  • Introduction
  • Beginners
    • Getting Started
  • Guides
    • SQLi Walkthrough
    • My First BoF
    • OSCP Buffer Overflow Guide (Windows)
    • Parrot OS customisation
    • Terminal Customisation
    • Video Guides
  • Cheat Sheets
    • Reverse Shells
    • Tunnelling, Pivoting and Proxies
    • SQL Injection
      • WAF Bypass
      • SQLMap
      • DBMS Cheatsheets
        • MSSQL
        • MySQL
        • Oracle
        • SQLite
        • PostgreSQL
      • References
    • Bash Cheat Sheets
      • Terminal
      • Find
      • Grep
      • Sed
      • Awk
      • Xargs
      • System
      • Download
      • Networking
      • Hardware
      • Variable
      • Math
      • Data Manipulation
      • Random
      • Time
      • Condition and Loop
      • Other
    • OSINT
    • Ping Sweeps
  • Methodologies
    • VOIP Checklist
    • OWASP v4 Checklist
    • External Inf
    • Internal Infrastructure
  • Linux
    • Checklist - Linux Priv Esc
  • Windows
    • Checklist - Windows Priv Esc
  • Things to do/look at
Powered by GitBook
On this page
  • Nmap
  • Linux Ping Sweep
  • Windows Ping Sweep

Was this helpful?

  1. Cheat Sheets

Ping Sweeps

A ping sweep is a network scanning technique that uses ICMP (Internet Control Message Protocol) to identify live hosts on a network. It's also known as an ICMP sweep or ping scan.

Nmap

nmap -sn 192.168.1.1/24

Linux Ping Sweep

 for i in {1..254} ;do (ping -c 1 x.x.x.$i | grep "bytes from" &) ;done

Windows Ping Sweep

for /L %i in (1,1,255) do @ping -n 1 -w 200 x.x.x.%i > nul && echo x.x.x.%i is up.

PreviousOSINTNextVOIP Checklist

Last updated 3 months ago

Was this helpful?