1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
| import os import re import yaml from flask import Flask, request, jsonify, render_template
app = Flask(__name__, template_folder='templates')
UPLOAD_FOLDER = 'uploads' os.makedirs(UPLOAD_FOLDER, exist_ok=True) def waf(input_str):
blacklist_terms = {'apply', 'subprocess','os','map', 'system', 'popen', 'eval', 'sleep', 'setstate', 'command','static','templates','session','&','globals','builtins' 'run', 'ntimeit', 'bash', 'zsh', 'sh', 'curl', 'nc', 'env', 'before_request', 'after_request', 'error_handler', 'add_url_rule','teardown_request','teardown_appcontext','\\u','\\x','+','base64','join'}
input_str_lower = str(input_str).lower()
for term in blacklist_terms: if term in input_str_lower: print(f"Found blacklisted term: {term}") return True return False
file_pattern = re.compile(r'.*\.yaml$')
def is_yaml_file(filename): return bool(file_pattern.match(filename))
@app.route('/') def index(): return ''' Welcome to DASCTF X 0psu3 <br> Here is the challenge <a href="/upload">Upload file</a> <br> Enjoy it <a href="/Yam1">Yam1</a> '''
@app.route('/upload', methods=['GET', 'POST']) def upload_file(): if request.method == 'POST': try: uploaded_file = request.files['file']
if uploaded_file and is_yaml_file(uploaded_file.filename): file_path = os.path.join(UPLOAD_FOLDER, uploaded_file.filename) uploaded_file.save(file_path)
return jsonify({"message": "uploaded successfully"}), 200 else: return jsonify({"error": "Just YAML file"}), 400
except Exception as e: return jsonify({"error": str(e)}), 500
return render_template('upload.html')
@app.route('/Yam1', methods=['GET', 'POST']) def Yam1(): filename = request.args.get('filename','') if filename: with open(f'uploads/{filename}.yaml', 'rb') as f: file_content = f.read() if not waf(file_content): test = yaml.load(file_content) print(test) return 'welcome'
if __name__ == '__main__': app.run()
|