https://bugzilla.wikimedia.org/show_bug.cgi?id=16103

Tim Starling <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
                 CC|                            |[email protected]
         Resolution|---                         |FIXED

--- Comment #8 from Tim Starling <[email protected]> ---
Presumably it was this:

if ( $wasPosted
    && isset( $_REQUEST['wpCreateaccount'] )
    && isset( $_REQUEST['wpName'] )
    && ( preg_match( '/Curps|~/', $_REQUEST['wpName'] ) || isset(
$_SERVER['HTTP_EXPECT'] ) )
    ) {

    # 'Curps' vandal is registering lots of accounts with defamatory stuff
about Curps
    # random-name vandal is sending 'Expect: 100-continue' with posts

    $headers = var_export( getallheaders(), true );
    wfErrorLog( $headers, 'udp://10.0.5.8:8420/vandalism' );

    header( 'HTTP/1.0 500 Internal Server Error' );
    wfErrorLog( "STOPPED HIT WITH ERROR:\n" . urlencode( $_POST['wpName'] ) .
"\n", 'udp://10.0.5.8:8420/vandalism' );
    die( 'Error' );
}

It was in checkers.php, which was removed in March 2013.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
_______________________________________________
Wikibugs-l mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l

Reply via email to