Python Repr

[Solved] Python Repr | Actionscript - Code Explorer | yomemimo.com
Question : python str and repr

Answered by : cooperative-crayfish-tdlcw6kafrqu

3 def is_sql_injection(request):
4 pattern = re.compile(r".*(union)|(select).*")
5 name_to_test = request.GET['name']
6 if re.search(pattern, name_to_test):
7 return True
8 return False

Source : https://blog.sonarsource.com/10-unknown-security-pitfalls-for-python | Last Update : Sat, 12 Feb 22

Answers related to python repr

Code Explorer Popular Question For Actionscript