2022-01-13 20:02:24 +00:00
|
|
|
syntax = "proto3";
|
|
|
|
|
|
|
|
package sources;
|
|
|
|
|
2022-02-16 01:38:19 +00:00
|
|
|
option go_package = "github.com/trufflesecurity/trufflehog/v3/pkg/pb/sourcespb";
|
2022-01-13 20:02:24 +00:00
|
|
|
|
|
|
|
import "validate/validate.proto";
|
|
|
|
import "credentials.proto";
|
2022-02-16 01:38:19 +00:00
|
|
|
import "google/protobuf/any.proto";
|
2022-01-13 20:02:24 +00:00
|
|
|
import "google/protobuf/duration.proto";
|
2022-06-03 21:46:31 +00:00
|
|
|
import "google/protobuf/timestamp.proto";
|
2022-01-13 20:02:24 +00:00
|
|
|
|
|
|
|
|
|
|
|
enum SourceType {
|
|
|
|
SOURCE_TYPE_AZURE_STORAGE = 0;
|
|
|
|
SOURCE_TYPE_BITBUCKET = 1;
|
|
|
|
SOURCE_TYPE_CIRCLECI = 2;
|
|
|
|
SOURCE_TYPE_CONFLUENCE = 3;
|
|
|
|
SOURCE_TYPE_DOCKERHUB_IMAGES = 4;
|
|
|
|
SOURCE_TYPE_ECR = 5;
|
|
|
|
SOURCE_TYPE_GCS = 6;
|
|
|
|
SOURCE_TYPE_GITHUB = 7;
|
|
|
|
SOURCE_TYPE_PUBLIC_GIT = 8;
|
|
|
|
SOURCE_TYPE_GITLAB = 9;
|
|
|
|
SOURCE_TYPE_JIRA = 10;
|
|
|
|
SOURCE_TYPE_NPM_UNAUTHD_PACKAGES = 11;
|
|
|
|
SOURCE_TYPE_PYPI_UNAUTHD_PACKAGES = 12;
|
|
|
|
SOURCE_TYPE_S3 = 13;
|
|
|
|
SOURCE_TYPE_SLACK = 14;
|
|
|
|
SOURCE_TYPE_FILESYSTEM = 15;
|
|
|
|
SOURCE_TYPE_GIT = 16;
|
|
|
|
SOURCE_TYPE_TEST = 17;
|
|
|
|
SOURCE_TYPE_S3_UNAUTHED = 18;
|
|
|
|
SOURCE_TYPE_GITHUB_UNAUTHENTICATED_ORG = 19;
|
|
|
|
SOURCE_TYPE_BUILDKITE = 20;
|
|
|
|
SOURCE_TYPE_GERRIT = 21;
|
|
|
|
SOURCE_TYPE_JENKINS = 22;
|
2022-04-04 17:48:43 +00:00
|
|
|
SOURCE_TYPE_TEAMS = 23;
|
2022-04-05 23:38:48 +00:00
|
|
|
SOURCE_TYPE_JFROG_ARTIFACTORY = 24;
|
2022-05-04 22:08:11 +00:00
|
|
|
SOURCE_TYPE_SYSLOG = 25;
|
2022-06-03 21:46:31 +00:00
|
|
|
SOURCE_TYPE_PUBLIC_EVENT_MONITORING = 26;
|
2022-09-16 20:49:51 +00:00
|
|
|
SOURCE_TYPE_SLACK_REALTIME = 27;
|
2022-01-13 20:02:24 +00:00
|
|
|
}
|
|
|
|
|
2022-02-16 01:38:19 +00:00
|
|
|
message LocalSource {
|
|
|
|
string type = 1 ;
|
|
|
|
string name = 2 ;
|
|
|
|
google.protobuf.Duration scan_interval = 3;
|
|
|
|
bool verify = 4;
|
|
|
|
google.protobuf.Any connection = 5;
|
|
|
|
}
|
|
|
|
|
2022-01-13 20:02:24 +00:00
|
|
|
message AzureStorage {
|
|
|
|
oneof credential {
|
|
|
|
string connection_string = 1;
|
|
|
|
credentials.BasicAuth basic_auth = 2;
|
|
|
|
string client_certificate = 3;
|
|
|
|
credentials.Unauthenticated unauthenticated = 4;
|
|
|
|
}
|
|
|
|
repeated string storage_containers = 5;
|
|
|
|
}
|
|
|
|
|
|
|
|
message Bitbucket {
|
|
|
|
string endpoint = 1 [(validate.rules).string.uri_ref = true];
|
|
|
|
oneof credential {
|
|
|
|
string token = 2;
|
|
|
|
credentials.Oauth2 oauth = 3;
|
|
|
|
credentials.BasicAuth basic_auth = 4;
|
|
|
|
|
|
|
|
}
|
|
|
|
repeated string repositories = 5;
|
2022-10-18 21:14:04 +00:00
|
|
|
repeated string ignore_repos = 6;
|
2022-01-13 20:02:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
message CircleCI {
|
|
|
|
string endpoint = 1 [(validate.rules).string.uri_ref = true];
|
|
|
|
oneof credential {
|
|
|
|
string token = 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
message Confluence {
|
|
|
|
string endpoint = 1 [(validate.rules).string.uri_ref = true];
|
|
|
|
oneof credential {
|
|
|
|
credentials.Unauthenticated unauthenticated = 2;
|
|
|
|
credentials.BasicAuth basic_auth = 3;
|
|
|
|
string token = 4;
|
|
|
|
}
|
2022-03-03 21:19:07 +00:00
|
|
|
|
|
|
|
enum GetAllSpacesScope {
|
|
|
|
ALL = 0;
|
|
|
|
GLOBAL = 1;
|
|
|
|
PERSONAL = 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
GetAllSpacesScope spaces_scope = 5;
|
2022-11-03 20:10:01 +00:00
|
|
|
bool insecure_skip_verify_tls = 6;
|
2022-01-13 20:02:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
message DockerHub {
|
|
|
|
oneof credential {
|
|
|
|
credentials.Unauthenticated unauthenticated = 1;
|
|
|
|
}
|
|
|
|
repeated string repositories = 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
message ECR {
|
|
|
|
oneof credential {
|
|
|
|
credentials.KeySecret access_key = 1;
|
|
|
|
}
|
|
|
|
repeated string registries = 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
message Filesystem{
|
|
|
|
repeated string directories = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
message GCS {
|
|
|
|
oneof credential {
|
|
|
|
string json_sa = 1;
|
|
|
|
}
|
|
|
|
repeated string buckets = 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
message Git {
|
|
|
|
oneof credential {
|
|
|
|
credentials.BasicAuth basic_auth = 1;
|
|
|
|
credentials.Unauthenticated unauthenticated = 2;
|
2022-09-28 18:40:01 +00:00
|
|
|
credentials.SSHAuth ssh_auth = 5;
|
2022-01-13 20:02:24 +00:00
|
|
|
}
|
|
|
|
repeated string directories = 3;
|
|
|
|
repeated string repositories = 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
message GitLab {
|
|
|
|
string endpoint = 1 [(validate.rules).string.uri_ref = true];
|
|
|
|
oneof credential {
|
|
|
|
string token = 2;
|
|
|
|
credentials.Oauth2 oauth = 3;
|
|
|
|
credentials.BasicAuth basic_auth = 4;
|
|
|
|
}
|
|
|
|
repeated string repositories = 5;
|
2022-10-18 21:14:04 +00:00
|
|
|
repeated string ignore_repos = 6;
|
2022-01-13 20:02:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
message GitHub {
|
|
|
|
string endpoint = 1 [(validate.rules).string.uri_ref = true];
|
|
|
|
oneof credential {
|
|
|
|
credentials.GitHubApp github_app = 2;
|
|
|
|
string token = 3;
|
|
|
|
credentials.Unauthenticated unauthenticated = 4;
|
|
|
|
}
|
|
|
|
repeated string repositories = 5;
|
|
|
|
repeated string organizations = 6;
|
|
|
|
bool scanUsers = 7;
|
2022-02-04 17:52:48 +00:00
|
|
|
bool includeForks = 8;
|
2022-04-08 21:32:54 +00:00
|
|
|
string head = 9;
|
|
|
|
string base = 10;
|
2022-10-11 22:41:33 +00:00
|
|
|
repeated string ignoreRepos = 11;
|
2022-01-13 20:02:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
message JIRA {
|
|
|
|
string endpoint = 1 [(validate.rules).string.uri_ref = true];
|
|
|
|
oneof credential {
|
|
|
|
credentials.BasicAuth basic_auth = 2;
|
|
|
|
credentials.Unauthenticated unauthenticated = 3;
|
|
|
|
credentials.Oauth2 oauth = 4;
|
2022-09-27 19:39:51 +00:00
|
|
|
string token = 6;
|
2022-01-13 20:02:24 +00:00
|
|
|
}
|
|
|
|
repeated string projects = 5;
|
|
|
|
}
|
|
|
|
|
|
|
|
message NPMUnauthenticatedPackage {
|
|
|
|
oneof credential {
|
|
|
|
credentials.Unauthenticated unauthenticated = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
message PyPIUnauthenticatedPackage {
|
|
|
|
oneof credential {
|
|
|
|
credentials.Unauthenticated unauthenticated = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
message S3 {
|
|
|
|
oneof credential {
|
|
|
|
credentials.KeySecret access_key = 1;
|
|
|
|
credentials.Unauthenticated unauthenticated = 2;
|
|
|
|
credentials.CloudEnvironment cloud_environment = 4;
|
|
|
|
}
|
|
|
|
repeated string buckets = 3;
|
|
|
|
}
|
|
|
|
|
|
|
|
message Slack {
|
|
|
|
string endpoint = 1 [(validate.rules).string.uri_ref = true];
|
|
|
|
oneof credential {
|
|
|
|
string token = 2;
|
2022-07-18 18:51:27 +00:00
|
|
|
credentials.SlackTokens tokens = 5;
|
2022-01-13 20:02:24 +00:00
|
|
|
}
|
|
|
|
repeated string channels = 3;
|
2022-03-22 16:27:35 +00:00
|
|
|
repeated string ignoreList = 4;
|
2022-01-13 20:02:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
message Test{}
|
|
|
|
|
|
|
|
message Buildkite {
|
|
|
|
oneof credential {
|
|
|
|
string token = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
message Gerrit {
|
|
|
|
string endpoint = 1 [(validate.rules).string.uri_ref = true];
|
|
|
|
oneof credential {
|
|
|
|
credentials.BasicAuth basic_auth = 2;
|
|
|
|
credentials.Unauthenticated unauthenticated = 3;
|
|
|
|
}
|
|
|
|
repeated string projects = 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
message Jenkins {
|
|
|
|
string endpoint = 1 [(validate.rules).string.uri_ref = true];
|
|
|
|
oneof credential {
|
|
|
|
credentials.BasicAuth basic_auth = 2;
|
2022-02-18 01:24:43 +00:00
|
|
|
credentials.Header header = 3;
|
2022-01-13 20:02:24 +00:00
|
|
|
}
|
|
|
|
}
|
2022-04-04 17:48:43 +00:00
|
|
|
|
|
|
|
message Teams {
|
|
|
|
string endpoint = 1 [(validate.rules).string.uri_ref = true];
|
|
|
|
oneof credential {
|
2022-05-31 19:28:07 +00:00
|
|
|
string token = 2;
|
2022-04-12 17:55:17 +00:00
|
|
|
credentials.ClientCredentials authenticated = 3;
|
2022-04-04 17:48:43 +00:00
|
|
|
}
|
2022-04-12 17:55:17 +00:00
|
|
|
repeated string channels = 4;
|
|
|
|
repeated string ignoreList = 5;
|
|
|
|
string team_id = 6;
|
2022-04-04 17:48:43 +00:00
|
|
|
}
|
2022-04-05 23:38:48 +00:00
|
|
|
|
|
|
|
// https://www.jfrog.com/confluence/display/JFROG/Artifactory+REST+API#ArtifactoryRESTAPI-RetrieveFolderorRepositoryArchive
|
|
|
|
message Artifactory {
|
|
|
|
string endpoint = 1 [(validate.rules).string.uri_ref = true];
|
|
|
|
oneof credential {
|
|
|
|
credentials.BasicAuth basic_auth = 2;
|
2022-05-31 19:28:07 +00:00
|
|
|
string access_token = 3;
|
2022-04-05 23:38:48 +00:00
|
|
|
}
|
|
|
|
repeated string repositories = 4;
|
|
|
|
}
|
2022-05-04 22:08:11 +00:00
|
|
|
|
|
|
|
message Syslog {
|
|
|
|
string protocol = 1;
|
|
|
|
string listenAddress = 2;
|
|
|
|
string tlsCert = 3;
|
|
|
|
string tlsKey = 4;
|
|
|
|
string format = 5;
|
|
|
|
}
|
2022-06-03 21:46:31 +00:00
|
|
|
|
|
|
|
message PublicEventMonitoring {
|
|
|
|
oneof credential {
|
|
|
|
credentials.Unauthenticated unauthenticated = 1;
|
|
|
|
}
|
|
|
|
string domain = 2;
|
|
|
|
int64 max_depth = 3;
|
|
|
|
google.protobuf.Timestamp since = 4;
|
|
|
|
}
|
2022-09-16 20:49:51 +00:00
|
|
|
|
|
|
|
message SlackRealtime {
|
|
|
|
oneof credential {
|
|
|
|
credentials.SlackTokens tokens = 1;
|
|
|
|
}
|
|
|
|
}
|