X-Git-Url: https://mudpy.org/gitweb?p=mudpy.git;a=blobdiff_plain;f=mudpy%2Fcommand.py;h=d72e4e3ea039cedf68b708770d2c2d9c73ad5810;hp=601bc82c3ca7d2e3704e1465ef795c31478e0100;hb=472e1de5356e4df0f099fe6a17ff6dab585314f3;hpb=13ad9d33469c0ad12d0de34744cb30cc00bdba32 diff --git a/mudpy/command.py b/mudpy/command.py index 601bc82..d72e4e3 100644 --- a/mudpy/command.py +++ b/mudpy/command.py @@ -111,7 +111,9 @@ def error(actor, input_data): """Generic error for an unrecognized command word.""" # 90% of the time use a generic error - if random.randrange(10): + # Whitelist the random.randrange() call in bandit since it's not used for + # security/cryptographic purposes + if random.randrange(10): # nosec message = '''I'm not sure what "''' + input_data + '''" means...''' # 10% of the time use the classic diku error