Crytic again suggests: "Avoid low-level call. Consider using a whitelist of function ids to call" because the _label argument is user-controlled which is the expected functionality (call is invoked on newOwner which is not user-controlled).
Reporting it here just because it's a medium severity and so deserves a look by others. @3esmit @0kok0
UsernameRegistrar.release(bytes32) uses a low level to a input-controlled function id newOwner.call.gas(80000)(abi.encodeWithSelector(this.dropUsername.selector,_label))
Crytic again suggests: "Avoid low-level call. Consider using a whitelist of function ids to call" because the
_label
argument is user-controlled which is the expected functionality (call is invoked onnewOwner
which is not user-controlled).Reporting it here just because it's a
medium
severity and so deserves a look by others. @3esmit @0kok0