COMMAND
netstation.navio-comm.rte
SYSTEMS AFFECTED
AIX running netstation.navio-comm.rte 1.1.0.1
PROBLEM
Ryan McRonald found following. You might noticed that your /tmp
directory had become NFS exported and world read/writeable!! Ryan
traced this to one of the configuration scripts that is included
in AIX's netstation.navio-com.rte 1.1.0.1 used for the Navio NC
browser. From /usr/netstation/bin/Xnav:
1) Magic number is munged ... pet peeve of mine:
+1 # @(#)93 1.3 src/nav/aix/Xnav.cpp, navio, 41navio110
+2 #!/bin/ksh
+3 #
...
2) This part is somewhat problematic:
...
+98 grep "/tmp" /etc/exports > /dev/null 2>&1
+99 if [ $? -ne 0 ]; then
+100 echo "/tmp" >> /etc/exports
+101 /usr/sbin/exportfs -a
+102 fi
...
SOLUTION
Do you have netstation.navio.comm-rte installed?
# lslpp -l netstation.navio-comm-rte
Check if /tmp is exported with:
# exportfs
If /tmp is exported run:
# /usr/sbin/rmnfsexp -d /tmp -B
This emphasizes the importance of running a regular "sanity"
security audits such as satan or ISS.