Allows you to pipe data from mysqldump or an SQL file and anonymize it:
mysqldump -u yada -pbadpass -h db | anonymize-mysqldump --config config.json > anonymized.sqlusage: anonymize-mysqldump [-h|--help] -c|--config "<value>"
Reads SQL from STDIN and replaces content for
anonymity based on the provided config.
Arguments:
-h --help Print help information
-c --config Path to config.json
You can download the binary for your system from the Releases page. Once downloaded and gunzip'd, move it to a location in your path such as /usr/local/bin and make it executable. For instance, to download the MacOS binary for 64 bit platforms (this is most common):
LATEST="0.3.0"
curl -OL https://github.com/humanmade/go-anonymize-mysqldump/releases/download/$LATEST/go-anonymize-mysqldump_darwin_amd64.gz
gunzip go-anonymize-mysqldump_darwin_amd64.gz
mv go-anonymize-mysqldump_darwin_amd64 /usr/local/bin/anonymize-mysqldump
chmod +x /usr/local/bin/anonymize-mysqldumpThis tool is designed to read a file stream over STDIN and produce an output over STDOUT. A config file is required and can be provided via the -c or --config flag. An example config for anonymizing a WordPress database is provided at config.example.json:
curl -LO https://raw.githubusercontent.com/humanmade/go-anonymize-mysqldump/master/config.example.jsonWhenever the tool experiences an error, it will output a log to STDERR. If you wish to not see that output while the command is running, redirect it to some other file (or /dev/null if you don't care):
mysqldump -u yada -pbadpass -h db | anonymize-mysqldump --config config.json 2> path/to/errors.log > anonymized.sqlImportant things to be aware of!
- Currently this only modifies
INSERTstatements. Should you wish to modify other fields, feel free to submit a PR. - Verify the output file has been modified. This is a friendly reminder this tool is still in its early days and you should verify the output sql file before distributing it to ensure the desired modifications have been applied.
An example config for anonymizing a WordPress database is provided at config.example.json.
The config is composed of many objects in the patterns array:
patterns: an array of objects defining what modifications should be made.tableName: the name of the table the data will be stored in (used to parseINSERTstatements to d etermine if the query should be modified.)fields: an array of objects defining modifications to individual values' fieldsfield: a string representing the name of the field. Not currently used, but still required to work and useful for debugging.position: the 1-based index of what number column this field represents. For instance, assuming a table with 3 columnsfoo,bar, andbaz, and you wished to modify thebarcolumn, this value would be2.type: a string representing the type of data stored in this field. Read more about field types here.constraints: an array of objects defining comparison rules used to determine if a value should be modified or not. Currently these are limited to a simple string equality comparison.field: a string representing the name of the field.position: the 1-based index of what number column this field represents. For instance, assuming a table with 3 columnsfoo,bar, andbaz, and you wished to modify thebarcolumn, this value would be2.value: string value to match against.
Supposing you have a WordPress database and you need to modify certain meta, be it user meta, post meta, or comment meta. You can use constraints to update data only whenever a certain condition is matched. For instance, let's say you have a user meta key last_ip_address. If you wanted to change that value, you can use the following config in the fields array:
{
"field": "meta_value",
"position": 4,
"type": "ipv4",
"constraints": [
{
"field": "meta_key",
"position": 3,
"value": "last_ip_address"
}
]
}
Each column stores a certain type of data, be it a name, username, email, etc. The type property in the config is used to define the type of data stored, and ultimately the type of random data to be inserted into the field. https://github.com/dmgk/faker is used for generating the fake data. These are the types currently supported:
usernamepasswordemailurlnamefirstNamelastNameparagraphipv4
If you need another type, please feel free to add support and file a PR!
Many thanks to Automattic/go-search-replace for serving as the starting point for this tool! Also many thanks to xwb1989/sqlparser for the SQL parsing library. I wouldn't have been able to do this without it!