If you want to add GET parameters or POST parameters to files loading using include function in PHP then you should know the following:
It’s not possible. But it is in a different way.
If you are adding GET parameters to file name like the following, then it won’t work:
The above code won’t load the file, because PHP Include function only looks for files, it won’t send any parameters. It will search for file.php?user=subin in the directory for the case above. You can make it work in a different way.
... [READ MORE]Check whether a site is XSS vulnerable or not.
XSS is a method to hack sites which most of the newbie programmers don’t know. Here is a quick way to identify if a site is vulnerable to it. Go to a site which offers searching or other GET parameters which are outputted in the site’s page.
Instead of the value in one of the GET parameter use the following value :
Instead of the value in one of the GET parameter use the following value :
... [READ MORE]
XSS Vulnerability checker by Subin Siby