-
Notifications
You must be signed in to change notification settings - Fork 114
/
Copy pathCEH Lab Notes (Old).txt
59 lines (55 loc) · 2.9 KB
/
CEH Lab Notes (Old).txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# Module 02 - Footprinting and Reconnaissance
ping
-f -l 1024 # Send 1024 byte ICMP echo request, no fragment, for checking network's max frame size
-i 3 # Send ICMP echo request with TTL of 3, can be used to manually traceroute a host
* tracert [host] # Traceroute
* nslookup
- set type=a # Get IP from domain name
- [host]
- set type=cname # Get canonical name of domain, something like alias
- [host]
- set type=soa # Get information about domain's authoritative server
- [host]
* pipl.com # Online database for searching up people
firebug # Firefox plugin for debugging website (html, css, js, net, cookies, etc.)
* Web Data Extractor # Web Spider for collecting emails, phone no, names, metadata, etc. Does not work on Win10.
* HTTrack # Website cloner
* eMailTrackerPro # Trace emails, location, hops, network whois, email server ports, etc.
SmartWhois # Whois tool
Path Analyzer Pro # Traceroute Program, doesn't work on Win7/8/10
** Maltego # Intelligence and info gathering app. User/Pass:[email protected]
** recon-ng # Metasploit-like tool for recon on domains
- workspaces list/add/select/delete
- Domains
- add domains microsoft.com, show domains
- load recon/domain-hosts/*, run
- load reverse_resolve, run
- show hosts
- Personal Information
- load recon/domains-contacts/whois_pocs, set SOURCE facebook.com, run, show contacts
- load recon/profiles-profiles/*, set SOURCE optixal, run, show profiles
- Pushpin Geomapping (May require API key) (Not working)
- add locations
- load recon/locations-locations/(reverse_)geocode
- show locations
- load recon/locations-pushpins/*, run
- load reporting
- show options
- set CREATOR optixal - etc.
- run
- back
* FOCA
Search Diggity
# Module 03 - Scanning Networks
** hping3 # A better ping program that uses TCP packets by default instead of ICMP packets
-c 3 # Count of 3 packets
--scan 1-3000 -S # Scans ports 1 to 3000 with SYN TCP packets
-p 80 -S # Scan port 80 with SYN TCP packets
--udp --rand-source --data 500 # Send random src UDP packets instead with data size of 500 bytes
--flood # Sends packets as fast as possible, without caring about incoming replies
-V # Verbose mode
-D # Debug mode
* Colasoft Packet Builder # GUI for crafting custom packets and sending them
MegaPing
* Zenmap (nmap GUI)
Page 196