We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d2a0497 commit c79a0d0Copy full SHA for c79a0d0
index.js
@@ -3,13 +3,6 @@ const Sequelize = require('sequelize');
3
4
var app = express();
5
6
-app.post("/xss", function (req, res) {
7
- sequelize.query(
8
- "SELECT * FROM Products WHERE name LIKE " + req.body.username2
9
- );
10
- res.write(req.body.xss)
11
-});
12
-
13
const sequelize = new Sequelize('name', process.env.SECRET2, null, {
14
host: 'localhost',
15
dialect: 'postgres',
0 commit comments