The context is complex to explain, but tl;dr I have to deal with the production system where I cannot install libraries and one of my libraries expects illegal keyword arguments as the input.
def hack_me(**kwargs):
if kwargs.get("hack:/me") is not None:
print("Hacked!")
The objective is that my function above, without modifying it, prints Hacked!.