python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Why is PyMySQL not vulnerable to SQL injection attacks?
I am new to PyMySQL and just tried to execute a query:
c.execute('''INSERT INTO mysql_test1 (
data,
duration,
...

felixjrd
Votes: 0
Answers: 1
To prevent SQL-injection in user-defined formulae, is character whitelisting enough?
In my SaaS app, I want to give customers user-defined arithmetic expression formulae, with plus minus multiple and divide, and if else
For example, the customer might enter a formula like
CASE
WHEN sa...
Max
Votes: 0
Answers: 1
Python : Safe way to insert multiple values to psql table
So to insert multiple values to my psql table I use the following code:
sql_query = "INSERT INTO %s(%s) VALUES(%%s,%%s,%%s)" % (table_name, my_columns)
cursor = connection.cursor()
cursor.ex...

foxel
Votes: 0
Answers: 0
Should I care about sql injection after user has been authenticated?
Does make sense to check on malicious SQL input from an authenticated user?

Chi
Votes: 0
Answers: 2