상세 가이드
GitHub Actions 연동을 위한 상세 가이드
Last updated
GitHub Actions 연동을 위한 상세 가이드
Last updated
# Unsafe Crypto Algorithm + Hardcoded key
from Crypto.Cipher import DES, AES
cipher = DES.new("ENCRYPTION_KEY")# Unsafe Flask RCE
from flask import Flask, request
app = Flask(__name__)
@app.route('/exec')
def unsafe_exec():
code = request.args.get('code')
eval(code)
return "Dangerous Code executed"git add .
git commit -m "add tests"
git push origin pr-test