Skip to content

Commit aa3000d

Browse files
authored
Merge pull request #20637 from github/henrymercer/update-expected-output
Actions: Update `SecretExfiltration` output for typo fix
2 parents 836e395 + b737bcc commit aa3000d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

actions/ql/test/query-tests/Security/CWE-200/SecretExfiltration.expected

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ nodes
33
| .github/workflows/test1.yml:15:11:16:75 | github.event.pull_request.title | semmle.label | github.event.pull_request.title |
44
subpaths
55
#select
6-
| .github/workflows/test1.yml:15:11:16:75 | github.event.pull_request.title | .github/workflows/test1.yml:15:11:16:75 | github.event.pull_request.title | .github/workflows/test1.yml:15:11:16:75 | github.event.pull_request.title | Potential secret exfiltration in $@, which may be be leaked to an attacker-controlled resource. | .github/workflows/test1.yml:15:11:16:75 | github.event.pull_request.title | ${{ github.event.pull_request.title }} |
6+
| .github/workflows/test1.yml:15:11:16:75 | github.event.pull_request.title | .github/workflows/test1.yml:15:11:16:75 | github.event.pull_request.title | .github/workflows/test1.yml:15:11:16:75 | github.event.pull_request.title | Potential secret exfiltration in $@, which may be leaked to an attacker-controlled resource. | .github/workflows/test1.yml:15:11:16:75 | github.event.pull_request.title | ${{ github.event.pull_request.title }} |

python/ql/src/Classes/CallsToInitDel/SuperclassDelCalledMultipleTimes.qhelp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ If a superclass finalizer is called multiple times, this may lead to errors such
1616
cleaned up properly as expected.
1717
</p>
1818

19-
<p>There are a number of ways that a <code>__del__</code> method may be be called more than once.</p>
19+
<p>There are a number of ways that a <code>__del__</code> method may be called more than once.</p>
2020
<ul>
2121
<li>There may be more than one explicit call to the method in the hierarchy of <code>__del__</code> methods.</li>
2222
<li>In situations involving multiple inheritance, an finalization method may call the finalizers of each of its base types,

python/ql/src/Classes/CallsToInitDel/SuperclassInitCalledMultipleTimes.qhelp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ that it could be called multiple times. For example, it may set attributes to a
1616
values setting those attributes in a subclass.
1717
</p>
1818

19-
<p>There are a number of ways that an <code>__init__</code> method may be be called more than once.</p>
19+
<p>There are a number of ways that an <code>__init__</code> method may be called more than once.</p>
2020
<ul>
2121
<li>There may be more than one explicit call to the method in the hierarchy of <code>__init__</code> methods.</li>
2222
<li>In situations involving multiple inheritance, an initialization method may call the initializers of each of its base types,

0 commit comments

Comments
 (0)