Skip to content

Commit 39bf891

Browse files
authored
fixes for some FPs and added 3.13 tests (#245)
1 parent d325b49 commit 39bf891

File tree

6 files changed

+18
-2
lines changed

6 files changed

+18
-2
lines changed

.github/workflows/pr.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
strategy:
3535
matrix:
3636
os: [ubuntu-latest, macos-latest, windows-latest]
37-
python: ['3.8', '3.9', '3.10', '3.11', '3.12']
37+
python: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
3838
steps:
3939
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v3
4040
- uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236 # v3

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
runs-on: ubuntu-latest
2525
strategy:
2626
matrix:
27-
python: ['3.8', '3.9', '3.10', '3.11', '3.12']
27+
python: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
2828
steps:
2929
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v3
3030
- uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236 # v3

detect_secrets/filters/heuristic.py

+3
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,9 @@ def is_non_text_file(filename: str) -> bool:
147147
'.fl2',
148148
'.fl3',
149149
'.fl4',
150+
'.dll',
151+
'.dll.deploy',
152+
'.nupkg',
150153
}
151154

152155

detect_secrets/plugins/keyword.py

+7
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,13 @@
6969
ALLOWLIST = (
7070
'publickeytoken',
7171
'tokenendpoint',
72+
'secretname',
73+
'keyvaultsecretname',
74+
'maxInvalidPasswordAttempts',
75+
'PasswordType',
76+
'forwardWindowsAuthToken',
77+
'saveBootstrapTokens',
78+
'AntiXsrfTokenKey',
7279
)
7380
# Includes ], ', " as closing
7481
CLOSING = r'[]\'"]{0,2}'

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ def get_version():
6262
'Programming Language :: Python :: 3.10',
6363
'Programming Language :: Python :: 3.11',
6464
'Programming Language :: Python :: 3.12',
65+
'Programming Language :: Python :: 3.13',
6566
'License :: OSI Approved :: Apache Software License',
6667
'Intended Audience :: Developers',
6768
'Topic :: Software Development',

tests/plugins/keyword_test.py

+5
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,11 @@
5252
(LONG_LINE, None), # Long line test
5353
('<assemblyIdentity name="Microsoft.Owin.Security" publicKeyToken="{}" />'.format(COMMON_SECRET), None), # XML FP
5454
('<assemblyIdentity name="Microsoft.Owin.Security" publicKeyToken="{}" />'.format(COMMON_SECRET), None), # XML FP
55+
('readOnlyAccount="True" maxInvalidPasswordAttempts="5" name="LDAPMembershipProvider"', None),
56+
('PasswordType="0" UnlockUserSP="UNLOCKUSER" LockUserSP="LOCKUSER"', None),
57+
('<aspNetCore requestTimeout="00:05:00" processPath="%LAUNCHER_PATH%" arguments="%LAUNCHER_ARGS%" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" forwardWindowsAuthToken="true" />', None),
58+
('<service name="Fmg.Cti.IdentityModel.InternalAuthorization.Web.InternalAuthorizationService" saveBootstrapTokens="true">', None),
59+
('private const string AntiXsrfTokenKey = "__AntiXsrfToken";', None),
5560
]
5661

5762
GOLANG_TEST_CASES = [

0 commit comments

Comments
 (0)