Installed mod_security. Now FrontPage doesn't work

I added mod_security to Apache and now no one can publish via FrontPage extensions. They get the following error:

406 Not Acceptable
Not Acceptable An appropriate representation of the requested resource /_vti_bin/_vti_aut/author.exe could not be found on this server

I haven't been able to figure out what in the configuration is causing the problem. If anyone can give me any suggestions on how to fix this it would be greatly appreciated. Here is what was added to my Apache configuration file.

<IfModule mod_security.c>
SecFilterEngine On
SecFilterCheckURLEncoding On
SecFilterForceByteRange 0 255
SecAuditEngine RelevantOnly
SecAuditLog logs/audit_log
SecFilterDebugLog logs/modsec_debug_log
SecFilterDebugLevel 0
SecFilterScanPOST On
SecFilterDefaultAction "deny,log,status:406"

SecFilter /boot
# SecFilter /bin
SecFilter /dev
SecFilter /etc
SecFilter /initrd
SecFilter /lib
SecFilter /lost+found
SecFilter /misc
SecFilter /mnt
SecFilter /proc
SecFilter /root
SecFilter /sbin
SecFilter /scripts
SecFilter /tmp
# SecFilter /usr
SecFilter /usr/local/apache
SecFilter /usr/local/cpanel
SecFilter /usr/local/mysql
SecFilter /var

SecFilter /boot/
# SecFilter /bin/
SecFilter /dev/
SecFilter /etc/
SecFilter /initrd/
SecFilter /lib/
SecFilter /lost+found/
SecFilter /misc/
SecFilter /mnt/
SecFilter /proc/
SecFilter /root/
SecFilter /sbin/
SecFilter /scripts/
SecFilter /tmp/
# SecFilter /usr/
SecFilter /usr/local/apache/
SecFilter /usr/local/cpanel/
SecFilter /usr/local/mysql/
SecFilter /var/

SecFilter /bin/cc
SecFilter /bin/gcc

SecFilter "\.\./"
SecFilter "<[[Installed mod_security. Now FrontPage doesn't workpace:]]*script"
SecFilter "<(.|\n)+>"
SecFilter "delete[[Installed mod_security. Now FrontPage doesn't workpace:]]+from"
SecFilter "insert[[Installed mod_security. Now FrontPage doesn't workpace:]]+into"
SecFilter "select.+from"

#SecFilterSelective "HTTP_USER_AGENT|HTTP_HOST" "^$"

</IfModule>

 

 

 

 

Top