secrets-le 0.2.0

Find hardcoded credentials in a codebase, and never print one into the report
1
2
3
4
5
6
7
8
9
10
11
12
13
const apiKey = 'sk_demo_abcdefghijklmnopqrst1234';
const config = {
	password: 'n0tS0Secr3tP@ss',
};
// Authorization header
fetch(url, {
	headers: {
		Authorization:
			'Bearer eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiIxIn0.dozjgNryP4J3jVmNHl0w5NXgL0n3I9PlFUP0THsR8U',
	},
});
const version = '1.2.3';
const awsSecretAccessKey = 'wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY';