Command line arguments can be dangerous just like any other user input. They should never be used without being first validated and sanitized.
Remember also that any user can retrieve the list of processes running on a system, which makes the arguments provided to them visible. Thus passing sensitive information via command line arguments should be considered as insecure.
This rule raises an issue when on every program entry points (``main`` methods) when command line arguments are used. The goal is to guide security code reviews.