32 lines
1.6 KiB
PHP
32 lines
1.6 KiB
PHP
@extends('profilelayout')
|
|
@section('content')
|
|
<div class="page-header">
|
|
<h3>Privacy</h3>
|
|
</div>
|
|
|
|
<div class="box">
|
|
<h5>What do we log?</h5>
|
|
<p>We log any request made to our website using the webserver access log, this includes the following information:</p>
|
|
<ul>
|
|
<li>Unique visitors per day</li>
|
|
<li>Requested file urls</li>
|
|
<li>Visitor hostnames and IPs</li>
|
|
<li>Visitors operating system</li>
|
|
<li>Visitors browser</li>
|
|
<li>Referrer URLs</li>
|
|
<li>Referring Sites</li>
|
|
</ul>
|
|
<p>These logs are webserver access logs, there are no user specific logs, we do not associate ips to users, uploads or comments, we have good faith in our users, the access logs are for the sole purpose of debugging if something goes south, identifying unwanted bots etc</p>
|
|
<h5>3<sup>rd</sup> party links</h5>
|
|
<p>There are some 3rd party linkings on this website, be careful with clicking them we don't know whats inside the box blah blah blah, don't be stupid and don't trust the internet.</p>
|
|
<p>If you encounter a malicious link shared here on w0bm.com please notify an admin in the IRC or Discord</p>
|
|
<h5>Cookies</h5>
|
|
<p>Yes, we use cookies if you don't like that don't come to our site! (or don't accept them in the first place) You can see the details of the cookies in your browser.</p>
|
|
<p>It should be your remember token, this is used so you don't have to login all the time, the style cookie, it sets your prefered stylesheet in the default w0bm.com layout, w0bm_session, your session cookie, XSRF-TOKEN, the XSRF-TOKEN</p>
|
|
</div>
|
|
@if(auth()->check())
|
|
@include('footer')
|
|
@else
|
|
@endif
|
|
@endsection
|