Multiple choice technology security

Which are the default codecs supported to help encode characters to be safely used on OS command shells

  1. Unix Codec

  2. Windows Codec

  3. Unix and Windows Codec

  4. Linux Codec

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

The security API provides default codecs for Unix/Linux (UnixCodec) and Windows (WindowsCodec) to escape input intended for OS command shells. These codecs prevent command injection vulnerabilities by encoding metacharacters specific to each operating system's command interpreter, ensuring input is treated purely as data.