gitextract_g9j8xacg/ ├── .gitignore ├── Detections/ │ ├── SCMKit.rules │ └── SCMKit.yar ├── LICENSE ├── README.md ├── SCMKit/ │ ├── App.config │ ├── FodyWeavers.xml │ ├── Properties/ │ │ └── AssemblyInfo.cs │ ├── SCMKit.cs │ ├── SCMKit.csproj │ ├── library/ │ │ ├── BitbucketUtils.cs │ │ ├── GitHubUtils.cs │ │ ├── GitLabUtils.cs │ │ ├── Utils.cs │ │ └── WebUtils.cs │ ├── modules/ │ │ ├── bitbucket/ │ │ │ ├── AddAdmin.cs │ │ │ ├── CodeSearch.cs │ │ │ ├── CreatePAT.cs │ │ │ ├── CreateSSHKey.cs │ │ │ ├── FileSearch.cs │ │ │ ├── ListPAT.cs │ │ │ ├── ListSSHKeys.cs │ │ │ ├── RemoveAdmin.cs │ │ │ ├── RemovePAT.cs │ │ │ ├── RemoveSSHKey.cs │ │ │ ├── RepoList.cs │ │ │ └── RepoSearch.cs │ │ ├── github/ │ │ │ ├── AddAdmin.cs │ │ │ ├── AdminStats.cs │ │ │ ├── BranchProtection.cs │ │ │ ├── CodeSearch.cs │ │ │ ├── CreatePAT.cs │ │ │ ├── CreateSSHKey.cs │ │ │ ├── FileSearch.cs │ │ │ ├── GistList.cs │ │ │ ├── ListPAT.cs │ │ │ ├── ListSSHKeys.cs │ │ │ ├── OrgList.cs │ │ │ ├── Privs.cs │ │ │ ├── RemoveAdmin.cs │ │ │ ├── RemovePAT.cs │ │ │ ├── RemoveSSHKey.cs │ │ │ ├── RepoList.cs │ │ │ └── RepoSearch.cs │ │ └── gitlab/ │ │ ├── AddAdmin.cs │ │ ├── CodeSearch.cs │ │ ├── CreatePAT.cs │ │ ├── CreateSSHKey.cs │ │ ├── FileSearch.cs │ │ ├── ListPAT.cs │ │ ├── ListSSHKeys.cs │ │ ├── Privs.cs │ │ ├── RemoveAdmin.cs │ │ ├── RemovePAT.cs │ │ ├── RemoveSSHKey.cs │ │ ├── RepoList.cs │ │ ├── RepoSearch.cs │ │ ├── RunnerList.cs │ │ └── SnippetList.cs │ └── packages.config └── SCMKit.sln