cmd

package
v0.0.0-...-b23b1ed Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 2, 2024 License: MIT Imports: 22 Imported by: 0

Documentation

Overview

Copyright © 2023 NAME HERE <EMAIL ADDRESS>

Copyright © 2023 NAME HERE <EMAIL ADDRESS>

Copyright © 2023 NAME HERE <EMAIL ADDRESS>

Copyright © 2023 NAME HERE <EMAIL ADDRESS>

Copyright © 2023 NAME HERE <EMAIL ADDRESS>

Copyright © 2023 NAME HERE <EMAIL ADDRESS>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Index

Constants

View Source
const (
	AWS_IP_RANGES_URL          = "https://ip-ranges.amazonaws.com/ip-ranges.json"
	CLOUDFLARE_IPv4_RANGES_URL = "https://www.cloudflare.com/ips-v4"
	DIGITALOCEAN_IP_RANGES_URL = "https://www.digitalocean.com/geo/google.csv"
	GOOGLE_CLOUD_IP_RANGES_URL = "https://www.gstatic.com/ipranges/cloud.json"
	ORACLE_CLOUD_IP_RANGES_URL = "https://docs.oracle.com/en-us/iaas/tools/public_ip_ranges.json"

	TOTAL_IPv4_ADDR_COUNT = 3706452992
)

Variables

This section is empty.

Functions

func CheckInputParameters

func CheckInputParameters()

perform sanity check on inputs

func CheckRegionRegex

func CheckRegionRegex()

func Execute

func Execute()

Execute adds all child commands to the root command and sets flags appropriately. This is called by main.main(). It only needs to happen once to the rootCmd.

func GetJARMFingerprint

func GetJARMFingerprint(remote string) (string, error)

func GrabServerHeaderForRemote

func GrabServerHeaderForRemote(remote string) (string, error)

func JARMFingerprintEnrichment

func JARMFingerprintEnrichment(ctx context.Context, rawResultChan chan *CertResult, enrichmentThreads int, wg *sync.WaitGroup) chan *CertResult

func JarmFingerprintEnrichmentThread

func JarmFingerprintEnrichmentThread(ctx context.Context, rawResultChan, enrichedResultChan chan *CertResult, wg *sync.WaitGroup)

func PerformOutputChecks

func PerformOutputChecks()

func PerformPreRunChecks

func PerformPreRunChecks(checkRegion bool)

func PrintProgressToConsole

func PrintProgressToConsole(refreshInterval int)

func RunScan

func RunScan(cidrChan chan string)

func SaveResultsToDisk

func SaveResultsToDisk(resultChan chan *CertResult, resultWg *sync.WaitGroup, outFile *os.File, consoleout bool)

func ScanCertificatesInCidr

func ScanCertificatesInCidr(ctx context.Context, cidrChan chan string, ports []string, resultChan chan *CertResult, wg *sync.WaitGroup, keywordRegexString string)

func ScanCloudServiceProvider

func ScanCloudServiceProvider(ctx context.Context, csp string, cloudServiceProvider CidrRangeInput)

func ServerHeaderEnrichment

func ServerHeaderEnrichment(ctx context.Context, rawResultChan chan *CertResult, enrichmentThreads int, wg *sync.WaitGroup) chan *CertResult

func ServerHeaderEnrichmentThread

func ServerHeaderEnrichmentThread(ctx context.Context, rawResultChan, enrichedResultChan chan *CertResult, wg *sync.WaitGroup)

func SplitCIDR

func SplitCIDR(cidrString string, suffixLenPerGoRoutine int, cidrChan chan string) error

func SplitRemoteAddr

func SplitRemoteAddr(remote string) (host string, port int)

func Summarize

func Summarize(start, stop time.Time)

func UpdateLogLevel

func UpdateLogLevel()

Types

type AWS

type AWS struct {
}

func (AWS) GetCidrRanges

func (aws AWS) GetCidrRanges(ctx context.Context, cidrChan chan string, region string)

type AwsIPRangeResponse

type AwsIPRangeResponse struct {
	SyncToken  string       `json:"syncToken"`
	CreateDate string       `json:"createDate"`
	Prefixes   []*AwsPrefix `json:"prefixes"`
}

type AwsPrefix

type AwsPrefix struct {
	IPPrefix string `json:"ip_prefix"`
	Region   string `json:"region"`
	Service  string `json:"service"`
}

type CertResult

type CertResult struct {
	RemoteAddr   string   `json:"remote"`
	Subject      string   `json:"subject"`
	Issuer       string   `json:"issuer"`
	SANs         []string `json:"SANs"`
	ServerHeader string   `json:"server"`
	JARM         string   `json:"jarm"`
}

func ScanRemote

func ScanRemote(ctx context.Context, remote string, keywordRegex *regexp.Regexp) (*CertResult, error)

type CidrRangeInput

type CidrRangeInput interface {
	GetCidrRanges(context.Context, chan string, string)
}

func GetCspInstance

func GetCspInstance(cspString string) (CidrRangeInput, error)

type Cloudflare

type Cloudflare struct {
}

func (Cloudflare) GetCidrRanges

func (cloudflare Cloudflare) GetCidrRanges(ctx context.Context, cidrChan chan string, region string)

type DigitalOcean

type DigitalOcean struct {
}

func (DigitalOcean) GetCidrRanges

func (digitalOcean DigitalOcean) GetCidrRanges(ctx context.Context, cidrChan chan string, region string)

type GCP

type GCP struct {
}

func (GCP) GetCidrRanges

func (gcp GCP) GetCidrRanges(ctx context.Context, cidrChan chan string, region string)

type GcpIPRangeResponse

type GcpIPRangeResponse struct {
	SyncToken    string       `json:"syncToken"`
	CreationTime string       `json:"creationTime"`
	Prefixes     []*GcpPrefix `json:"prefixes"`
}

type GcpPrefix

type GcpPrefix struct {
	Ipv4Prefix string `json:"ipv4Prefix"` // IPv4 Cidr that usually appears
	Ipv6Prefix string `json:"ipv6Prefix"` // Ipv6 Cidr that appears sometimes
	// Service    string `json:"service"` # always remains "Google Cloud" hence skipped
	Scope string `json:"scope"` // Region Key
}

type Oracle

type Oracle struct {
}

func (Oracle) GetCidrRanges

func (oracle Oracle) GetCidrRanges(ctx context.Context, cidrChan chan string, region string)

type OracleIPRangeResponse

type OracleIPRangeResponse struct {
	RegionsElements []*RegionsElement `json:"regions"`
}

type OracleRegionCidr

type OracleRegionCidr struct {
	Cidr string `json:"cidr"`
}

type RegionsElement

type RegionsElement struct {
	Region            string              `json:"region"`
	OracleRegionCidrs []*OracleRegionCidr `json:"cidrs"`
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL