Can using this command
nmap www.google.com
Cause dos attack. It gave me some output but I do not understand it. I have never used nmap before.
Can using this command
nmap www.google.com
Cause dos attack. It gave me some output but I do not understand it. I have never used nmap before.
One computer trying to analyze one site is very unlikely to cause a denial of service to happen. You are more likely to run out of resources on your own machine before you put in any kind of dent in a properly set up web server.
Your question is kind of confusing. nmap primarily is a port scanner. It tries to to find open ports on a single or multiple selected targets (in your case www.google.com) by sending a TCP SYN package to every port (of the 1000 most used ports) and checking if an ACK package is received. If an ACK is received the port is considered open. Although port scanning can be regarded kind of malicious when done on a system not owned by you, it is not a dos attack when done once and from a single source system.