mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Don't call printf with no format string. This is technically a security
vulnerability and could in principle be used to upload a new kernel from the bootloader :-)
This commit is contained in:
parent
c98c98a822
commit
487730cc8b
1 changed files with 2 additions and 2 deletions
|
|
@ -326,7 +326,7 @@ command_echo(int argc, char *argv[])
|
|||
|
||||
s = unargv(argc, argv);
|
||||
if (s != NULL) {
|
||||
printf(s);
|
||||
printf("%s", s);
|
||||
free(s);
|
||||
}
|
||||
if (!nl)
|
||||
|
|
@ -378,7 +378,7 @@ command_read(int argc, char *argv[])
|
|||
name = (argc > 0) ? argv[0]: NULL;
|
||||
|
||||
if (prompt != NULL)
|
||||
printf(prompt);
|
||||
printf("%s", prompt);
|
||||
if (timeout >= 0) {
|
||||
when = time(NULL) + timeout;
|
||||
while (!ischar())
|
||||
|
|
|
|||
Loading…
Reference in a new issue