Skip to content

Commit b892645

Browse files
committed
Utility sql commands which are run on the database dump from the master in order to get the dump publicly available on tools.ietf.org.
- Legacy-Id: 1923
1 parent 3fc36ad commit b892645

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

test/sql_sanitize.sql

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
-- This file holds commands which removes stuff which **really** should not be in the
2+
-- database in cleartext, such as passwords...
3+
4+
UPDATE iesg_login SET password = 'deleted';
5+
UPDATE iesg_password SET password = 'deleted';
6+
UPDATE wg_password SET password = 'deleted';
7+
UPDATE web_user_info SET password = 'deleted';
8+
UPDATE idst_users SET password = 'deleted';
9+
UPDATE idst_users SET random_str = 'deleted';
10+
UPDATE iesg_login SET password = 'deleted';
11+
12+
13+

0 commit comments

Comments
 (0)