Your user agent is:


CCBot/2.0


Getting a user's user agent string is incredibly simple to achieve using PHP.


PHP code

echo $_SERVER['HTTP_USER_AGENT'];


You can also set the user agent string using PHP...

PHP code

ini_set('user_agent', 'desired_user_agent_string');


Setting the user-agent can be useful when scraping content from other websites. I'm sure there are other uses for it too - as a matter of fact I use this with RSS2twitter, as my website blocks anything with an empty user-agent, and it won't work otherwise.