From b9946229cfb0d777f201d2cb6847f3a4583c43c3 Mon Sep 17 00:00:00 2001 From: dmiller Date: Fri, 18 Sep 2015 12:40:33 +0000 Subject: [PATCH] Fix a format string with missing argument --- scripts/smb-brute.nse | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/smb-brute.nse b/scripts/smb-brute.nse index 0ba5e0522..cfe1aec81 100644 --- a/scripts/smb-brute.nse +++ b/scripts/smb-brute.nse @@ -770,7 +770,7 @@ function test_lockouts(hostinfo) if(result == results.LOCKED) then -- If the canary just became locked, we're one step from locking out every account. Loop through the usernames and invalidate them to -- prevent them from being locked out - stdnse.debug1("Canary (%s) became locked out -- aborting") + stdnse.debug1("Canary (%s) became locked out -- aborting", username) -- Add it to the locked username list (so it can be reported) hostinfo['locked_usernames'][username] = true