README.md in logstop-0.2.4 vs README.md in logstop-0.2.5
- old
+ new
@@ -53,11 +53,11 @@
```ruby
Logstop.guard(logger, ip: true)
```
-Add custom rules with: [master]
+Add custom rules with:
```ruby
scrubber = lambda do |msg|
msg.gsub(/custom_regexp/, "[FILTERED]".freeze)
end
@@ -75,14 +75,16 @@
## Notes
This should be used in addition to `config.filtered_parameters`, not as a replacement.
-To scrub existing log files, check out [scrubadub](https://github.com/datascopeanalytics/scrubadub).
+Learn more about [securing sensitive data in Rails](https://ankane.org/sensitive-data-rails).
-To anonymize IP addresses, check out [IP Anonymizer](https://github.com/ankane/ip_anonymizer).
+Also:
-Learn more about [securing sensitive data in Rails](https://ankane.org/sensitive-data-rails).
+- To scrub existing log files, check out [scrubadub](https://github.com/datascopeanalytics/scrubadub)
+- To anonymize IP addresses, check out [IP Anonymizer](https://github.com/ankane/ip_anonymizer)
+- To scan for unencrypted personal data in your database, check out [pdscan](https://github.com/ankane/pdscan)
## Resources
- [List of PII, as defined by NIST](https://en.wikipedia.org/wiki/Personally_identifiable_information#NIST_definition)