Just use a quick 1 liner like this to get some info on what IP has been trying to POST the most and to what script.

grep POST /home/httpd/vhosts/*/statistics/logs/access_log | awk '{ print $7 }' | sort | uniq -c | sort -nr

This can of course be changed to point to your access_logs.