Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions Blog/CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
Hi,

I found a XSS vulnerability on your script's "register.php" file. In this file you have 3 inputs with no protection against XSS attacks.

These are: fullname, email and username.

You just POST the data like _POST['username'];

You should use isset($_POST) it would be more secure.

You can find additional information about this attack and how to secure your code against this attack you can use google.


Have a nice day!

:)