[Date updated: 2024/01/25(Thu) 02:02:43]
 "YOu look like a robot"
 i get this message when trying to post on heyuri
 what is it? my message? my ip address?
 
 post SS of error
  
  https://4-ch.net/img/src/1706060080787.png
   
   This is the code that triggers it in koko.php:
    
    	if(!$_SERVER['HTTP_REFERER']
    	|| !$_SERVER['HTTP_USER_AGENT']
    	|| preg_match("/^(curl|wget)/i", $_SERVER['HTTP_USER_AGENT']) ){
    		error('You look like a robot.', $dest);
    	}
    
    I don't understand PHP, but seems to be something with your browser.
    Perhaps if you are faking user agent or referer?
    
    My user agent and referer both look fine. From the looks of it,
      the PHP code has broken syntax since my user agent includes / and ( )
      which are both symbols in the trigger code.
      

Return