mirror of
				https://github.com/onceupon/Bash-Oneliner.git
				synced 2025-11-04 07:01:05 +01:00 
			
		
		
		
	fix markdown
This commit is contained in:
		@@ -2394,6 +2394,7 @@ nmap -sT -O localhost
 | 
				
			|||||||
nmap  -p0-65535 localhost
 | 
					nmap  -p0-65535 localhost
 | 
				
			||||||
```
 | 
					```
 | 
				
			||||||
##### Check if a host is up and scan for open ports, also skip host discovery.
 | 
					##### Check if a host is up and scan for open ports, also skip host discovery.
 | 
				
			||||||
 | 
					```bash
 | 
				
			||||||
#skips checking if the host is alive which may sometimes cause a false positive and stop the scan.
 | 
					#skips checking if the host is alive which may sometimes cause a false positive and stop the scan.
 | 
				
			||||||
$ nmap google.com -Pn
 | 
					$ nmap google.com -Pn
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -2409,7 +2410,7 @@ $ nmap google.com -Pn
 | 
				
			|||||||
# 443/tcp open  https
 | 
					# 443/tcp open  https
 | 
				
			||||||
#
 | 
					#
 | 
				
			||||||
# Nmap done: 1 IP address (1 host up) scanned in 3.99 seconds
 | 
					# Nmap done: 1 IP address (1 host up) scanned in 3.99 seconds
 | 
				
			||||||
 | 
					```
 | 
				
			||||||
##### Scan for open ports and OS and version detection (e.g. scan the domain "scanme.nmap.org")
 | 
					##### Scan for open ports and OS and version detection (e.g. scan the domain "scanme.nmap.org")
 | 
				
			||||||
```bash
 | 
					```bash
 | 
				
			||||||
$ nmap -A -T4 scanme.nmap.org
 | 
					$ nmap -A -T4 scanme.nmap.org
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user