3 * Functions for dealing with proxies
9 * Extracts the XFF string from the request header
10 * Note: headers are spoofable
12 * @deprecated in 1.19; use $wgRequest->getHeader( 'X-Forwarded-For' ) instead.
15 function wfGetForwardedFor() {
16 wfDeprecated( __METHOD__
, '1.19' );
18 return $wgRequest->getHeader( 'X-Forwarded-For' );
22 * Returns the browser/OS data from the request header
23 * Note: headers are spoofable
25 * @deprecated in 1.18; use $wgRequest->getHeader( 'User-Agent' ) instead.
28 function wfGetAgent() {
29 wfDeprecated( __METHOD__
, '1.18' );
31 return $wgRequest->getHeader( 'User-Agent' );
35 * Work out the IP address based on various globals
36 * For trusted proxies, use the XFF client IP (first of the chain)
38 * @deprecated in 1.19; call $wgRequest->getIP() directly.
42 wfDeprecated( __METHOD__
, '1.19' );
44 return $wgRequest->getIP();
48 * Checks if an IP is a trusted proxy providor.
49 * Useful to tell if X-Fowarded-For data is possibly bogus.
50 * Squid cache servers for the site are whitelisted.
55 function wfIsTrustedProxy( $ip ) {
56 $trusted = wfIsConfiguredProxy( $ip );
57 wfRunHooks( 'IsTrustedProxy', array( &$ip, &$trusted ) );
62 * Checks if an IP matches a proxy we've configured.
66 function wfIsConfiguredProxy( $ip ) {
67 global $wgSquidServers, $wgSquidServersNoPurge;
68 $trusted = in_array( $ip, $wgSquidServers ) ||
69 in_array( $ip, $wgSquidServersNoPurge );
74 * Forks processes to scan the originating IP for an open proxy server
75 * MemCached can be used to skip IPs that have already been scanned
77 function wfProxyCheck() {
78 global $wgBlockOpenProxies, $wgProxyPorts, $wgProxyScriptPath;
79 global $wgMemc, $wgProxyMemcExpiry, $wgRequest;
82 if ( !$wgBlockOpenProxies ) {
86 $ip = $wgRequest->getIP();
89 $mcKey = wfMemcKey( 'proxy', 'ip', $ip );
90 $mcValue = $wgMemc->get( $mcKey );
91 $skip = (bool)$mcValue;
95 $title = SpecialPage
::getTitleFor( 'Blockme' );
96 $iphash = md5( $ip . $wgProxyKey );
97 $url = wfExpandUrl( $title->getFullURL( 'ip='.$iphash ), PROTO_HTTP
);
99 foreach ( $wgProxyPorts as $port ) {
100 $params = implode( ' ', array(
101 escapeshellarg( $wgProxyScriptPath ),
102 escapeshellarg( $ip ),
103 escapeshellarg( $port ),
104 escapeshellarg( $url )
106 exec( "php $params >" . wfGetNull() . " 2>&1 &" );
109 $wgMemc->set( $mcKey, 1, $wgProxyMemcExpiry );