aboutsummaryrefslogtreecommitdiffstats
path: root/php/register.php
diff options
context:
space:
mode:
authoralexvitkov <44268717+alexvitkov@users.noreply.github.com>2021-01-29 12:52:06 +0200
committerGitHub <noreply@github.com>2021-01-29 12:52:06 +0200
commit33e533d28dbf9ad7bfc7ad9af467e5efe25ae8a0 (patch)
tree7b748d2b87ab018d7ff451b4111a1b88eeb58416 /php/register.php
parentceedd596c9f39f53555fd0746a42d6b85cd49b6c (diff)
parent472e170f408e3d8d1db2eb066d445153aad55d73 (diff)
downloadfileup-33e533d28dbf9ad7bfc7ad9af467e5efe25ae8a0.tar.gz
Merge pull request #1 from GTSimeonov/master
rararrararararraar
Diffstat (limited to 'php/register.php')
-rw-r--r--php/register.php27
1 files changed, 27 insertions, 0 deletions
diff --git a/php/register.php b/php/register.php
new file mode 100644
index 0000000..b6b164c
--- /dev/null
+++ b/php/register.php
@@ -0,0 +1,27 @@
+<?php
+require_once "database.php";
+require_once "misc.php";
+require_once "configuration.php";
+
+$username=$_POST["username"];
+$password=$_POST["password"];
+$password2=$_POST["password2"];
+$email=$_POST["email"];
+
+/*check if we are given shady credentials*/
+if(!validate_credentials($username,$email,$password,$password2))
+{
+ error_log("Invalid registration that has probbably bypassed client side verification. This could be an attack!");
+ die();
+}
+$database= new Database;
+
+if($database->register_user($username,$password,$email))
+{
+ echo "registered";
+}else
+{
+ echo "didn't register";
+}
+
+?>