Skip to content

Commit f0d353f

Browse files
authored
Merge pull request #23 from GitHubSecurityLab/refactor_github_folder
Refactor github folder to ghsl
2 parents ff006d0 + 919a633 commit f0d353f

File tree

62 files changed

+45
-45
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+45
-45
lines changed
File renamed without changes.
File renamed without changes.
File renamed without changes.

csharp/src/security/CWE-760/HardcodedSalt.ql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ import csharp
1414
private import semmle.code.csharp.frameworks.Moq
1515
private import semmle.code.csharp.dataflow.DataFlow::DataFlow::PathGraph
1616
// import semmle.code.csharp.frameworks.system.security.Cryptography
17-
private import github.Hardcoded
18-
private import github.Cryptography
17+
private import ghsl.Hardcoded
18+
private import ghsl.Cryptography
1919

2020
module HardcodedSalt {
2121
abstract class Source extends DataFlow::ExprNode { }

csharp/src/security/CWE-798/HardcodedCredentialsSymmetricSecurityKey.ql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
import csharp
1616
private import DataFlow::PathGraph
17-
private import github.HardcodedCredentials
17+
private import ghsl.HardcodedCredentials
1818

1919
from DataFlow::PathNode source, DataFlow::PathNode sink, LiteralToSecurityKeyConfig config
2020
where config.hasFlowPath(source, sink)
File renamed without changes.
File renamed without changes.

go/src/audit/CWE-089/SqlInjectionAudit.ql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
import go
1515
import semmle.go.security.SqlInjection
1616
import DataFlow::PathGraph
17-
import github.Utils
17+
import ghsl.Utils
1818

1919
/**
2020
* A taint-tracking configuration for detecting SQL injection vulnerabilities.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
import go
2-
import github.Utils
2+
import ghsl.Utils
33

44
query predicate dynamicStrings(DataFlow::ExprNode node) { node instanceof DynamicStrings }

0 commit comments

Comments
 (0)