History log of /curl/tests/server/.checksrc (Results 1 – 2 of 2)
Revision Date Author Comments
# c2ac9ea1 12-Dec-2024 Daniel Stenberg

checksrc: ban use of sscanf()

Using sscanf() is not a (security) problem in itself, but we strongly
discorage using it for parsing input since it is hard to use right, easy
to mess u

checksrc: ban use of sscanf()

Using sscanf() is not a (security) problem in itself, but we strongly
discorage using it for parsing input since it is hard to use right, easy
to mess up and often makes for sloppy error checking.

Allow it in examples and tests

Closes #15687

show more ...


# 45b388fd 09-Oct-2024 Daniel Stenberg

tests/server/util.c: remove use of strncpy

... and ban the function in code in this directory.

Closes #15213