Jump to content

Having trouble with regex


Tom10

Recommended Posts

Hi, ok so basically i have a forum and want to use a character class to detect if someone is trying to post a thread with a malicious title or message like xss, i have already used a regex in the url to filter characters

$url = $_SERVER['SERVER_NAME'] . $_SERVER['REQUEST_URI'] . '';

if(preg_match("#[^\w\s\b\/\&\?\=\-\.\%\_\[\]]#", $url)) {

	include 'denied.php';

	exit();
}

But i'm wondering how can i do something like this for a page? if that makes sense 

 

All help very much appreciated, i'm not the best at explaining so if something doesn't make sense please ask and i will try to explain in more detail :)

Link to comment
https://forums.phpfreaks.com/topic/295361-having-trouble-with-regex/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.