Skip to content
Snippets Groups Projects
Commit b98a25ef authored by Mark Michelson's avatar Mark Michelson
Browse files

Prevent potential buffer overflow on AMI MixMonitor command.

Don't be alarmed. This only affected trunk, and it would have
required manager access to your system.



git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@351900 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent 43621b05
No related branches found
No related tags found
No related merge requests found
......@@ -923,9 +923,7 @@ static int manager_mixmonitor(struct mansession *s, const struct message *m)
return AMI_SUCCESS;
}
strcpy(args, file);
strcat(args, ",");
strcat(args, options);
snprintf(args, sizeof(args), "%s,%s", file, options);
ast_channel_lock(c);
res = mixmonitor_exec(c, args);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment