summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--it.class4
1 files changed, 2 insertions, 2 deletions
diff --git a/it.class b/it.class
index cbb5486..03fba2d 100644
--- a/it.class
+++ b/it.class
@@ -308,8 +308,8 @@ static function error($p = array(), $extra = null)
$body .= "Processes:\n" . it::exec('ps auxf | egrep -v "rotatelogs|getbanner|logaction|httpd|systemd|sd-pam"|egrep "^www|^cron"') . "\n";
$body .= $longstack ? "Full stack: " . "$longstack\n" : "";
- $body = it::replace(['(pw|passw|password\d*|secret|api.?key)(\' => |\] => |=)[^&\s\']*' => '$1$2********'], $body, ['utf8' => false]);
- $body = it::replace(['"(pw|passw|password\d*|secret|api.?key)": *"[^"]*"' => '"$1": "*******"'], $body, ['utf8' => false]);
+ $body = it::replace(['(pw|passw|password\d*|secret|api.?key|X-Auth-Token)(\' => |\] => |=)\'?[^&\s\']*' => '$1$2********'], $body, ['utf8' => false]);
+ $body = it::replace(['"(pw|passw|password\d*|secret|api.?key|X-Auth-Token)": *"[^"]*"' => '"$1": "*******"'], $body, ['utf8' => false]);
}
$type = ($p['fatal'] ? (it::is_live() ? "FATAL: " : "Fatal: ") : "Error: ");