Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Strange request in my log: GET /appg/init_vanilla.php?Configuration[APPLICATION_PATH]=google.com
fmimoso
✭
Found this in my logs (scroll down, formatting gets broke):
88.214.193.xx - - [xx/Nov/2006:xx:x1:57 +0000] "GET /1/ HTTP/1.0" 200 42265 "http://www.google.com/search?q="powered+by+vanilla+1.0.1"&hl=en&lr=&safe=off&start=10&sa=N" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.8) Gecko/20061025 Firefox/1.5.0.8"Any ideas of what it is?
88.214.193.xx - - [xx/Nov/2006:xx:x2:00 +0000] "GET /themes/vanilla/styles/soulscape/vanilla.css HTTP/1.0" 200 29861 "http://mysite.com/1/" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.8) Gecko/20061025 Firefox/1.5.0.8"
88.214.193.xx - - [xx/Nov/2006:xx:x2:06 +0000] "GET /themes/vanilla/styles/soulscape/favicon.ico HTTP/1.0" 200 1150 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.8) Gecko/20061025 Firefox/1.5.0.8"
88.214.193.xx - - [xx/Nov/2006:xx:x2:09 +0000] "GET /appg/init_vanilla.php?Configuration[APPLICATION_PATH]=google.com HTTP/1.0" 403 - "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.8) Gecko/20061025 Firefox/1.5.0.8"
88.214.193.xx - - [xx/Nov/2006:xx:x2:10 +0000] "GET /favicon.ico HTTP/1.0" 404 - "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.8) Gecko/20061025 Firefox/1.5.0.8"
88.214.193.xx - - [xx/Nov/2006:xx:x4:08 +0000] "GET / HTTP/1.0" 200 62286 "http://www.google.com/search?q="powered+by+vanilla+1.0"&hl=en&lr=&safe=off&start=10&sa=N" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.8) Gecko/20061025 Firefox/1.5.0.8"
88.214.193.xx - - [xx/Nov/2006:xx:x4:19 +0000] "GET /themes/vanilla/styles/soulscape/favicon.ico HTTP/1.0" 200 1150 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.8) Gecko/20061025 Firefox/1.5.0.8"
88.214.193.xx - - [xx/Nov/2006:xx:x4:20 +0000] "GET /appg/init_vanilla.php?Configuration[APPLICATION_PATH]=google.com HTTP/1.0" 403 - "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.8) Gecko/20061025 Firefox/1.5.0.8"
0
This discussion has been closed.
Comments
<Limit GET POST PUT> Order Allow,Deny Deny from All </Limit>
Nothing wrong with the forum so far. And those were the only requests from that IP.
Someone is trying something, what I don't know. Let this be a warning.
@Mimosa: I'd keep tracking my logs if I were you fmim.
In that context, I highly recommend weblog storming (interactive log analysis)
I've used it more than once for clients to track and solve hacker attacks and 'benign tests' ;-)
Again, this would only work in select circumstances, but it still, might want to do something about that mark.
Anyone have any suggestions?
if ( strpos($Configuration['APPLICATION_PATH']. $Configuration['LIBRARY_PATH']. $Configuration['DATABASE_PATH']. $Configuration['LANGUAGES_PATH']. $Configuration['LANGUAGE'], '://') ) { echo 'Cannot include remote libraries'; exit; }
EDIT: does not prevent direcory traversal or other attacks
if(!defined('IN_VANILLA')) exit();
Include_once('settings.php');
.The idea is if settings is already included, the statement is ignored. If it is not, then it gets included and initializes the paths. Other functions that might be useful are get_included_files() and function_exists().