Blog Kevin
Welcome on my awesome blog which gives you some wonderful advices to begin in cybersecurity
What is a CVE ?
CVE stands for "Common Vulnerabilities and Exposures". It is a list of publicly known information security vulnerabilities and exposures.
It is good consult some website like cve.mitre.org to check if your website is vulnerable to a known CVE.
There are plenty of different CVEs, but the most common are SQL injections, XSS, CSRF, etc.
How to build a proper login page in php ?
To build a proper login page, you should use prepared statements and bind parameters. If you don't know what are prepared statements, you should read this tutorial.