python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
SonarQube Sql Injection problem in Android
when I run SonarQube testing tool on my android project, it gives Sql Injection Error, I used below query in my code, how can I solve this problem, and get rid of this SonarQube error?
Str...
Diego
Votes: 0
Answers: 0
Is this vulnerable to sql injection or not?
While looking for a solution to my problem, i found this topic:
Rails and Arel and Scopes - simplify multiple OR's on the same table/field match
One of the answers is this:
fields = ["name&qu...
user3494179
Votes: 0
Answers: 1
Is using quoted_name safe way for parametrizing table name and fields in python's SQL Alchemy?
I spent a lot of time looking for solution to parametrize table names and field names in SQL Alchemy plain textual SQL queries for SQL Server. I stumbled upon several stackoverflow questions and other...
M.wol
Votes: 0
Answers: 1
Is double escaping in postgres enough to prevent SQL injections/attacks? (Alternative to using parameters)
Is the following function immune to SQL attacks? (I'm using Node.js and 'pg').
s is any string that a user provides (it can have malicious intent).
import pg from 'pg' // import postgres nodejs
var r...
Lucas Mumbo
Votes: 0
Answers: 0