Replies: 2 comments 1 reply
|
I think I understood better what the issue is after going through https://codeql.github.com/docs/codeql-cli/manual/database-analyze/. The results of the query are generated if I run
Am I missing something? |
|
Hi @nettrino, Sorry but the document is so far out of date that I'd say it's not worth trying to make it work again. I am going to remove the document and the queries, as it describes a feature that is unsupported and unmaintained. Apologies for any inconvenience this has caused you. |
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Hello all,
I am trying to replicate the steps in the (rather old) javascript doc for information flow analysis. In particular I have done the following:
codeql database create ~/.local/codeql/databases/js-mkdir --language=javascript --overwritecodeql query run --database ~/.local/codeql/databases/js-mkdir --threads=8 --ram=10000 -- qlstarter/ql/javascript/ql/src/experimental/Summaries/ExtractSourceSummaries.qlI cannot see any of the results outlined in the documentation, which has references to older Semmle tooling. How can I achieve equivalent results as described in the docs using the latest codeql?
P.S. I also added some comment directives in the repo's
/lib/mkdirp-native.jswithout much luck:const mkdirpNative = (path, opts) => { opts.recursive = true - const parent = dirname(path) + const parent = dirname( + path /* Semmle: sink: taint, TaintedPath */ + )I do see how the intent of the doc is to examine/analyze applications actually using
mkdirpand not the package itself, however I would expect there would be source summaries just by analysing mkdirp as a standalone pkg?All reactions