From 04fb98e9543b096d730225a2db95ef3f28d7303a Mon Sep 17 00:00:00 2001 From: lns Date: Wed, 16 Jan 2019 12:15:30 +0100 Subject: fixed snprintf truncation warning Signed-off-by: lns --- exec_crypter.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'exec_crypter.c') diff --git a/exec_crypter.c b/exec_crypter.c index 2ce4580..4a85deb 100644 --- a/exec_crypter.c +++ b/exec_crypter.c @@ -169,7 +169,8 @@ int main(int argc, char **argv) { printf("\nExtracting payload size %u\n", _exec_payload_size); - snprintf(exec_path, sizeof exec_path, "%s_", new_path); + snprintf(exec_path, sizeof exec_path, "%.*s_", + (int) sizeof exec_path - 2, new_path); exec_fd = open(exec_path, O_RDWR | O_CREAT, S_IRWXU | S_IRWXG | S_IRWXO); -- cgit v1.2.3