Difference between revisions of "HIDS 60027"

From Atomicorp Wiki
Jump to: navigation, search
m (Solutions)
(Solutions)
Line 36: Line 36:
  
 
== Solutions ==
 
== Solutions ==
 +
 +
=== paxtest ===
  
 
Please see this article if you see this event for any '''paxtest''' events:
 
Please see this article if you see this event for any '''paxtest''' events:
  
 
https://www.atomicorp.com/wiki/index.php/ASL_error_messages#grsec:_denied_RWX_mprotect
 
https://www.atomicorp.com/wiki/index.php/ASL_error_messages#grsec:_denied_RWX_mprotect
 +
 +
=== PHP ===
 +
 +
Newer versions of PHP, starting with PHP 7, may need to open this hole in your system.  The instructions below are generic and should work for most platforms, however if you have a third party apache install your commands may be different to start apache and shut down php-fpm, please contact your apache vendor assistance if the commands below do not work stop stop and start apache and php-fpm.
 +
 +
Step 1, Stop apache)
 +
 +
service httpd stop
 +
 +
Step 2, Stop php-fpm)
 +
 +
killall -9 php-fpm
 +
 +
Step 3, Set the flag on PHP to allow this hole to be opened on your system)
 +
 +
paxctl -c -m /opt/cpanel/ea-php70/root/usr/sbin/php-fpm
 +
 +
In the example above, the path to php-fpm is "/opt/cpanel/ea-php70/root/usr/sbin/php-fpm", this may be different on your system.  Please check the event log for the correct path to php-fpm on your system.
 +
 +
Step 4, restart apache)
 +
 +
service httpd start
 +
 +
=== Generic ===
  
 
Please see these article for '''solutions if your application requires to be run this way, and therefore has the mmap weakness''':
 
Please see these article for '''solutions if your application requires to be run this way, and therefore has the mmap weakness''':
  
 
https://www.atomicorp.com/wiki/index.php/ASL_error_messages#denied_RWX_mmap_of
 
https://www.atomicorp.com/wiki/index.php/ASL_error_messages#denied_RWX_mmap_of
 +
 +
=== Java ===
  
 
Note: '''Java''' may require you to open other holes in your system. If you are attempting to allow Java to do this, please see this article:
 
Note: '''Java''' may require you to open other holes in your system. If you are attempting to allow Java to do this, please see this article:

Revision as of 12:02, 2 June 2017

Rule 60027
Status Active
Alert Message Denied a RWX mmap event. An application just attempted to use the mprotect function to bypass memory protection functions in the kernel.

Contents

Description

This means this program is:

1) Being attacked, and the attack was stopped

2) The program is attempting to perform a dangerous operation, that could cause your system to be compromised.

In both cases, this means the ASL kernel is preventing this program from doing this and the action was stopped. Many, and perhaps even most, computer insecurities are due to errors in programs that make it possible to alter their function, effectively allowing them to be "rewritten" while running. Specifically, this protection in the ASL kernel guarantees that this can not occur, by enforcing that memory pages will not become both writable and executable, and thus fertile ground for simple widely exploited code injection attacks. Without this restriction, a three step exploit is possible: Inject code, ret2libc::ret2mprotect(), execute code.

This protection may also be triggered by malicious applications. Some malicious applications are known to try to use this method to modify their code in real time, to try to evade malware in memory scanners.

You can read more about the technical details of this kernel protection capability in this article:

http://pax.grsecurity.net/docs/mprotect.txt

You should investigate this event as it may be part of a broader attack. In all cases, any application doing this is doing something dangerous on your system, and is exposing your system to potential compromise.

Log examples

Jun 27 20:32:38 host kernel: grsec: From 1.2.3.4: denied RWX mmap of <anonymous mapping> by /usr/sbin/r1soft/bin/2-6/cdp-2-6[cdp-2-6:6653] uid/euid:0/0 gid/egid:0/0, parent /sbin/init[init:1] uid/euid:0/0 gid/egid:0/0

May 5 09:24:02 host kernel: grsec: From 1.2.3.4: denied RWX mprotect of /lib64/ld-2.12.so by /usr/local/cpanel/whostmgr/docroot/cgi/addon_installatron.cgi[addon_installat:3705] uid/euid:0/0 gid/egid:0/0, parent /usr/local/cpanel/cpsrvd-ssl[cpsrvd-ssl:3642] uid/euid:0/0 gid/egid:0/0

May 1 01:01:01 host kernel: grsec: From 1.2.3.4: denied RWX mprotect of /lib64/ld-2.5.so by /usr/local/cpanel/3rdparty/php/53/bin/php-cgi[php-cgi:25915] uid/euid:32003/32003 gid/egid:32003/32003, parent /usr/local/cpanel/cpsrvd-ssl[cpsrvd-ssl:25913] uid/euid:32003/32003 gid/egid:32003/32003

Troubleshooting

Solutions

paxtest

Please see this article if you see this event for any paxtest events:

https://www.atomicorp.com/wiki/index.php/ASL_error_messages#grsec:_denied_RWX_mprotect

PHP

Newer versions of PHP, starting with PHP 7, may need to open this hole in your system. The instructions below are generic and should work for most platforms, however if you have a third party apache install your commands may be different to start apache and shut down php-fpm, please contact your apache vendor assistance if the commands below do not work stop stop and start apache and php-fpm.

Step 1, Stop apache)

service httpd stop

Step 2, Stop php-fpm)

killall -9 php-fpm

Step 3, Set the flag on PHP to allow this hole to be opened on your system)

paxctl -c -m /opt/cpanel/ea-php70/root/usr/sbin/php-fpm

In the example above, the path to php-fpm is "/opt/cpanel/ea-php70/root/usr/sbin/php-fpm", this may be different on your system. Please check the event log for the correct path to php-fpm on your system.

Step 4, restart apache)

service httpd start

Generic

Please see these article for solutions if your application requires to be run this way, and therefore has the mmap weakness:

https://www.atomicorp.com/wiki/index.php/ASL_error_messages#denied_RWX_mmap_of

Java

Note: Java may require you to open other holes in your system. If you are attempting to allow Java to do this, please see this article:

https://www.atomicorp.com/wiki/index.php/ASL_error_messages#Java_is_stopped_by_PAX

False Positives

Please report this to support if you know this is not an attack.

Additional Information

Similar Rules

HIDS_61027

Knowledge Base Articles

None.

External Articles

https://en.wikipedia.org/wiki/PaX#Restricted_mprotect.28.29

Personal tools