How to perform a scan with nmap and some useful nmap tips for probing a computer.

To send a SYN packet to a computer on a network, use this command. nmap -sS -v 192.168.1.10nmap -sS -v 192.168.1.10 If you want to send SYN packets to a range of IP addresses, this is the command to use. nmap -sS -v 192.168.1.10-100nmap -sS -v 192.168.1.10-100 This will send SYN packets to the IP … Read more

How to perform the same task as wget using Windows 10 and Powershell 5.0.

The Windows 10 Powershell command prompt has a cmdlet named Invoke-WebRequest, this allows a user to download a link using Powershell. This will download a web link with a very fast transfer rate. Making this a very good way to retrieve a web link. Below is an example downloading a link from kernel.org. I am … Read more