Geek Memos
  • Home
Sign in Subscribe

ping

A collection of 2 posts
grep

Quick Nmap ping sweep and output to grep-able format

Start with laying out what range of IP addresses you want to scan. I’d suggest keeping it limited to your specific targets. Then run this as root: nmap -sn -v -oG nmapped.txt 192.168.1.201-254 * -sn (No port scan) .This option tells Nmap not to do a
Oct 18, 2014 1 min read
hacking

PingSweep with Scapy

Want to get a bit geekier with your ping sweeps? Python Scapy can be used to create, modify, send, and intercept network packets and any TCP/IP layer. Here is a simple ping sweep script with Python Scapy: !/usr/bin/python from scapy.all import * TIMEOUT = 2 conf.verb = 0
Oct 18, 2014
Page 1 of 1
Geek Memos © 2023
Powered by Ghost