ipscrub
ipscrub copied to clipboard
IP address anonymizer module for nginx
Did anyone have success compiling this on alpine? ``` In file included from /usr/include/bsd/sys/cdefs.h:51, from /usr/include/bsd/libutil.h:45, from /usr/include/bsd/stdlib.h:39, from ../ipscrub-1.0.1/ipscrub/src/ngx_ipscrub_support.c:9: /usr/include/sys/cdefs.h:1:2: error: #warning usage of non-standard #include is deprecated [-Werror=cpp]...
thanks for this great code & setup! (been scouting for something like this (a bit dumbfoundedly for why so long!) for years...) better than my C patching/hacking -- we love...
We're using nginx behind a proxy server and wanted the client's real ip to be scrubbed.
this is a feature request: The format of the error log cannot easily be configured. Is it possible to obfuscate ip addresses in the error log within the scope of...
Hello, I just installed ipscrub, and I'm seeing unexpected behaviour. The screenshot shows the unscrubbed `access.log` on top and the scrubbed `access_scrubbed.log` below. The hash of the IP `146.223.14.99` changes...
Issue was that different worker processes had different value of "nonce", thus producing different ipscrub value for same IP. Consider this nginx.conf: load_module modules/ngx_ipscrub_module.so; events { accept_mutex on; } worker_processes...
This random data is later used as part of input for ngx_crypt function, which expects a zero-terminated string. If the string contains a zero character, then rest of string is...