Log in

View Full Version : Mini Mods - How to stop CloudFlare / Incapsula bypass for vBulletin.


MentaL
07-29-2014, 10:00 PM
Hi,

There are a few methods to bypass CloudFlare and Incapsulas protection to get the originating server ip, the first being mail server headers (so what I do is use a third party server with modified mail headers that remove the sender IP which would be the server we are trying to protect) and the second is vBulletins image retrieval.

At the moment vBulletin has the following ;


avatar image retrieval
profile image retrieval
album image retrieval
... etc


This is bad! Anyone could simply use an ip logger such as this (http://iplogger.org/) and then could insert the fake image into the URL field to download it would grab the source ip and bypassing CF/Incapsula. What originally I was doing was editing the template and removing option 1 (the ability to retrieve image url) but as it turns out this is no good, because you can just inject the original code using firebug or element inspector and pretend nothing was ever gone! I did this for months until it was brought to my attention two days ago!

The work around.

We need to disable the following in php.ini (really only the fopen but include stops offsite injections).


allow_url_fopen = Off
allow_url_include = Off


And secondly we need to disable CURL, we could use the disable_function and add curl_init but then this would disable the facebook integration that's pre-built within vBulletin ! Not good! So , to combat this we do the following;

Edit includes/class_upload.php

find


if (ini_get('allow_url_fopen') == 0 AND !function_exists('curl_init'))


replace with


if (ini_get('allow_url_fopen') == 0)


Sorted! since all vBulletin base upload and image retrievals are based through this class its effectively side wide stopping any automatic retrievals and disabling the usage of ip image loggers.

https://vborg.vbsupport.ru/external/2014/07/2.png

gilakunters
07-31-2014, 09:35 PM
nice to share your fixes

MentaL
08-01-2014, 11:01 PM
Happy to help :)

fxdigi-cash
08-13-2014, 02:16 PM
Great share.

Thanks a lot.

fxdigi-cash
08-16-2014, 04:44 AM
by the way, if we turned off the Curl php function the image insertion property won't work anymore. it will give you an error saying " remove upload has been disabled" or similar message...

is there a fix for this because Curl php is important function for vb board...

MentaL
08-16-2014, 01:51 PM
by the way, if we turned off the Curl php function the image insertion property won't work anymore. it will give you an error saying " remove upload has been disabled" or similar message...

is there a fix for this because Curl php is important function for vb board...

You want all forms of image retrieval disabled or else ip loggers are used. Embedding and direct uploading is fine but the other methods are not.