Welcome to HBH! If you have tried to register and didn't get a verification email, please using the following link to resend the verification email.
Vulnerable code?
Okay, after leaving one of my favorite sonic fan forums. I got curious and started searching in the source code of some pages. In a page I found this code in this link:
http://Not_giving_site.org/index.php?act=boardrules
var q = unescape(location.search.substring(1)).split(/[=&]/);
for (var j=0; j<q.length; j+=2) {
if (q[j] == name) {
return q[j+1]```
It's javascript yes. The whole page is created in javascript. Is this code vulnerable? and is it safe to code a whole page in javascript?