If the proxy mimics a normal browser, you would need to block all IP addresses that they crawl from. You should be able to determine the range of IP addresses by visiting several sites that display the visitor's IP address, and putting those URLs into the proxy. You can block these IP addresses using the following line (added to the same place as the BrowserMatch directives above):
Code:
SetEnvIf Remote_Addr "^1\.2\.3\." bad_browser
This example will block every IP address starting with 1.2.3.x.