BoxyBSD/website/dynamic/abuse.php

162 lines
No EOL
6.5 KiB
PHP

<?php
$empfaenger = "abuse@boxybsd.com";
if(isset($_REQUEST["submit"])){
if(empty($_REQUEST["name"]) || empty($_REQUEST["email"]) || empty($_REQUEST["nachricht"])){
$error = "Please fill out all fields.";
}
else{
$mailnachricht="Abuse report::\n";
$mailnachricht .= "Name: ".$_REQUEST["name"]."\n".
"E-Mail: ".$_REQUEST["email"]."\n".
"Datum: ".date("d.m.Y H:i")."\n".
"Auswahl: ".$_REQUEST["Auswahl"]."\n".
"\n\n".$_REQUEST["nachricht"]."\n";
$mailbetreff = "BoxyBSD Abuse Report: ".$_REQUEST["name"]." (".$_REQUEST["email"].")";
if(mail($empfaenger, $mailbetreff, $mailnachricht, 'From: support@boxybsd.com', '-f support@boxybsd.com')){
$success = "Your abuse report has been delivered. You will receive a reply after validating your report.<br>";
}
else{
$error = "Could not create abuse report. Please try again.";
}
}
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<title>Abuse | BoxyBSD - BSD focused hosting</title>
<meta name="description" content="Create an abuse report for systems and users located and hosted by BoxyBSD."/>
<meta name="keywords" content="boxybsd, gyptazy, hosting, free vm, free vms, freebsd, netbsd, openbsd, community, open-source, virtual machines, hosting, non-profit"/>
<meta name="robots" content="index,follow">
<meta property="og:image" content="https://boxybsd.com/boxybsd.jpg"/>
<meta property="og:title" content="Abuse"/>
<meta property="og:description" content="Abuse."/>
<meta property="og:image:width" content="800"/>
<meta property="og:image:height" content="375"/>
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@BoxyBSD" />
<meta name="twitter:title" content="Abuse" />
<meta name="twitter:description" content="Abuse." />
<meta name="twitter:image" content="https://boxybsd.com/boxybsd.jpg" />
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<meta name="robots" content="INDEX,FOLLOW">
<meta name="generator" content="manpageblog 1.1" />
<link rel="stylesheet" type="text/css" href="/assets/css/dark.css">
<link rel="shortcut icon" type="image/png" href="https://boxybsd.com/boxybsd.jpg"/>
<link rel="icon" type="image/png" href="https://boxybsd.com/boxybsd.jpg"/>
<link rel="apple-touch-icon" href="https://boxybsd.com/boxybsd.jpg"/>
<link href="https://mastodon.bsd.cafe/@BoxyBSD" rel="me">
</head>
<body id="abuse">
<manpage>
<b>NAME</b><br>
</manpage>
<name>
<section>
<span class="name">
BoxyBSD
</span>
</section>
</name>
<manpage>
<br><b>OPTIONS</b><br>
</manpage>
<nav>
<section>
<span class="home">
<a href="/">[home]</a>
<a href="/vserver/">[vserver]</a>
<a href="/shell/">[shell]</a>
<a href="/status/">[status]</a>
<a href="/faq/">[faq]</a>
<a href="/abuse/">[abuse]</a>
<a href="/sponsors/">[sponsors]</a>
<a href="/donate/">[donate]</a>
<a href="/contact/">[contact]</a>
</span>
</section>
</nav>
<manpage>
<br><b>CONTENT</b><br>
</manpage>
<main>
<b>Abuse</b><br>
At BoxyBSD, we prioritize the safety and security of our platform and users. Our abuse policy aims to create a safe and conducive environment
for all users while ensuring the integrity of our services.
By adhering to these principles and policies, we aim to foster a secure and trustworthy environment for all our users,
promoting responsible usage of our services while mitigating potential risks associated with abuse.
<br><br><b>Prohibited Activities</b><br>
We strictly prohibit any activities that violate our terms of service, including but not limited to:<br>
&nbsp;&nbsp;* Illegal or malicious activities such as hacking, phishing, or spreading malware.<br>
&nbsp;&nbsp;* Spamming or sending unsolicited emails.<br>
&nbsp;&nbsp;* Hosting or distributing illegal content.<br>
&nbsp;&nbsp;* Hosting or distributing copyrighted materials without proper authorization.<br>
&nbsp;&nbsp;* Engaging in activities that cause harm to our infrastructure or other users.
<br><br><b>Response to Abuse Reports</b><br>
Upon receiving an abuse report, we promptly investigates the issue to verify its validity and assess the severity.
Depending on the nature of the abuse, we take appropriate actions, which may include:<br>
&nbsp;&nbsp;* Suspension or termination of the offending account.<br>
&nbsp;&nbsp;* Removal of offending content.<br>
&nbsp;&nbsp;* Cooperation with law enforcement authorities if the abuse involves illegal activities.
<br><br><b>Report Abuse</b><br>
We encourage our users and third parties to report any instances of abuse or violations of our policies promptly. Reports
can be submitted through our dedicated channels in Matrix or email. We take all reports seriously and investigate them thoroughly.
For abuse reports please immediately reach out to us by email (abuse@boxybsd.com) or fill out the following form:<br><br>
<?php if(isset($success)){
echo "<div>".$success."</div>";
}
else { ?>
<form id="contactform" action="" method="post" class="pure-form pure-form-aligned">
<p>
<label for="name">Name</label>
&nbsp;&nbsp;&nbsp;<input id="name" name="name" required size="40" placeholder="Name"><br>
<br>
<label for="email">Email</label>
&nbsp;&nbsp;<input id="email" name="email" type="email" required size="40" placeholder="myemail@example.com"><br>
<br>
<label for="nachricht">Details</label>
<br>
<textarea id="nachricht" name="nachricht" required cols="39" rows="10" placeholder="Please include all needed details about the abuse report. What kind of abuse, time, date, source and destination addresses."></textarea><br>
<label for="submit"></label>
<button id="submit" name="submit" type="submit" class="pure-button pure-button-primary" onsubmit="validateForm()">Submit</button>
</form>
<script>
function validateForm(){
var form = document.getElementById("contactform");
return form.checkValidity();
}
</script>
<?php
}
if(isset($error)){
echo '<div class="error">'.$error.'</div>';
} ?>
</main>
<footer>
<section>
<p>&copy; 2024 BoxyBSD - a <a href="https://gyptazy.ch">gyptazy</a> service.
<br><a href="/privacy_policy/">[privacy policy]</a> / <a href="/imprint/">[imprint]</a></p></p>
</section>
</footer>
</body>
</html>