app.post("/upload",(req,res)=>{res.sendFile(req.params.filename)// options passed, but no root set
res.sendFile(req.params.filename,{maxAge:0})// options passed, but no root set, and a callback is set
res.sendFile(req.params.filename,{maxAge:0},(err)=>console.log(err))})
Compliant Code Examples
app.post("/upload",(req,res)=>{res.sendFile("foo")constoptions={maxAge:0,root:path.join(__dirname,"upload")}// options with root set
res.sendFile(req.params.filename,options)res.sendFile(req.params.filename,{maxAge:0,root:path.join(__dirname,"upload")})// options with root set (and a callback is set)
res.sendFile(req.params.filename,options,(err)=>console.log(err))res.sendFile(req.params.filename,{maxAge:0,root:path.join(__dirname,"upload")},(err)=>console.log(err))})
シームレスな統合。 Datadog Code Security をお試しください
Datadog Code Security
このルールを試し、Datadog Code Security でコードを解析する
このルールの使用方法
1
2
rulesets:- javascript-express # Rules to enforce JavaScript express.