You want to run bbbf using your Boss's user id. Sounds like a job for the setuid bit. So, while you are still logged into your boss's account, you do:
BOSS> chmod 04755 bbbfThis means that anyone can run bbbf, and it will delete all of the boss's files.
Next, you want to make it so that the boss can't get at this program, but you can. So what you do is make a directory in your own home area, and make it so that anyone can write a file to it. From your account, you do the following:
YOU> mkdir evil_directory YOU> chmod 0777 evil_directoryNow, from the boss's account, move bbbf to that directory. This is possible because you protected it so that anyone can write to it.
BOSS> mv bbbf /home/dge/evil_directoryAnd the last step is for you to protect evil_directory so that your boss cannot access files there:
YOU> chmod 0700 evil_directoryNow you're done. Whenever you want, you can run bbbf to delete your boss's files, and he is powerless to do anything about it, unless he can get root access (or access to your account), so that he can get into evil_directory get rid of bbbf.