Install
openclaw skills install missing-input-validationExternal input flows into sensitive operations without being checked for type, shape, range, or sanitization.
openclaw skills install missing-input-validationAny data from outside the process — HTTP request bodies, CLI args, file contents, third-party API responses, user messages — should be treated as untrusted until proven otherwise. Code that uses it directly opens injection, crash, and security paths.
request.body.x with no type check.exec, SQL, or a file path.execFile with an argv array, or explicit path joins — never string concatenation.