Note: This is a code-trolling question. Please do not take the question and/or answers seriously. More information here.
The point of this puzzle is to learn how a malicious code can be hidden and discovered in a program.
A person is asking the question:
Plz give me some code that how can I search a file may be in Present Directory or in its Sub-Directories.
(This is a variant of a real question I've seen posted on one site.)
To be more specific: The OP wants you to write a program that accepts a string and a directory. It will traverse all files in the directory and recursively all its subdirectories. For each file it will check if the file contains the string, and if it does, will print the name of the file. (The program can have additional features as long as they are relevant to the main goal, if you wish.) There are no requirements on the traversal order.
However, the main task of this puzzle is to hide into the program additional code that will make a fool of the person that asks for the program in the eyes of its users/colleagues/boss/etc. For example, print a humiliating text at some point, such as: The author of the program doesn't know how to program, should return his/her diploma and get fired. Be creative.
Rules:
- The solution must not be harmful (except making fool of the OP, of course). It must not do any irreversible damage to end users (no stuff like
rm -rf
)! Such solutions will be disqualified. - The trolling stuff should be hidden so that the OP won't find it easily.
- It shouldn't be obvious that you're trolling the OP. The code should look genuine.
- The solution must come with a proper explanation how it trolls the OP so that everybody can learn something from your solution. The explanation should be hidden in a hidden-until-you-click text (spoilers). When judging, try to discover the trolling without looking at the explanation and vote for those that are difficult to discover.
- Also try to hide the trolling from the OP if (s)he tries to run the code a few times. Perhaps start trolling only after a particular date, or under some conditions that a sloppy programmer won't test. Be creative and don't forget to explain the trick.
- Don't just create a script using existing tools such as
grep
orfind
. Write the program from scratch. Better avoid libraries and prefer low-level calls - this will make the code more complex and gives you the opportunity to hide the evil stuff there.
This is a popularity-contest. Please judge according the above points.
Note: I understand there are perhaps too many code-trolling questions now. But before close-voting, please consider: Hopefully this question is a bit novel in this class of problems. It's the start/end of a year, people want to have some fun (after all, this is what codegolf is about anyway), a few questions like this do no harm to the site, and the code-trolling phenomenon is likely fade away in a few days anyway.