├── Detections ├── SCMKit.rules └── SCMKit.yar ├── LICENSE ├── README.md ├── SCMKit.sln └── SCMKit ├── App.config ├── FodyWeavers.xml ├── FodyWeavers.xsd ├── Properties └── AssemblyInfo.cs ├── SCMKit.cs ├── SCMKit.csproj ├── SCMKit.csproj.user ├── 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 │ ├── 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 /Detections/SCMKit.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boku7/SCMKit/HEAD/Detections/SCMKit.rules -------------------------------------------------------------------------------- /Detections/SCMKit.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boku7/SCMKit/HEAD/Detections/SCMKit.yar -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boku7/SCMKit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boku7/SCMKit/HEAD/README.md -------------------------------------------------------------------------------- /SCMKit.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boku7/SCMKit/HEAD/SCMKit.sln -------------------------------------------------------------------------------- /SCMKit/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boku7/SCMKit/HEAD/SCMKit/App.config -------------------------------------------------------------------------------- /SCMKit/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boku7/SCMKit/HEAD/SCMKit/FodyWeavers.xml -------------------------------------------------------------------------------- /SCMKit/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boku7/SCMKit/HEAD/SCMKit/FodyWeavers.xsd -------------------------------------------------------------------------------- /SCMKit/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boku7/SCMKit/HEAD/SCMKit/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SCMKit/SCMKit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boku7/SCMKit/HEAD/SCMKit/SCMKit.cs -------------------------------------------------------------------------------- /SCMKit/SCMKit.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boku7/SCMKit/HEAD/SCMKit/SCMKit.csproj -------------------------------------------------------------------------------- /SCMKit/SCMKit.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boku7/SCMKit/HEAD/SCMKit/SCMKit.csproj.user -------------------------------------------------------------------------------- /SCMKit/library/BitbucketUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boku7/SCMKit/HEAD/SCMKit/library/BitbucketUtils.cs -------------------------------------------------------------------------------- /SCMKit/library/GitHubUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boku7/SCMKit/HEAD/SCMKit/library/GitHubUtils.cs -------------------------------------------------------------------------------- /SCMKit/library/GitLabUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boku7/SCMKit/HEAD/SCMKit/library/GitLabUtils.cs -------------------------------------------------------------------------------- /SCMKit/library/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boku7/SCMKit/HEAD/SCMKit/library/Utils.cs -------------------------------------------------------------------------------- /SCMKit/library/WebUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boku7/SCMKit/HEAD/SCMKit/library/WebUtils.cs -------------------------------------------------------------------------------- /SCMKit/modules/bitbucket/AddAdmin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boku7/SCMKit/HEAD/SCMKit/modules/bitbucket/AddAdmin.cs -------------------------------------------------------------------------------- /SCMKit/modules/bitbucket/CodeSearch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boku7/SCMKit/HEAD/SCMKit/modules/bitbucket/CodeSearch.cs -------------------------------------------------------------------------------- /SCMKit/modules/bitbucket/CreatePAT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boku7/SCMKit/HEAD/SCMKit/modules/bitbucket/CreatePAT.cs -------------------------------------------------------------------------------- /SCMKit/modules/bitbucket/CreateSSHKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boku7/SCMKit/HEAD/SCMKit/modules/bitbucket/CreateSSHKey.cs -------------------------------------------------------------------------------- /SCMKit/modules/bitbucket/FileSearch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boku7/SCMKit/HEAD/SCMKit/modules/bitbucket/FileSearch.cs -------------------------------------------------------------------------------- /SCMKit/modules/bitbucket/ListPAT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boku7/SCMKit/HEAD/SCMKit/modules/bitbucket/ListPAT.cs -------------------------------------------------------------------------------- /SCMKit/modules/bitbucket/ListSSHKeys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boku7/SCMKit/HEAD/SCMKit/modules/bitbucket/ListSSHKeys.cs -------------------------------------------------------------------------------- /SCMKit/modules/bitbucket/RemoveAdmin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boku7/SCMKit/HEAD/SCMKit/modules/bitbucket/RemoveAdmin.cs -------------------------------------------------------------------------------- /SCMKit/modules/bitbucket/RemovePAT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boku7/SCMKit/HEAD/SCMKit/modules/bitbucket/RemovePAT.cs -------------------------------------------------------------------------------- /SCMKit/modules/bitbucket/RemoveSSHKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boku7/SCMKit/HEAD/SCMKit/modules/bitbucket/RemoveSSHKey.cs -------------------------------------------------------------------------------- /SCMKit/modules/bitbucket/RepoList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boku7/SCMKit/HEAD/SCMKit/modules/bitbucket/RepoList.cs -------------------------------------------------------------------------------- /SCMKit/modules/bitbucket/RepoSearch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boku7/SCMKit/HEAD/SCMKit/modules/bitbucket/RepoSearch.cs -------------------------------------------------------------------------------- /SCMKit/modules/github/AddAdmin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boku7/SCMKit/HEAD/SCMKit/modules/github/AddAdmin.cs -------------------------------------------------------------------------------- /SCMKit/modules/github/AdminStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boku7/SCMKit/HEAD/SCMKit/modules/github/AdminStats.cs -------------------------------------------------------------------------------- /SCMKit/modules/github/CodeSearch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boku7/SCMKit/HEAD/SCMKit/modules/github/CodeSearch.cs -------------------------------------------------------------------------------- /SCMKit/modules/github/CreatePAT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boku7/SCMKit/HEAD/SCMKit/modules/github/CreatePAT.cs -------------------------------------------------------------------------------- /SCMKit/modules/github/CreateSSHKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boku7/SCMKit/HEAD/SCMKit/modules/github/CreateSSHKey.cs -------------------------------------------------------------------------------- /SCMKit/modules/github/FileSearch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boku7/SCMKit/HEAD/SCMKit/modules/github/FileSearch.cs -------------------------------------------------------------------------------- /SCMKit/modules/github/GistList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boku7/SCMKit/HEAD/SCMKit/modules/github/GistList.cs -------------------------------------------------------------------------------- /SCMKit/modules/github/ListPAT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boku7/SCMKit/HEAD/SCMKit/modules/github/ListPAT.cs -------------------------------------------------------------------------------- /SCMKit/modules/github/ListSSHKeys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boku7/SCMKit/HEAD/SCMKit/modules/github/ListSSHKeys.cs -------------------------------------------------------------------------------- /SCMKit/modules/github/OrgList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boku7/SCMKit/HEAD/SCMKit/modules/github/OrgList.cs -------------------------------------------------------------------------------- /SCMKit/modules/github/Privs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boku7/SCMKit/HEAD/SCMKit/modules/github/Privs.cs -------------------------------------------------------------------------------- /SCMKit/modules/github/RemoveAdmin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boku7/SCMKit/HEAD/SCMKit/modules/github/RemoveAdmin.cs -------------------------------------------------------------------------------- /SCMKit/modules/github/RemovePAT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boku7/SCMKit/HEAD/SCMKit/modules/github/RemovePAT.cs -------------------------------------------------------------------------------- /SCMKit/modules/github/RemoveSSHKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boku7/SCMKit/HEAD/SCMKit/modules/github/RemoveSSHKey.cs -------------------------------------------------------------------------------- /SCMKit/modules/github/RepoList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boku7/SCMKit/HEAD/SCMKit/modules/github/RepoList.cs -------------------------------------------------------------------------------- /SCMKit/modules/github/RepoSearch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boku7/SCMKit/HEAD/SCMKit/modules/github/RepoSearch.cs -------------------------------------------------------------------------------- /SCMKit/modules/gitlab/AddAdmin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boku7/SCMKit/HEAD/SCMKit/modules/gitlab/AddAdmin.cs -------------------------------------------------------------------------------- /SCMKit/modules/gitlab/CodeSearch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boku7/SCMKit/HEAD/SCMKit/modules/gitlab/CodeSearch.cs -------------------------------------------------------------------------------- /SCMKit/modules/gitlab/CreatePAT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boku7/SCMKit/HEAD/SCMKit/modules/gitlab/CreatePAT.cs -------------------------------------------------------------------------------- /SCMKit/modules/gitlab/CreateSSHKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boku7/SCMKit/HEAD/SCMKit/modules/gitlab/CreateSSHKey.cs -------------------------------------------------------------------------------- /SCMKit/modules/gitlab/FileSearch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boku7/SCMKit/HEAD/SCMKit/modules/gitlab/FileSearch.cs -------------------------------------------------------------------------------- /SCMKit/modules/gitlab/ListPAT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boku7/SCMKit/HEAD/SCMKit/modules/gitlab/ListPAT.cs -------------------------------------------------------------------------------- /SCMKit/modules/gitlab/ListSSHKeys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boku7/SCMKit/HEAD/SCMKit/modules/gitlab/ListSSHKeys.cs -------------------------------------------------------------------------------- /SCMKit/modules/gitlab/Privs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boku7/SCMKit/HEAD/SCMKit/modules/gitlab/Privs.cs -------------------------------------------------------------------------------- /SCMKit/modules/gitlab/RemoveAdmin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boku7/SCMKit/HEAD/SCMKit/modules/gitlab/RemoveAdmin.cs -------------------------------------------------------------------------------- /SCMKit/modules/gitlab/RemovePAT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boku7/SCMKit/HEAD/SCMKit/modules/gitlab/RemovePAT.cs -------------------------------------------------------------------------------- /SCMKit/modules/gitlab/RemoveSSHKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boku7/SCMKit/HEAD/SCMKit/modules/gitlab/RemoveSSHKey.cs -------------------------------------------------------------------------------- /SCMKit/modules/gitlab/RepoList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boku7/SCMKit/HEAD/SCMKit/modules/gitlab/RepoList.cs -------------------------------------------------------------------------------- /SCMKit/modules/gitlab/RepoSearch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boku7/SCMKit/HEAD/SCMKit/modules/gitlab/RepoSearch.cs -------------------------------------------------------------------------------- /SCMKit/modules/gitlab/RunnerList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boku7/SCMKit/HEAD/SCMKit/modules/gitlab/RunnerList.cs -------------------------------------------------------------------------------- /SCMKit/modules/gitlab/SnippetList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boku7/SCMKit/HEAD/SCMKit/modules/gitlab/SnippetList.cs -------------------------------------------------------------------------------- /SCMKit/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boku7/SCMKit/HEAD/SCMKit/packages.config --------------------------------------------------------------------------------