@@ -3786,7 +3786,7 @@ static void CheckIfAllowedInEnv(const char* exe, bool is_env,
|
3786 | 3786 | size_t arglen = eq ? eq - arg : strlen(arg); |
3787 | 3787 | |
3788 | 3788 | static const char* whitelist[] = { |
3789 | | -// Node options |
| 3789 | +// Node options, sorted in `node --help` order for ease of comparison. |
3790 | 3790 | "--require", "-r", |
3791 | 3791 | "--debug", |
3792 | 3792 | "--debug-brk", |
@@ -3802,6 +3802,7 @@ static void CheckIfAllowedInEnv(const char* exe, bool is_env,
|
3802 | 3802 | "--track-heap-objects", |
3803 | 3803 | "--zero-fill-buffers", |
3804 | 3804 | "--v8-pool-size", |
| 3805 | +"--tls-cipher-list", |
3805 | 3806 | "--use-bundled-ca", |
3806 | 3807 | "--use-openssl-ca", |
3807 | 3808 | "--enable-fips", |
|