mysql - Prevent SQL Injection in JavaScriptNode.js - Stack Overflow

I am using Node.js to create a Discord bot. Some of my code looks as follows:var info = {userid: messag

I am using Node.js to create a Discord bot. Some of my code looks as follows:

var info = {
  userid: message.author.id
}

connection.query("SELECT * FROM table WHERE userid = '" + message.author.id + "'", info, function(error) {
  if (error) throw error;
});

People have said that the way I put in message.author.id is not a secure way. How can I do this? An example?

I am using Node.js to create a Discord bot. Some of my code looks as follows:

var info = {
  userid: message.author.id
}

connection.query("SELECT * FROM table WHERE userid = '" + message.author.id + "'", info, function(error) {
  if (error) throw error;
});

People have said that the way I put in message.author.id is not a secure way. How can I do this? An example?

Share Improve this question edited May 5, 2020 at 21:48 Mike 14.6k32 gold badges120 silver badges177 bronze badges asked Apr 27, 2017 at 12:22 user7442152user7442152
Add a ment  | 

3 Answers 3

Reset to default 9

The best way to is to use prepared statements or queries (link to documentation for NPM mysql module: https://github./mysqljs/mysql#preparing-queries)

var sql = "SELECT * FROM table WHERE userid = ?";
var inserts = [message.author.id];
sql = mysql.format(sql, inserts);

If prepared statements is not an option (I have no idea why it wouldn't be), a poor man's way to prevent SQL injection is to escape all user-supplied input as described here: https://www.owasp/index.php/SQL_Injection_Prevention_Cheat_Sheet#MySQL_Escaping

Use prepared queries;

var sql = "SELECT * FROM table WHERE userid = ?";
var inserts = [message.author.id];
sql = mysql.format(sql, inserts);

You can find more information here.

Here is the documentantion on how to properly escape any user provided data to prevent SQL injections: https://github./mysqljs/mysql#escaping-query-values . mysql.escape(userdata) should be enough.

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743581982a4474389.html

相关推荐

  • mysql - Prevent SQL Injection in JavaScriptNode.js - Stack Overflow

    I am using Node.js to create a Discord bot. Some of my code looks as follows:var info = {userid: messag

    1天前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信