from flask import Flask, send_file

app = Flask(__name__)

@app.route('/<path:path>')
def test(path):
    return send_file('passwd')

if __name__ == '__main__':
    app.run(host='0.0.0.0', port=5000)
