This is my code for a server running a login manager, that log into a file the malicious access and print out the result of the wrong login. The chars user and pass come from the user input using the socket.
if ((memcmp(user, "admin", strlen("admin")) == 0)) {
/*code... */
}
else {
char msg[600];
strcpy (msg,"Login error with ");
strcat (msg,"user: ");
strcat (msg,user);
strcat (msg," password: ");
strcat (msg,pass);
strcat (msg," from: ");
strcat (msg, client_ip);
puts (msg);
logfile->Write(msg);
return false;
}
Well, the problem is the output both on the output console and in the logfile.
Like this:
Login error with user: lol
password: asd
:��ܔ��P{w� from: 127.0.0.1
Why are there the strange asci chars? How can avoid the new line since they come from user input by socket?
strcmp(user, "admin") == 0? – StackUnderflow Oct 11 '11 at 22:01std::string. Looks like there are three possible buffer overflow situations in your code, and they wouldn't be there if you usedstd::string. The Morris worm, the Code Red Worm, the SQL Slammer worm (and others) are famous pieces of malware that took advantage of buffer overflows. – R. Martinho Fernandes Oct 11 '11 at 22:02passis probably not null terminated ... for the record don't write code like this and call it C++ – AJG85 Oct 11 '11 at 22:06