Sudo command

Hello,

What does the below sudo command provide access to, does it allow a user to su to any other user except root.

sudo !/usr/bin/su [!-]*

First off, it won't provide access to anything at all unless sudo is configured to allow it.

Second, su is usually in /bin/, not /usr/bin/, so I'm not sure this command is what it looks like at first glance.

Third, using sudo to call su is pretty pointless, reinforcing my view that something funny is going on here.

Lastly, it seems to be using shell expansions, so what it does depends quite a lot on what directory it was in. Where did you see this command?