- internet information services windows nt server smart host



host services

This Day in History

Today's Birthday

Quotation of the Day

A port scanner is a piece of software designed to search a network host for open ports. This is often used by administrators to check the security of their networks and by crackers to compromise it.

To portscan a host is to scan for multiple listening ports on a single target host. To portsweep is to scan multiple hosts for a specific listening port. The latter is typically used in searching for a specific service. For example, a SQL based computer worm may port sweep looking for hosts listening on TCP/UDP port 1433.

Contents

  • 1 TCP/IP basic knowledge
  • 2 TCP Scanning
  • 3 UDP Scanning
  • 4 Other Scan Types
  • 5 Problems with ISPs and Port Scanning
  • 6 Port Scanners
    • 6.1 Online Portscanner
  • 7 See also
  • 8 External links
    • 8.1 Legal implications

TCP/IP basic knowledge

The protocol stack that is most common on the Internet today is TCP/IP. In this system, hosts and host services are referenced using two components: an address and a port number. There are 65535 distinct and usable port numbers. Most services use a limited range of numbers; these numbers eventually become assigned by the IANA when the service becomes important enough.

Some port scanners only scan the most common, or most commonly vulnerable, port numbers on a given host. See: List of TCP and UDP port numbers.

The result of a scan on a port is usually generalized into one of three categories:

  • Open or Accepted: The host sent a reply indicating that a service is listening on the port.
  • Closed or Denied: The host sent a reply indicating that connections will be denied to the port.
  • Filtered, Dropped or Blocked: There was no reply from the host.

Open ports present two vulnerabilities of which administrators must be wary:

  1. Security and stability concerns associated with the program responsible for delivering the service.
  2. Security and stability concerns associated with the operating system that is running on the host.

Closed ports only present the latter of the two vulnerabilities that open ports do. Blocked ports do not present any reasonable vulnerabilities. Of course, there is the possibility that there are no (yet) known vulnerabilities in either the software or operating system.

The information gathered by a port scan has many legitimate uses, including the ability to verify the security of a network. Port scanning can however also be used by those who intend to compromise security. Many exploits rely upon port scans to find open ports and send large quantities of data in an attempt to trigger a condition known as a buffer overflow. Such behavior can compromise the security of a network and the computers therein, resulting in the loss or exposure of sensitive information and the ability to do work.

TCP Scanning

The simplest port scanners use the operating system's network functions. Nmap calls this mode connect scan, named after the Unix connect() system call. If a port is open the operating system completes the TCP three-way handshake, and the port scanner immediately closes the connection. Otherwise an error code is returned. This scan mode has the advantage that the user doesn't require special privileges. However, using the OS network functions prevents low-level control, so this scan type is less commonly used.

SYN scan is the most popular form of TCP scanning. Rather than use the operating system's network functions, the port scanner generates raw IP packets itself, and monitors for responses. This scan type is also known as "half-open scanning," because it never actually opens a full TCP connection. The port scanner generates a SYN packet. If the target port is open, it will respond with a SYN-ACK packet. The scanner host responds with a RST packet, closing the connection before the handshake is completed.

The use of raw networking has several advantages, giving the scanner full control of the packets sent and the timeout for responses, and allowing detailed reporting of the responses. There is debate over which scan is less intrusive on the target host. SYN scan has the advantage that the individual services never actually receive a connection; some services can be crashed with a connect scan. However, the RST during the handshake can cause problems for some network stacks, particularly simple devices like printers. There are no conclusive arguments either way.

UDP Scanning

UDP scanning is also possible, although there are technical challenges. UDP is a connectionless protocol so there is no equivalent to a TCP SYN packet. However, if a UDP packet is sent to a port that is not open, the system will respond with an ICMP port unreachable message. Most UDP port scanners use this scanning method, and use the absence of a response to infer that a port is open. However, if a port is blocked by a firewall, this method will falsely report that the port is open. If the port unreachable message is blocked, all ports will appear open. This method is also affected by ICMP rate limiting.

An alternative approach is to send application-specific UDP packets, hoping to generate an application layer response. For example, sending a DNS query to port 53 will result in a response, if a DNS server is present. This method is much more reliable at identifying open ports. However, it is limited to scanning ports for which an application specific probe packet is available. Common tools (e.g. nmap, nessus) generally have probes for less than 20 UDP services. In some cases, a service may be listening on the port, but configured not to respond to the particular probe packet.

To cope with the different limitations of each approach, some scanners offer a hybrid method. For example, using nmap with the -sUV option will start by using the ICMP port unreachable method, marking all ports as either "closed" or "open|filtered". The open|filtered ports are then probed for application responses and marked as "open" if one is received.

Other Scan Types

Some more unusual scan types exist. These have various limitations and are not widely used. Nmap supports most of these.

  • ACK scan - can find packets allowed through a stateless packet filter.
  • FIN scan - can determine if ports are open/closed, even if SYN packets are filtered.
  • Protocol scan - determines what IP level protocols (TCP, UDP, GRE, etc.) are enabled.
  • Proxy scan - a proxy (SOCKS or HTTP) is used to perform the scan. The target will see the proxy's IP address as the source. This can also be done using some FTP servers.
  • Idle scan - Another method of scanning without revealing your IP address, taking advantage of the predictable ipid flaw.
  • ICMP scan - determines if a host responds to ICMP requests, such as echo (ping), netmask, etc.

Problems with ISPs and Port Scanning

Many Internet service providers deny their customers the ability to perform port scans outside of their home networks. This is usually covered in the Terms of Service or Acceptable Use Policy to which the customer must have already agreed. Other public and private networks may also place such limitations upon their users.

Some Internet service providers implement Packet filters or Transparent proxys that prevent outgoing port scans being able to access certain ports. For example, if an ISP provides a transparent HTTP proxy on port 80, port scans of any address will appear to have port 80 open, regardless of target host's actual state.

Port Scanners

  • Nmap Security Scanner - Popular free open source scanner for Unix-like systems, Windows, and Mac OS X (Official Site).
  • Angry IP Scanner - free open source, high-performance Windows scanner.
  • Nessus - Popular free multi-platform open source Vulnerability scanner with integrated port scanner (Official Site).
  • Unicornscan - Advanced free open source port scanner for Unix-like systems.
  • Scanrand - Advanced free open source scanner for Unix-like systems. Part of Dan Kaminsky's Paketto Keiretsu
  • Blue's Port Scanner - Free closed source, multi-threaded scanner for Windows
  • NetworkActiv Port Scanner - Free closed source, multifunctional, UDP/TCP Windows port scanner.
  • Scanmetender Standard - Free closed source, multifunctional Windows network scanner.
  • Net Tools - Free closed source, Network and Internet port scanning software.

Online Portscanner

  • Pcflank Online Scan you can check specific ports using different 'attack' methods and see if your ports are whether Open, Closed or Stealthed
  • Sygate Online Scan extended security check (Stealth Scan, Trojan Scan)
  • Planet Security Firewall-Check Fast, extended check, checks currently high-endangered ports
  • Crucialtests concise, includes advisor
  • DerKeiler's Port Scanner You can only scan your IP, useful when you are in an internet cafe with many restrictions.
  • AuditMyPC Free Port Scanning Can scan all 65535 ports.

See also

  • Computer system
  • Computer security
  • Cracking
  • TCP/IP
  • Internet
  • Service scan

External links

  • IANA assigned ports list

Legal implications

  • Port Scanning and its Legal Implications from the Asian School of Cyber Laws
  • The Ethics and Legality of Port Scanning is a PDF of a paper by Shaun Jamieson, published October 8, 2001 as part of the SANS Reading Room
Search Term: "Port_scanner"

host services news and host services articles

Here's our top rated host services links for the day:

Mountain Lake To Host Golf Tournament To Benefit Mid-Florida Medical Services 

Lake Wales News - Mar 07 12:11 PM
The Mid-Florida Medical Services Foundation is pleased to announce that the prestigious Top 100 Mountain Lake golf club will again serve as the host for the Foundations annual invitational golf tournament, to be held on May 11.
Save

ISQ Solutions Earns Top Canadian Web Host Designation 
TopHosts.com - Mar 08 5:36 AM
March 8, 2007 (Toronto, ON) Each month TopHosts Canada reviews hundreds of hosting providers and selects the host who ranks best on commitment to customer service, breadth of Web hosting services and innovation in both marketing and technology.
Save

Rainbow National Services to Host Bondholder Conference Call 
[Press Release] Business Wire via Yahoo! Finance - Mar 05 11:07 AM
BETHPAGE, N.Y.----Rainbow National Services LLC will host a conference call for its bondholders to discuss the information contained in its 2006 financial statements. The conference call will take place on Thursday, March 8, 2007 at 10:00 a.m.
Save

Park District to host trail meeting 
Fremont News-Messenger - Mar 08 7:36 AM
The Sandusky County Park District will host an open house from 5 to 8 p.m. March 20 at Trinity United Methodist Church, 231 Maple St. in Lindsey, to get public input on the 10.5-mile Fremont-Lindsey-Elmore section of the North Coast Inland Bike Trail.
Save

City Capital CEO Ephren W. Taylor II Asked to Host National XM Satellite Radio Show 
[Press Release] Market Wire via Yahoo! Finance - Mar 08 2:00 PM
City Capital Corporation head Ephren Taylor has been asked to host a business and financial insights talk show on FamilyTalk XM 170. Co-hosting the show each week will be Emerson Brantley, City Capital's Chief Communications Officer. The "Soul of Success" will air Saturdays at 4 p.m.
Save

Southwest Water to Report 2006 Financial Results and Host Conference Call on March 16, 2007 
[Press Release] Business Wire via Yahoo! Finance - Mar 08 6:00 AM
LOS ANGELES----Southwest Water Company , a leading provider of water and wastewater services through utility ownership and contract operations, will release its 2006 year-end financial results on Friday, March 16, 2007 .
Save

TrueAdvantage and Sales Performance International Host Complimentary Webcast on ''Driving Revenue Growth with Sales ... 
[Press Release] Business Wire via Yahoo! Finance - Mar 08 9:04 AM
SOUTHBOROUGH, Mass.----TrueAdvantage®, Inc., the industry's leading sales acceleration service, and Sales Performance International, a global sales performance improvement firm, will host a complimentary, live webcast, featuring a presentation by Gartner entitled "Driving Revenue Growth with Sales Technology."
Save

Citizenship workshop coming to E.B. Library 
East Brunswick Sentinel - 1 hour, 47 minutes ago
The East Brunswick Library, Jean Walling Civic Center, will host a free citizenship workshop from 7-9 p.m. on March 14. Guest speaker Debby Alter, director of immigration and refugee services at Jewish Family and Vocational Services of Middlesex County, will discuss the citizenship-application process.
Save

Autobytel Inc. to Host Conference Call and Webcast 
[Press Release] Business Wire via Yahoo! Finance - Mar 08 2:21 PM
IRVINE, Calif.----Autobytel Inc. , a leading Internet automotive marketing services company, will hold a webcast conference call on March 15, 2007 at 2:00 PM to discuss the results for the year ended December 31, 2006.
Save

ORBCOMM to Host 2006 Full Year and 4th Quarter Results Conference Call Scheduled for Thursday, March 15th 
[Press Release] Business Wire via Yahoo! Finance - Mar 08 7:54 AM
FORT LEE, N.J.----ORBCOMM Inc. , a global satellite data communications company focused on Machine-to-Machine communications, today announced that its senior management will host a conference call and webcast to review financial results and operational highlights from its 2006 full year and fourth quarter ended December 31, 2006, on Thursday, March 15, 2007, at 10:30AM ET.
Save

Last Update: 2007-03-08 19:37:06

Thank you for reading the host services page - generic host process for win32 services. 

1. host service
2. hot services

As an extra bonus here are the top searched terms over the past month for host services. Now you can see what everyone else is searching for in regards to host services.

1. generic host process for win32 services
2. internet information services windows nt server smart host
3. hosting services website host list
4. web site design host optimization services
5. best domain name host services
6. generic host process for win 32 services
7. web site host services
8. ecommerce website host and design services
9. web site host domain services
10. cheap website host services
11. snpp host att wireless services
12. creative host services
13. review of website host services
14. the best domain name host services
15. what are the best domain name host services
16. free web site host services
17. host hosting hosting services site web web web
18. best website site host services
19. design host optimisation services website
20. discount host services website
21. host site domain registration website hosting services
22. internet website site host services
23. website site design host services
24. best web site host services
25. canada host services site web
26. canada host services site website
27. professional web site host services
28. website host services ecommerce
29. affordable website page host services
30. best website host services
31. business hosting services host
32. website host services directory
33. website host services in canada
34. business website host services
35. cheap host new com services website
36. e commerce website host services
37. host services site web
38. internet web site host services
39. affordable website site host services
40. cheap website site host services
41. free website host services
42. hosting services free host sites
43. nt website host services
44. professional website site host services
45. small business website host services
46. canada website host services
47. cheap domain host registration com services web
48. generic host 32 process for win32 services
49. host escort services in massachusetts
50. host escort services in washington dc
51. uk website host services
52. web conferencing host services
53. web host services
54. affordable host new com services website
55. affordable web site host services
56. christian web host and web hosting services
57. domain and host services
58. ecommerce web host and design services
59. find the best website host services for
60. host family services effectiveness outcomes report
61. host marriott services
62. host of ebusiness services
63. host plan services website
64. host process for win32 services data execution prevention
65. hosting services host
66. inexpensive website host services
67. quality web site host services
68. singapore website host services
69. web host consulting services
70. web host directory free source of web hosting services
71. c i host web page hosting services
72. cheap web site host services
73. cheap website host services and server
74. com host services
75. cw host professional services site web
76. easy cgi web host services
77. free web host services
78. free website site host services
79. generic host 32 for win 32 services
80. generic host for win32 services encountered
81. generic host process for win 32 services has
82. generic host process for win 32 services has encountered
83. generic host process for win32 services and server
84. host mariott services regional ofc
85. host services in phoenix arizona
86. hosting services free host
87. svchost errors and generic host process for win32 services
88. symantec internet security 2005 services disabled host file
89. web site design host services
90. website host services company
91. windows has closed generic host process for win32 services
92. affordable host new.com services website
93. cheap website page host services
94. closed this program generic host process for win32 services
95. domain host services
96. generic host process for win32 services data execution
97. generic host process for win32 services encountered
98. generic host process for win32 services error message
99. generic host process for win32 services has encountered
100. generic host process for win32 services has encountered a
101. generic host process for win32 services is attempting
102. hospitality services host liability
103. host access transformation services
104. host access transformation services tutorial
105. host family services outcomes report
106. host marriot services
107. host marriott services corp
108. host process for win32 services data
109. host process for win32 services data execution
110. host services
111. how to stop generic host process for win32 services
112. microsoft generic host process for win32 services
113. website host services