what you don't know can hurt you
Home Files News &[SERVICES_TAB]About Contact Add New

mapr Information Disclosure

mapr Information Disclosure
Posted Mar 31, 2017
Authored by Mark Felder

mapr suffers from an information disclosure vulnerability.

tags | exploit, info disclosure
SHA-256 | 72154e7425f8731073fc55262d90eaa471479bcf62a2e3abdbd88d8525430209

mapr Information Disclosure

Change Mirror Download
Hello,

The mapr web frontend component creates an information disclosure
vulnerability. During the setup of mapr the configure.sh script calls a
function ConfigureWSRole:

function ConfigureWSRole() {
if [ $clientOnly -eq 0 -a $dontChangeSecurityPermissionsOn -eq 0 ];
then
ConfigureRunUserForWS
fi

This calls ConfigureRunUserForWS from configure-common.sh:

function ConfigureRunUserForWS() {
local val=`getent group shadow 2>/dev/null`
if [ "$?" != "0" -o "$val" = "" ]; then
# Create a group named shadow
groupadd shadow >> $logFile 2>&1
fi
# Add CURR_USER to the group wheel
if [ -f /etc/SuSE-release ]; then
# Add CURR_USER to the group wheel for SUSE
usermod -A shadow $MAPR_USER >> $logFile 2>&1
STATUS=$?
#
# The '-A' option has been removed from SuSE 12
#
if [ $STATUS -ne 0 ]; then
usermod -a -G shadow $MAPR_USER >> $logFile 2>&1
fi
else
usermod -a -G $MAPR_GROUP,shadow $MAPR_USER >> $logFile 2>&1
fi
# Change group-owner of /etc/shadow
chgrp shadow /etc/shadow >> $logFile 2>&1
# Allow read permissions for user shadow
chmod ug+r /etc/shadow >> $logFile 2>&1
}

This results in a shadow file that is now readable to the application:

# ls -la /etc/shadow
-r--r-----. 1 root shadow 657 Mar 30 16:09 /etc/shadow
# grep shadow /etc/group
shadow:x:1000:mapr

The option to disable this codepath, -no-auto-permission-update, is not
recommended by Mapr and comes with a warning in the script as it will
break the webserver's ability to authenticate the local mapr user, which
is used to administer the cluster:

echo " -no-auto-permission-update - do not update the system
security permissions automatically"
echo " Warn: Features like WebServer
might not work properly"
echo " default: disabled"

The website docs[1] casually describe the option, "Pass this option to
prevent MapR from silently altering permissions in /etc/shadow."

These files are part of the mapr-core-internal package:

# rpm -fq /opt/mapr/server/configure.sh
mapr-core-internal-5.2.0.39122.GA-1.x86_64
# rpm -fq /opt/mapr/server/configure-common.sh
mapr-core-internal-5.2.0.39122.GA-1.x86_64


Thanks

[1] http://maprdocs.mapr.com/home/ReferenceGuide/configure.sh.html

--
Mark Felder
feld@feld.me


Login or Register to add favorites

File Archive:

April 2024

  • Su
  • Mo
  • Tu
  • We
  • Th
  • Fr
  • Sa
  • 1
    Apr 1st
    10 Files
  • 2
    Apr 2nd
    26 Files
  • 3
    Apr 3rd
    40 Files
  • 4
    Apr 4th
    6 Files
  • 5
    Apr 5th
    26 Files
  • 6
    Apr 6th
    0 Files
  • 7
    Apr 7th
    0 Files
  • 8
    Apr 8th
    22 Files
  • 9
    Apr 9th
    14 Files
  • 10
    Apr 10th
    10 Files
  • 11
    Apr 11th
    13 Files
  • 12
    Apr 12th
    14 Files
  • 13
    Apr 13th
    0 Files
  • 14
    Apr 14th
    0 Files
  • 15
    Apr 15th
    30 Files
  • 16
    Apr 16th
    10 Files
  • 17
    Apr 17th
    22 Files
  • 18
    Apr 18th
    0 Files
  • 19
    Apr 19th
    0 Files
  • 20
    Apr 20th
    0 Files
  • 21
    Apr 21st
    0 Files
  • 22
    Apr 22nd
    0 Files
  • 23
    Apr 23rd
    0 Files
  • 24
    Apr 24th
    0 Files
  • 25
    Apr 25th
    0 Files
  • 26
    Apr 26th
    0 Files
  • 27
    Apr 27th
    0 Files
  • 28
    Apr 28th
    0 Files
  • 29
    Apr 29th
    0 Files
  • 30
    Apr 30th
    0 Files

Top Authors In Last 30 Days

File Tags

Systems

packet storm

© 2022 Packet Storm. All rights reserved.

Services
Security Services
Hosting By
Rokasec
close