Skip to content

Commit 6612f2a

Browse files
committed
MySQL format: Exclude URL-like test passwords from non-debug builds
These may confuse "anti-virus" software analyzing the binary. See #5890
1 parent 5663107 commit 6612f2a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/mysql_fmt_plug.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,11 +77,13 @@ static struct fmt_tests tests[] = {
7777
{"1b38cd9c2f809809", "hacktivity2008"},
7878
{"1b38cd9c2f809809", "hacktivity 2008"},
7979
{"6fc81597422015a8", "johnmodule"},
80-
{"30f098972cc8924d", "http://guh.nu"},
8180
{"3fc56f6037218993", "Andrew Hintz"},
8281
{"697a7de87c5390b2", "drew"},
82+
#if defined(WITH_ASAN) || defined(DEBUG)
83+
{"30f098972cc8924d", "http://guh.nu"},
8384
{"1eb71cf460712b3e", "http://4tphi.net"},
8485
{"28ff8d49159ffbaf", "http://violating.us"},
86+
#endif
8587
{"5d2e19393cc5ef67", "password"},
8688
{"5030573512345671", ""},
8789
{"723d80f65bf9d670", "UPPERCASE"},

0 commit comments

Comments
 (0)