views:

93

answers:

1

GetErrorMessage (from CInternetException) gives me the following:

With the incorrect ftp server name:
"ERROR! The server name or address could not be resolved"

With the incorrect password:
ERROR! The password was not allowed

With the incorrect user name:
ERROR! The password was not allowed <-----? NO separate message for incorrect username? Is this intended?

try
{
   pConnect = sess->GetFtpConnection(host, userName, password, port, FALSE );
}

catch (CInternetException* pEx) //incorrect user name displays incorrect password?
{
      TCHAR sz[1024];
      pEx->GetErrorMessage(sz, 1024);
      printf("ERROR!  %s\n", sz);
      pEx->Delete();
}
+11  A: 

Yes that is intended. A typical FTP server will not distinguish between an invalid password and an invalid username. This is for security reasons, so e.g. attackers can't brute force their way to discover valid usernames.

nos
Ok, I appreciate it, thanks.
Tommy
that was fast...
Rubens Farias
Fastest gun slinger of the west eh? :)
tommieb75