Page 1 of 1

[solved] Album strange referring/visited URLs

Posted: Mon Feb 04, 2008 4:04 pm
by andydu
I have no idea if I should worry... there are a lot of strange referring/visited URLs in my logs:


/index.php?mact=Album,m4,default,1&m4albumid=9&m4returnid=52&page=http%3A%2F%2Fsans-packing.ru%2Fimg%2Fjipeqap%2Fehudute%2F
/index.php?mact=Album,m4,default,1&m4albumid=http%3A%2F%2Fsinzinuri.com%2Fimsi%2Fdb%2Fpic%2Fbezefi%2Fugoye%2F&m4returnid=52&page=52

/index.php?mact=http%3A%2F%2Fwww.electrofed.com%2F_app%2Fefc%2Fodoqu%2Fferus%2F&m4albumid=7&m4returnid=52&page=52

Do you have any idea what is it and how can I prevent openig external links from my index.php ?

CMS Made Simple 1.2.3 "Black Rock"
Album 0.9.2    Standard-Template: Thickbox
phpids 1.4.5b

www.duda.tk

Re: Album strange referring/visited URLs

Posted: Mon Feb 04, 2008 8:45 pm
by alby
andydu wrote: Do you have any idea what is it and how can I prevent openig external links from my index.php ?
URL Filtering

Alby

Re: Album strange referring/visited URLs

Posted: Mon Feb 04, 2008 9:50 pm
by andydu
tnx ;) I will take look at it..

Re: [solved] Album strange referring/visited URLs

Posted: Tue Feb 05, 2008 12:43 am
by andydu
I have to modify some RewriteCond .htaccess to those:

Code: Select all

RewriteCond %{QUERY_STRING} \http [OR]
RewriteCond %{QUERY_STRING} \[ [OR]
RewriteCond %{QUERY_STRING} \www [OR]
RewriteCond %{QUERY_STRING} \] [OR]
RewriteCond %{QUERY_STRING} (\<|%3C).*script.*(\>|%3E) [NC,OR]
RewriteCond %{QUERY_STRING} GLOBALS(=|\[|\%[0-9A-Z]{0,2}) [OR]
RewriteCond %{QUERY_STRING} _REQUEST(=|\[|\%[0-9A-Z]{0,2})
and now I am happy and can sleep well.. TNX!