in reply to Re: Changing the uid
in thread Changing the uid

umm ... that doesn't work. I changed $EUID, $UID, $<, and $>. None of them worked.

Replies are listed 'Best First'.
Re: Re: Re: Changing the uid
by Anonymous Monk on Apr 03, 2001 at 22:45 UTC
    Were you root when you did it?
      Yes I was root.
        What happens when you run this as root:
        use English; system('id'); $EGID=500; $GID=500; $EUID=500; $UID=500; system('id');
        (replacing 500 with an appropriate uid/gid).