Server-Side Request Forgery Tests
Explore Pynt's documentation on security tests for server-side request forgery! Learn how Pynt protects your APIs against this critical vulnerability.
Introduction
What are the common mistakes made by developers?
import requests
from flask import Flask, request
app = Flask(__name__)
@app.route('/')
def index():
url = request.args.get('url')
response = requests.get(url)
return response.text
if __name__ == '__main__':
app.run(debug=True)How can I fix SSRF issues?
Test cases in this category
Test case
OWASP
CWE
Last updated