The vulnerability (CVE-2025-1767) allows local git repository access via 'gitRepo' volumes in Kubernetes. The 'kubelet' component is affected. Since the 'gitRepo' feature is deprecated and unpatched, the vulnerability lies in its existing implementation. The standard function in Kubernetes for setting up a volume by its plugin is the 'SetUpAt' method of the corresponding mounter. For 'gitRepo' volumes, this would be 'k8s.io/kubernetes/pkg/volume/git_repo.(*gitRepoMounter).SetUpAt'. This function processes the user-supplied 'repository' path from the pod specification. The vulnerability occurs because this function (or helpers it calls) uses this path in a 'git clone' command without properly validating that it is a remote URL, thereby allowing local paths to be used. The provided PR link was invalid, preventing direct code inspection from a patch, but the behavior is well-documented in the CVE description and related announcements.