Skip to content

Commit e1cb0b9

Browse files
committed
Replace github/codeql with top databases for querying
We initially defined the default database to download as one from the `github/codeql` repo as it was convenient. However, this repo doesn't have a lot of vulnerabilities to discover. Let's use repos that are in our MRVA top 10 list to allow users to write more interesting queries.
1 parent 6f0324e commit e1cb0b9

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

extensions/ql-vscode/src/skeleton-query-wizard.ts

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,14 @@ export class SkeletonQueryWizard {
2222
private storagePath: string | undefined;
2323

2424
QUERY_LANGUAGE_TO_DATABASE_REPO: QueryLanguagesToDatabaseMap = {
25-
csharp: "github/codeql",
26-
python: "github/codeql",
27-
ruby: "github/codeql",
28-
javascript: "github/codeql",
29-
go: "github/codeql",
25+
cpp: "protocolbuffers/protobuf",
26+
csharp: "dotnet/efcore",
27+
go: "evanw/esbuild",
28+
java: "google/guava",
29+
javascript: "facebook/react",
30+
python: "pallets/flask",
31+
ruby: "rails/rails",
32+
swift: "Alamofire/Alamofire",
3033
};
3134

3235
constructor(

0 commit comments

Comments
 (0)