mirror of
https://github.com/EndBug/add-and-commit.git
synced 2026-08-30 17:26:14 -05:00
* fix: refuse unexpected gitlinks staged by git add Detect new mode-160000 entries after add via git diff --cached --raw so nested .git directories cannot be silently committed as attacker-chosen gitlinks. Co-authored-by: Cursor <cursoragent@cursor.com> * fix: harden gitlink raw-diff parsing for renames Accept scored R/C statuses and destination paths, and use -- in rm remediation hints. Co-authored-by: Cursor <cursoragent@cursor.com> --------- Co-authored-by: Cursor <cursoragent@cursor.com>
379 lines
13 KiB
TypeScript
379 lines
13 KiB
TypeScript
import {
|
|
assertNoUnexpectedGitlinks,
|
|
assertValidBranchName,
|
|
findUnexpectedGitlinks,
|
|
matchGitArgs,
|
|
parseInputArray,
|
|
pickGitIdentityConfig,
|
|
} from '../src/util';
|
|
|
|
describe('parseInputArray', () => {
|
|
beforeAll(() => {
|
|
process.env.GITHUB_EVENT_PATH = 'a';
|
|
process.env.GITHUB_EVENT_NAME = 'b';
|
|
process.env.GITHUB_REF = 'c';
|
|
process.env.GITHUB_ACTOR = 'd';
|
|
});
|
|
|
|
afterAll(() => {
|
|
delete process.env.GITHUB_EVENT_PATH;
|
|
delete process.env.GITHUB_EVENT_NAME;
|
|
delete process.env.GITHUB_REF;
|
|
delete process.env.GITHUB_ACTOR;
|
|
});
|
|
|
|
it('parses string arrays', () => {
|
|
expect(parseInputArray('["a", "bcd"]')).toStrictEqual(['a', 'bcd']);
|
|
});
|
|
|
|
it('passes strings through', () => {
|
|
expect(parseInputArray('"hello"')).toStrictEqual(['"hello"']);
|
|
});
|
|
|
|
it('passes non-string elements through', () => {
|
|
expect(parseInputArray('[42]')).toStrictEqual(['[42]']);
|
|
});
|
|
|
|
it('ignores failures', () => {
|
|
expect(parseInputArray('"')).toStrictEqual(['"']);
|
|
});
|
|
});
|
|
|
|
describe('assertValidBranchName', () => {
|
|
beforeAll(() => {
|
|
process.env.GITHUB_EVENT_PATH = 'a';
|
|
process.env.GITHUB_EVENT_NAME = 'b';
|
|
process.env.GITHUB_REF = 'c';
|
|
process.env.GITHUB_ACTOR = 'd';
|
|
});
|
|
|
|
afterAll(() => {
|
|
delete process.env.GITHUB_EVENT_PATH;
|
|
delete process.env.GITHUB_EVENT_NAME;
|
|
delete process.env.GITHUB_REF;
|
|
delete process.env.GITHUB_ACTOR;
|
|
});
|
|
|
|
it('accepts typical branch names', () => {
|
|
expect(() => assertValidBranchName('feature/foo')).not.toThrow();
|
|
expect(() =>
|
|
assertValidBranchName('dependabot/npm-and-yarn/pkg-1.2.3'),
|
|
).not.toThrow();
|
|
expect(() => assertValidBranchName('fix/issue-123')).not.toThrow();
|
|
});
|
|
|
|
it('rejects empty or whitespace-only names', () => {
|
|
expect(() => assertValidBranchName('')).toThrow(/empty/);
|
|
expect(() => assertValidBranchName(' ')).toThrow(/empty/);
|
|
});
|
|
|
|
it('rejects names that start with a hyphen', () => {
|
|
expect(() => assertValidBranchName('--force')).toThrow(/cannot start with/);
|
|
expect(() => assertValidBranchName('-f')).toThrow(/cannot start with/);
|
|
expect(() => assertValidBranchName('--delete')).toThrow(
|
|
/cannot start with/,
|
|
);
|
|
expect(() => assertValidBranchName('-branch')).toThrow(/cannot start with/);
|
|
});
|
|
|
|
it('rejects names with whitespace or control characters', () => {
|
|
expect(() => assertValidBranchName('has space')).toThrow(
|
|
/whitespace or control/,
|
|
);
|
|
expect(() => assertValidBranchName('has\ttab')).toThrow(
|
|
/whitespace or control/,
|
|
);
|
|
expect(() => assertValidBranchName('has\nnewline')).toThrow(
|
|
/whitespace or control/,
|
|
);
|
|
expect(() => assertValidBranchName('has\u00A0nbsp')).toThrow(
|
|
/whitespace or control/,
|
|
);
|
|
expect(() => assertValidBranchName('has\u0085nel')).toThrow(
|
|
/whitespace or control/,
|
|
);
|
|
});
|
|
|
|
it('rejects names that fail git check-ref-format --branch', () => {
|
|
expect(() => assertValidBranchName('feature..name')).toThrow(
|
|
/not a valid git branch name/,
|
|
);
|
|
expect(() => assertValidBranchName('name@{x}')).toThrow(
|
|
/not a valid git branch name/,
|
|
);
|
|
expect(() => assertValidBranchName('name~1')).toThrow(
|
|
/not a valid git branch name/,
|
|
);
|
|
expect(() => assertValidBranchName('name.')).toThrow(
|
|
/not a valid git branch name/,
|
|
);
|
|
});
|
|
});
|
|
|
|
describe('matchGitArgs', () => {
|
|
beforeAll(() => {
|
|
process.env.GITHUB_EVENT_PATH = 'a';
|
|
process.env.GITHUB_EVENT_NAME = 'b';
|
|
process.env.GITHUB_REF = 'c';
|
|
process.env.GITHUB_ACTOR = 'd';
|
|
});
|
|
|
|
afterAll(() => {
|
|
delete process.env.GITHUB_EVENT_PATH;
|
|
delete process.env.GITHUB_EVENT_NAME;
|
|
delete process.env.GITHUB_REF;
|
|
delete process.env.GITHUB_ACTOR;
|
|
});
|
|
|
|
it('parses safe documented argument strings', () => {
|
|
expect(matchGitArgs('--tags --force')).toStrictEqual(['--tags', '--force']);
|
|
expect(matchGitArgs('--rebase --autostash')).toStrictEqual([
|
|
'--rebase',
|
|
'--autostash',
|
|
]);
|
|
expect(matchGitArgs('origin main --force')).toStrictEqual([
|
|
'origin',
|
|
'main',
|
|
'--force',
|
|
]);
|
|
expect(matchGitArgs('--set-upstream')).toStrictEqual(['--set-upstream']);
|
|
expect(matchGitArgs('v1.0.0 --force')).toStrictEqual(['v1.0.0', '--force']);
|
|
expect(matchGitArgs('-a -m "release"')).toStrictEqual([
|
|
'-a',
|
|
'-m',
|
|
'release',
|
|
]);
|
|
expect(matchGitArgs('v1.0.0 -f')).toStrictEqual(['v1.0.0', '-f']);
|
|
});
|
|
|
|
it('returns an empty array for blank input', () => {
|
|
expect(matchGitArgs(' ')).toStrictEqual([]);
|
|
expect(matchGitArgs('')).toStrictEqual([]);
|
|
});
|
|
|
|
it('rejects --upload-pack with equals value (PoC form)', () => {
|
|
expect(() => matchGitArgs('--upload-pack=touch$IFS/tmp/pwned;')).toThrow(
|
|
/not allowed/,
|
|
);
|
|
});
|
|
|
|
it('rejects --upload-pack as a separate flag token', () => {
|
|
expect(() => matchGitArgs('--upload-pack touch /tmp/pwned')).toThrow(
|
|
/not allowed/,
|
|
);
|
|
});
|
|
|
|
it('rejects --receive-pack and --exec overrides', () => {
|
|
expect(() => matchGitArgs('--receive-pack=/bin/sh')).toThrow(/not allowed/);
|
|
expect(() => matchGitArgs('--exec=/bin/sh')).toThrow(/not allowed/);
|
|
});
|
|
|
|
it('rejects abbreviations of blocked remote-helper options', () => {
|
|
expect(() => matchGitArgs('--upl=evil')).toThrow(/not allowed/);
|
|
expect(() => matchGitArgs('--uplo=evil')).toThrow(/not allowed/);
|
|
expect(() => matchGitArgs('--upload-pac=evil')).toThrow(/not allowed/);
|
|
expect(() => matchGitArgs('--upload=evil')).toThrow(/not allowed/);
|
|
expect(() => matchGitArgs('--rece=evil')).toThrow(/not allowed/);
|
|
expect(() => matchGitArgs('--receive-pac=evil')).toThrow(/not allowed/);
|
|
expect(() => matchGitArgs('--receive=evil')).toThrow(/not allowed/);
|
|
expect(() => matchGitArgs('--e=evil')).toThrow(/not allowed/);
|
|
expect(() => matchGitArgs('--exe=evil')).toThrow(/not allowed/);
|
|
});
|
|
|
|
it('rejects unmatched quotes that would inject flags via string-argv', () => {
|
|
expect(() => matchGitArgs("origin fix'--force --set-upstream")).toThrow(
|
|
/unmatched ' quote/,
|
|
);
|
|
expect(() => matchGitArgs('origin fix"--force --set-upstream')).toThrow(
|
|
/unmatched " quote/,
|
|
);
|
|
});
|
|
|
|
it('parses balanced quotes without treating them as injection', () => {
|
|
expect(matchGitArgs("origin a'b'c --set-upstream")).toStrictEqual([
|
|
'origin',
|
|
"a'b'c",
|
|
'--set-upstream',
|
|
]);
|
|
expect(matchGitArgs("--longOption 'hello world'")).toStrictEqual([
|
|
'--longOption',
|
|
'hello world',
|
|
]);
|
|
expect(
|
|
matchGitArgs('--longOption \'This uses the "other" quotes\''),
|
|
).toStrictEqual(['--longOption', 'This uses the "other" quotes']);
|
|
});
|
|
|
|
it('rejects -F / --file message-from-file flags (PoC form)', () => {
|
|
expect(() =>
|
|
matchGitArgs('1.0.0 -F ../runner-secrets/aws-credentials.txt'),
|
|
).toThrow(/not allowed/);
|
|
expect(() => matchGitArgs('-F ../secrets')).toThrow(/message from a file/);
|
|
expect(() => matchGitArgs('--file=../secrets')).toThrow(
|
|
/message from a file/,
|
|
);
|
|
expect(() => matchGitArgs('--file ../secrets')).toThrow(
|
|
/message from a file/,
|
|
);
|
|
});
|
|
|
|
it('rejects --file abbreviations and short-option clusters containing F', () => {
|
|
expect(() => matchGitArgs('--fi=../secrets')).toThrow(
|
|
/message from a file/,
|
|
);
|
|
expect(() => matchGitArgs('--fil=../secrets')).toThrow(
|
|
/message from a file/,
|
|
);
|
|
expect(() => matchGitArgs('-aF ../secrets')).toThrow(/message from a file/);
|
|
expect(() => matchGitArgs('-Fa')).toThrow(/message from a file/);
|
|
expect(() => matchGitArgs('-F../secrets')).toThrow(/message from a file/);
|
|
});
|
|
|
|
it('preserves -m / --message values that look like -F/--file', () => {
|
|
expect(matchGitArgs('-m "-F"')).toStrictEqual(['-m', '-F']);
|
|
expect(matchGitArgs('-m --file=/tmp/value')).toStrictEqual([
|
|
'-m',
|
|
'--file=/tmp/value',
|
|
]);
|
|
expect(matchGitArgs('--message "-F"')).toStrictEqual(['--message', '-F']);
|
|
expect(matchGitArgs('-m-F')).toStrictEqual(['-m-F']);
|
|
expect(matchGitArgs('v1.0.0 -a -m "-F"')).toStrictEqual([
|
|
'v1.0.0',
|
|
'-a',
|
|
'-m',
|
|
'-F',
|
|
]);
|
|
});
|
|
|
|
it('still rejects a real -F after a message value', () => {
|
|
expect(() => matchGitArgs('-m "ok" -F ../secrets')).toThrow(
|
|
/message from a file/,
|
|
);
|
|
});
|
|
});
|
|
|
|
describe('pickGitIdentityConfig', () => {
|
|
it('keeps only identity keys', () => {
|
|
const picked = pickGitIdentityConfig({
|
|
'user.name': 'Alice',
|
|
'user.email': 'alice@example.com',
|
|
'author.name': 'Alice',
|
|
'author.email': 'alice@example.com',
|
|
'committer.name': 'Bot',
|
|
'committer.email': 'bot@example.com',
|
|
'http.https://github.com/.extraheader':
|
|
'AUTHORIZATION: basic dGVzdDp0b2tlbg==',
|
|
'credential.helper': 'store',
|
|
'remote.origin.url':
|
|
'https://x-access-token:ghp_secret@github.com/o/r.git',
|
|
'core.sshCommand': 'ssh -i /secrets/id_rsa',
|
|
});
|
|
|
|
expect(picked).toStrictEqual({
|
|
'user.name': 'Alice',
|
|
'user.email': 'alice@example.com',
|
|
'author.name': 'Alice',
|
|
'author.email': 'alice@example.com',
|
|
'committer.name': 'Bot',
|
|
'committer.email': 'bot@example.com',
|
|
});
|
|
expect(picked).not.toHaveProperty('http.https://github.com/.extraheader');
|
|
expect(picked).not.toHaveProperty('credential.helper');
|
|
expect(picked).not.toHaveProperty('remote.origin.url');
|
|
expect(picked).not.toHaveProperty('core.sshCommand');
|
|
});
|
|
|
|
it('returns an empty object when no identity keys are present', () => {
|
|
expect(
|
|
pickGitIdentityConfig({
|
|
'http.https://github.com/.extraheader':
|
|
'AUTHORIZATION: basic dGVzdDp0b2tlbg==',
|
|
}),
|
|
).toStrictEqual({});
|
|
});
|
|
});
|
|
|
|
describe('findUnexpectedGitlinks', () => {
|
|
it('returns empty for empty or unrelated output', () => {
|
|
expect(findUnexpectedGitlinks('')).toStrictEqual([]);
|
|
expect(
|
|
findUnexpectedGitlinks(
|
|
':000000 100644 0000000000000000000000000000000000000000 abcdefabcdefabcdefabcdefabcdefabcdefabcd A\tREADME.md',
|
|
),
|
|
).toStrictEqual([]);
|
|
});
|
|
|
|
it('flags a newly added gitlink', () => {
|
|
expect(
|
|
findUnexpectedGitlinks(
|
|
':000000 160000 0000000000000000000000000000000000000000 8ec20b7a40813dbf999aa0c19053ccfe3a72cdd5 A\tevil_nested_repo',
|
|
),
|
|
).toStrictEqual(['evil_nested_repo']);
|
|
});
|
|
|
|
it('flags a mode change into a gitlink', () => {
|
|
expect(
|
|
findUnexpectedGitlinks(
|
|
':100644 160000 abcdefabcdefabcdefabcdefabcdefabcdefabcd 8ec20b7a40813dbf999aa0c19053ccfe3a72cdd5 T\twas_a_file',
|
|
),
|
|
).toStrictEqual(['was_a_file']);
|
|
});
|
|
|
|
it('allows existing submodule SHA updates (160000→160000)', () => {
|
|
expect(
|
|
findUnexpectedGitlinks(
|
|
':160000 160000 abcdefabcdefabcdefabcdefabcdefabcdefabcd 8ec20b7a40813dbf999aa0c19053ccfe3a72cdd5 M\tvendor/lib',
|
|
),
|
|
).toStrictEqual([]);
|
|
});
|
|
|
|
it('flags rename/copy into a gitlink and uses the destination path', () => {
|
|
expect(
|
|
findUnexpectedGitlinks(
|
|
':100644 160000 abcdefabcdefabcdefabcdefabcdefabcdefabcd 8ec20b7a40813dbf999aa0c19053ccfe3a72cdd5 R100\told_name\tnested_renamed',
|
|
),
|
|
).toStrictEqual(['nested_renamed']);
|
|
expect(
|
|
findUnexpectedGitlinks(
|
|
':100644 160000 abcdefabcdefabcdefabcdefabcdefabcdefabcd 8ec20b7a40813dbf999aa0c19053ccfe3a72cdd5 C75\tsrc_file\tnested_copied',
|
|
),
|
|
).toStrictEqual(['nested_copied']);
|
|
});
|
|
|
|
it('allows rename/copy that stays a gitlink (160000→160000)', () => {
|
|
expect(
|
|
findUnexpectedGitlinks(
|
|
':160000 160000 abcdefabcdefabcdefabcdefabcdefabcdefabcd 8ec20b7a40813dbf999aa0c19053ccfe3a72cdd5 R100\told_sub\tnew_sub',
|
|
),
|
|
).toStrictEqual([]);
|
|
});
|
|
|
|
it('collects multiple unexpected gitlinks among mixed changes', () => {
|
|
const raw = [
|
|
':000000 100644 0000000000000000000000000000000000000000 abcdefabcdefabcdefabcdefabcdefabcdefabcd A\tok.txt',
|
|
':000000 160000 0000000000000000000000000000000000000000 8ec20b7a40813dbf999aa0c19053ccfe3a72cdd5 A\tnested_a',
|
|
':160000 160000 abcdefabcdefabcdefabcdefabcdefabcdefabcd fedcbafedcbafedcbafedcbafedcbafedcbafedc M\tok_submodule',
|
|
':040000 160000 abcdefabcdefabcdefabcdefabcdefabcdefabcd 8ec20b7a40813dbf999aa0c19053ccfe3a72cdd5 T\tnested_b',
|
|
].join('\n');
|
|
expect(findUnexpectedGitlinks(raw)).toStrictEqual(['nested_a', 'nested_b']);
|
|
});
|
|
});
|
|
|
|
describe('assertNoUnexpectedGitlinks', () => {
|
|
it('does nothing when there are no paths', () => {
|
|
expect(() => assertNoUnexpectedGitlinks([])).not.toThrow();
|
|
});
|
|
|
|
it('throws with path names and remediation hints', () => {
|
|
expect(() => assertNoUnexpectedGitlinks(['evil_nested_repo'])).toThrow(
|
|
/unexpected gitlink/,
|
|
);
|
|
expect(() => assertNoUnexpectedGitlinks(['evil_nested_repo'])).toThrow(
|
|
/evil_nested_repo/,
|
|
);
|
|
expect(() => assertNoUnexpectedGitlinks(['evil_nested_repo'])).toThrow(
|
|
/git rm --cached -- evil_nested_repo/,
|
|
);
|
|
});
|
|
});
|