mirror of
https://github.com/pezkuwichain/pezkuwi-wallet-utils.git
synced 2026-07-21 22:35:50 +00:00
fix: exclude public account-id fields from the private-key heuristic
The hardcoded-secret scan flags any 64-hex 0x value in JSON as a possible private key. The restored balance-test fixtures store public 32-byte account IDs under "account" fields - public data by definition, tripping the scan as a false positive. Scope the exclusion to the exact field name rather than loosening the pattern itself.
This commit is contained in:
@@ -60,7 +60,8 @@ jobs:
|
||||
FOUND=0
|
||||
|
||||
echo "Checking for private keys in config files..."
|
||||
if grep -rn --include="*.json" --include="*.py" -E "(0x[a-fA-F0-9]{64}|-----BEGIN.*PRIVATE)" . | grep -v node_modules | grep -v "chainId\|genesisHash\|parentId\|currencyIdScale\|typeAlias\|signedExtensions"; then
|
||||
# "account" fields hold public 32-byte account IDs (balance-test fixtures), not private keys
|
||||
if grep -rn --include="*.json" --include="*.py" -E "(0x[a-fA-F0-9]{64}|-----BEGIN.*PRIVATE)" . | grep -v node_modules | grep -v "chainId\|genesisHash\|parentId\|currencyIdScale\|typeAlias\|signedExtensions\|\"account\":"; then
|
||||
echo "::error::Possible private key found"
|
||||
FOUND=1
|
||||
fi
|
||||
|
||||
Reference in New Issue
Block a user