Skip to content

Commit

Permalink
Block unsafe pack (push --exec) (#882)
Browse files Browse the repository at this point in the history
Add `git push --exec` to the set of blocked operations without the use of an `allowUnsafePack` override.
  • Loading branch information
steveukx committed Dec 22, 2022
1 parent 0a623e5 commit ec97a39
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/fair-cobras-arrive.md
@@ -0,0 +1,5 @@
---
'simple-git': patch
---

Include restricting the use of git push --exec with other allowUnsafePack exclusions, thanks to @stsewd for the suggestion.

This comment has been minimized.

Copy link
@Na11ta

Na11ta Mar 6, 2023

Bravo

This comment has been minimized.

Copy link
@Na11ta

Na11ta Mar 6, 2023

docs/PLUGIN-UNSAFE-ACTIONS.md

This comment has been minimized.

Copy link
@Na11ta

Na11ta Mar 6, 2023

Super

21 changes: 21 additions & 0 deletions docs/PLUGIN-UNSAFE-ACTIONS.md
Expand Up @@ -6,6 +6,27 @@ that any parameter sourced from user input is validated before being passed to t
In some cases where there is an elevated potential for harm `simple-git` will throw an exception unless you have
explicitly opted in to the potentially unsafe action.

### Enabling custom upload and receive packs

Instead of using the default `git-receive-pack` and `git-upload-pack` binaries to parse incoming and outgoing
data, `git` can be configured to use _any_ arbitrary binary or evaluable script.

To avoid accidentally triggering the evaluation of a malicious script when merging user provided parameters
into command executed by `simple-git`, custom pack options (usually with the `--receive-pack` and `--upload-pack`)
are blocked without explicitly opting into their use

```typescript
import { simpleGit } from 'simple-git';

// throws
await simpleGit()
.raw('push', '--receive-pack=git-receive-pack-custom');

// allows calling clone with a helper transport
await simpleGit({ unsafe: { allowUnsafePack: true } })
.raw('push', '--receive-pack=git-receive-pack-custom');
```

### Overriding allowed protocols

A standard installation of `git` permits `file`, `http` and `ssh` protocols for a remote. A range of
Expand Down
8 changes: 8 additions & 0 deletions simple-git/src/lib/plugins/block-unsafe-operations-plugin.ts
Expand Up @@ -39,6 +39,14 @@ function preventUploadPack(arg: string, method: string) {
`Use of clone with option -u is not permitted without enabling allowUnsafePack`
);
}

if (method === 'push' && /^\s*--exec\b/.test(arg)) {
throw new GitPluginError(
undefined,
'unsafe',
`Use of push with option --exec is not permitted without enabling allowUnsafePack`
);
}
}

export function blockUnsafeOperationsPlugin({
Expand Down
3 changes: 2 additions & 1 deletion simple-git/test/unit/plugin.unsafe.spec.ts
Expand Up @@ -8,9 +8,10 @@ import {

describe('blockUnsafeOperationsPlugin', () => {
it.each([
['clone', '-u touch /tmp/pwn'],
['cmd', '--upload-pack=touch /tmp/pwn0'],
['cmd', '--receive-pack=touch /tmp/pwn1'],
['clone', '-u touch /tmp/pwn'],
['push', '--exec=touch /tmp/pwn2'],

This comment has been minimized.

Copy link
@Na11ta

Na11ta Mar 6, 2023

999

])('allows %s %s only when using override', async (cmd, option) => {
assertGitError(
await promiseError(newSimpleGit({ unsafe: {} }).raw(cmd, option)),
Expand Down

1 comment on commit ec97a39

@Na11ta
Copy link

@Na11ta Na11ta commented on ec97a39 Mar 6, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Думаю исправела

Please sign in to comment.