mirror of
https://github.com/anthropics/claude-code-action.git
synced 2026-01-22 22:44:13 +08:00
fix: prevent command injection in git hash-object call (#297)
* Update package name to reference under the @Anthropic-AI NPM org * fix: prevent command injection in git hash-object call * Revert accidental change
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
import { execSync } from "child_process";
|
||||
import { execFileSync } from "child_process";
|
||||
import type { Octokits } from "../api/client";
|
||||
import { ISSUE_QUERY, PR_QUERY, USER_QUERY } from "../api/queries/github";
|
||||
import type {
|
||||
@@ -114,7 +114,7 @@ export async function fetchGitHubData({
|
||||
|
||||
try {
|
||||
// Use git hash-object to compute the SHA for the current file content
|
||||
const sha = execSync(`git hash-object "${file.path}"`, {
|
||||
const sha = execFileSync("git", ["hash-object", file.path], {
|
||||
encoding: "utf-8",
|
||||
}).trim();
|
||||
return {
|
||||
|
||||
Reference in New Issue
Block a user