Skip to content
Snippets Groups Projects
Commit 914e0b63 authored by Dominik Hebeler's avatar Dominik Hebeler
Browse files

Anonymisierung eingebaut

parent 48cb9e9c
No related branches found
No related tags found
1 merge request!47Anonymisierung eingebaut
...@@ -7,6 +7,11 @@ ...@@ -7,6 +7,11 @@
* @author Taylor Otwell <taylorotwell@gmail.com> * @author Taylor Otwell <taylorotwell@gmail.com>
*/ */
# Unser erster Schritt wird sein, IP-Adresse und USER-Agent zu anonymisieren, damit
# nicht einmal wir selbst noch Zugriff auf die Daten haben:
$_SERVER['REMOTE_ADDR'] = substr($_SERVER['REMOTE_ADDR'], 0, strrpos($_SERVER['REMOTE_ADDR'], ".")) . ".0";
$_SERVER['HTTP_USER_AGENT'] = substr($_SERVER['HTTP_USER_AGENT'], 0, 23);
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
| Register The Auto Loader | Register The Auto Loader
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment