Documentation ¶
Overview ¶
Package security provides the Chrome Debugging Protocol commands, types, and events for the Security domain.
Security.
Generated by the chromedp-gen command.
Index ¶
- Variables
- type CertificateErrorAction
- func (t CertificateErrorAction) MarshalEasyJSON(out *jwriter.Writer)
- func (t CertificateErrorAction) MarshalJSON() ([]byte, error)
- func (t CertificateErrorAction) String() string
- func (t *CertificateErrorAction) UnmarshalEasyJSON(in *jlexer.Lexer)
- func (t *CertificateErrorAction) UnmarshalJSON(buf []byte) error
- type CertificateID
- type DisableParams
- func (p *DisableParams) Do(ctxt context.Context, h cdp.Handler) (err error)
- func (v DisableParams) MarshalEasyJSON(w *jwriter.Writer)
- func (v DisableParams) MarshalJSON() ([]byte, error)
- func (v *DisableParams) UnmarshalEasyJSON(l *jlexer.Lexer)
- func (v *DisableParams) UnmarshalJSON(data []byte) error
- type EnableParams
- type EventCertificateError
- type EventSecurityStateChanged
- type HandleCertificateErrorParams
- func (p *HandleCertificateErrorParams) Do(ctxt context.Context, h cdp.Handler) (err error)
- func (v HandleCertificateErrorParams) MarshalEasyJSON(w *jwriter.Writer)
- func (v HandleCertificateErrorParams) MarshalJSON() ([]byte, error)
- func (v *HandleCertificateErrorParams) UnmarshalEasyJSON(l *jlexer.Lexer)
- func (v *HandleCertificateErrorParams) UnmarshalJSON(data []byte) error
- type InsecureContentStatus
- type SetOverrideCertificateErrorsParams
- func (p *SetOverrideCertificateErrorsParams) Do(ctxt context.Context, h cdp.Handler) (err error)
- func (v SetOverrideCertificateErrorsParams) MarshalEasyJSON(w *jwriter.Writer)
- func (v SetOverrideCertificateErrorsParams) MarshalJSON() ([]byte, error)
- func (v *SetOverrideCertificateErrorsParams) UnmarshalEasyJSON(l *jlexer.Lexer)
- func (v *SetOverrideCertificateErrorsParams) UnmarshalJSON(data []byte) error
- type ShowCertificateViewerParams
- func (p *ShowCertificateViewerParams) Do(ctxt context.Context, h cdp.Handler) (err error)
- func (v ShowCertificateViewerParams) MarshalEasyJSON(w *jwriter.Writer)
- func (v ShowCertificateViewerParams) MarshalJSON() ([]byte, error)
- func (v *ShowCertificateViewerParams) UnmarshalEasyJSON(l *jlexer.Lexer)
- func (v *ShowCertificateViewerParams) UnmarshalJSON(data []byte) error
- type State
- type StateExplanation
Constants ¶
This section is empty.
Variables ¶
var EventTypes = []cdp.MethodType{ cdp.EventSecuritySecurityStateChanged, cdp.EventSecurityCertificateError, }
EventTypes all event types in the domain.
Functions ¶
This section is empty.
Types ¶
type CertificateErrorAction ¶
type CertificateErrorAction string
CertificateErrorAction the action to take when a certificate error occurs. continue will continue processing the request and cancel will cancel the request.
const ( CertificateErrorActionContinue CertificateErrorAction = "continue" CertificateErrorActionCancel CertificateErrorAction = "cancel" )
CertificateErrorAction values.
func (CertificateErrorAction) MarshalEasyJSON ¶
func (t CertificateErrorAction) MarshalEasyJSON(out *jwriter.Writer)
MarshalEasyJSON satisfies easyjson.Marshaler.
func (CertificateErrorAction) MarshalJSON ¶
func (t CertificateErrorAction) MarshalJSON() ([]byte, error)
MarshalJSON satisfies json.Marshaler.
func (CertificateErrorAction) String ¶
func (t CertificateErrorAction) String() string
String returns the CertificateErrorAction as string value.
func (*CertificateErrorAction) UnmarshalEasyJSON ¶
func (t *CertificateErrorAction) UnmarshalEasyJSON(in *jlexer.Lexer)
UnmarshalEasyJSON satisfies easyjson.Unmarshaler.
func (*CertificateErrorAction) UnmarshalJSON ¶
func (t *CertificateErrorAction) UnmarshalJSON(buf []byte) error
UnmarshalJSON satisfies json.Unmarshaler.
type CertificateID ¶
type CertificateID int64
CertificateID an internal certificate ID value.
func (CertificateID) Int64 ¶
func (t CertificateID) Int64() int64
Int64 returns the CertificateID as int64 value.
type DisableParams ¶
type DisableParams struct{}
DisableParams disables tracking security state changes.
func (*DisableParams) Do ¶
Do executes Security.disable against the provided context and target handler.
func (DisableParams) MarshalEasyJSON ¶
func (v DisableParams) MarshalEasyJSON(w *jwriter.Writer)
MarshalEasyJSON supports easyjson.Marshaler interface
func (DisableParams) MarshalJSON ¶
func (v DisableParams) MarshalJSON() ([]byte, error)
MarshalJSON supports json.Marshaler interface
func (*DisableParams) UnmarshalEasyJSON ¶
func (v *DisableParams) UnmarshalEasyJSON(l *jlexer.Lexer)
UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (*DisableParams) UnmarshalJSON ¶
func (v *DisableParams) UnmarshalJSON(data []byte) error
UnmarshalJSON supports json.Unmarshaler interface
type EnableParams ¶
type EnableParams struct{}
EnableParams enables tracking security state changes.
func (*EnableParams) Do ¶
Do executes Security.enable against the provided context and target handler.
func (EnableParams) MarshalEasyJSON ¶
func (v EnableParams) MarshalEasyJSON(w *jwriter.Writer)
MarshalEasyJSON supports easyjson.Marshaler interface
func (EnableParams) MarshalJSON ¶
func (v EnableParams) MarshalJSON() ([]byte, error)
MarshalJSON supports json.Marshaler interface
func (*EnableParams) UnmarshalEasyJSON ¶
func (v *EnableParams) UnmarshalEasyJSON(l *jlexer.Lexer)
UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (*EnableParams) UnmarshalJSON ¶
func (v *EnableParams) UnmarshalJSON(data []byte) error
UnmarshalJSON supports json.Unmarshaler interface
type EventCertificateError ¶
type EventCertificateError struct { EventID int64 `json:"eventId,omitempty"` // The ID of the event. ErrorType string `json:"errorType,omitempty"` // The type of the error. RequestURL string `json:"requestURL,omitempty"` // The url that was requested. }
EventCertificateError there is a certificate error. If overriding certificate errors is enabled, then it should be handled with the handleCertificateError command. Note: this event does not fire if the certificate error has been allowed internally.
func (EventCertificateError) MarshalEasyJSON ¶
func (v EventCertificateError) MarshalEasyJSON(w *jwriter.Writer)
MarshalEasyJSON supports easyjson.Marshaler interface
func (EventCertificateError) MarshalJSON ¶
func (v EventCertificateError) MarshalJSON() ([]byte, error)
MarshalJSON supports json.Marshaler interface
func (*EventCertificateError) UnmarshalEasyJSON ¶
func (v *EventCertificateError) UnmarshalEasyJSON(l *jlexer.Lexer)
UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (*EventCertificateError) UnmarshalJSON ¶
func (v *EventCertificateError) UnmarshalJSON(data []byte) error
UnmarshalJSON supports json.Unmarshaler interface
type EventSecurityStateChanged ¶
type EventSecurityStateChanged struct { SecurityState State `json:"securityState,omitempty"` // Security state. SchemeIsCryptographic bool `json:"schemeIsCryptographic,omitempty"` // True if the page was loaded over cryptographic transport such as HTTPS. Explanations []*StateExplanation `json:"explanations,omitempty"` // List of explanations for the security state. If the overall security state is `insecure` or `warning`, at least one corresponding explanation should be included. InsecureContentStatus *InsecureContentStatus `json:"insecureContentStatus,omitempty"` // Information about insecure content on the page. Summary string `json:"summary,omitempty"` // Overrides user-visible description of the state. }
EventSecurityStateChanged the security state of the page changed.
func (EventSecurityStateChanged) MarshalEasyJSON ¶
func (v EventSecurityStateChanged) MarshalEasyJSON(w *jwriter.Writer)
MarshalEasyJSON supports easyjson.Marshaler interface
func (EventSecurityStateChanged) MarshalJSON ¶
func (v EventSecurityStateChanged) MarshalJSON() ([]byte, error)
MarshalJSON supports json.Marshaler interface
func (*EventSecurityStateChanged) UnmarshalEasyJSON ¶
func (v *EventSecurityStateChanged) UnmarshalEasyJSON(l *jlexer.Lexer)
UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (*EventSecurityStateChanged) UnmarshalJSON ¶
func (v *EventSecurityStateChanged) UnmarshalJSON(data []byte) error
UnmarshalJSON supports json.Unmarshaler interface
type HandleCertificateErrorParams ¶
type HandleCertificateErrorParams struct { EventID int64 `json:"eventId"` // The ID of the event. Action CertificateErrorAction `json:"action"` // The action to take on the certificate error. }
HandleCertificateErrorParams handles a certificate error that fired a certificateError event.
func HandleCertificateError ¶
func HandleCertificateError(eventID int64, action CertificateErrorAction) *HandleCertificateErrorParams
HandleCertificateError handles a certificate error that fired a certificateError event.
parameters:
eventID - The ID of the event. action - The action to take on the certificate error.
func (*HandleCertificateErrorParams) Do ¶
Do executes Security.handleCertificateError against the provided context and target handler.
func (HandleCertificateErrorParams) MarshalEasyJSON ¶
func (v HandleCertificateErrorParams) MarshalEasyJSON(w *jwriter.Writer)
MarshalEasyJSON supports easyjson.Marshaler interface
func (HandleCertificateErrorParams) MarshalJSON ¶
func (v HandleCertificateErrorParams) MarshalJSON() ([]byte, error)
MarshalJSON supports json.Marshaler interface
func (*HandleCertificateErrorParams) UnmarshalEasyJSON ¶
func (v *HandleCertificateErrorParams) UnmarshalEasyJSON(l *jlexer.Lexer)
UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (*HandleCertificateErrorParams) UnmarshalJSON ¶
func (v *HandleCertificateErrorParams) UnmarshalJSON(data []byte) error
UnmarshalJSON supports json.Unmarshaler interface
type InsecureContentStatus ¶
type InsecureContentStatus struct { RanMixedContent bool `json:"ranMixedContent,omitempty"` // True if the page was loaded over HTTPS and ran mixed (HTTP) content such as scripts. DisplayedMixedContent bool `json:"displayedMixedContent,omitempty"` // True if the page was loaded over HTTPS and displayed mixed (HTTP) content such as images. ContainedMixedForm bool `json:"containedMixedForm,omitempty"` // True if the page was loaded over HTTPS and contained a form targeting an insecure url. RanContentWithCertErrors bool `json:"ranContentWithCertErrors,omitempty"` // True if the page was loaded over HTTPS without certificate errors, and ran content such as scripts that were loaded with certificate errors. DisplayedContentWithCertErrors bool `json:"displayedContentWithCertErrors,omitempty"` // True if the page was loaded over HTTPS without certificate errors, and displayed content such as images that were loaded with certificate errors. RanInsecureContentStyle State `json:"ranInsecureContentStyle,omitempty"` // Security state representing a page that ran insecure content. DisplayedInsecureContentStyle State `json:"displayedInsecureContentStyle,omitempty"` // Security state representing a page that displayed insecure content. }
InsecureContentStatus information about insecure content on the page.
func (InsecureContentStatus) MarshalEasyJSON ¶
func (v InsecureContentStatus) MarshalEasyJSON(w *jwriter.Writer)
MarshalEasyJSON supports easyjson.Marshaler interface
func (InsecureContentStatus) MarshalJSON ¶
func (v InsecureContentStatus) MarshalJSON() ([]byte, error)
MarshalJSON supports json.Marshaler interface
func (*InsecureContentStatus) UnmarshalEasyJSON ¶
func (v *InsecureContentStatus) UnmarshalEasyJSON(l *jlexer.Lexer)
UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (*InsecureContentStatus) UnmarshalJSON ¶
func (v *InsecureContentStatus) UnmarshalJSON(data []byte) error
UnmarshalJSON supports json.Unmarshaler interface
type SetOverrideCertificateErrorsParams ¶
type SetOverrideCertificateErrorsParams struct {
Override bool `json:"override"` // If true, certificate errors will be overridden.
}
SetOverrideCertificateErrorsParams enable/disable overriding certificate errors. If enabled, all certificate error events need to be handled by the DevTools client and should be answered with handleCertificateError commands.
func SetOverrideCertificateErrors ¶
func SetOverrideCertificateErrors(override bool) *SetOverrideCertificateErrorsParams
SetOverrideCertificateErrors enable/disable overriding certificate errors. If enabled, all certificate error events need to be handled by the DevTools client and should be answered with handleCertificateError commands.
parameters:
override - If true, certificate errors will be overridden.
func (*SetOverrideCertificateErrorsParams) Do ¶
Do executes Security.setOverrideCertificateErrors against the provided context and target handler.
func (SetOverrideCertificateErrorsParams) MarshalEasyJSON ¶
func (v SetOverrideCertificateErrorsParams) MarshalEasyJSON(w *jwriter.Writer)
MarshalEasyJSON supports easyjson.Marshaler interface
func (SetOverrideCertificateErrorsParams) MarshalJSON ¶
func (v SetOverrideCertificateErrorsParams) MarshalJSON() ([]byte, error)
MarshalJSON supports json.Marshaler interface
func (*SetOverrideCertificateErrorsParams) UnmarshalEasyJSON ¶
func (v *SetOverrideCertificateErrorsParams) UnmarshalEasyJSON(l *jlexer.Lexer)
UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (*SetOverrideCertificateErrorsParams) UnmarshalJSON ¶
func (v *SetOverrideCertificateErrorsParams) UnmarshalJSON(data []byte) error
UnmarshalJSON supports json.Unmarshaler interface
type ShowCertificateViewerParams ¶
type ShowCertificateViewerParams struct{}
ShowCertificateViewerParams displays native dialog with the certificate details.
func ShowCertificateViewer ¶
func ShowCertificateViewer() *ShowCertificateViewerParams
ShowCertificateViewer displays native dialog with the certificate details.
func (*ShowCertificateViewerParams) Do ¶
Do executes Security.showCertificateViewer against the provided context and target handler.
func (ShowCertificateViewerParams) MarshalEasyJSON ¶
func (v ShowCertificateViewerParams) MarshalEasyJSON(w *jwriter.Writer)
MarshalEasyJSON supports easyjson.Marshaler interface
func (ShowCertificateViewerParams) MarshalJSON ¶
func (v ShowCertificateViewerParams) MarshalJSON() ([]byte, error)
MarshalJSON supports json.Marshaler interface
func (*ShowCertificateViewerParams) UnmarshalEasyJSON ¶
func (v *ShowCertificateViewerParams) UnmarshalEasyJSON(l *jlexer.Lexer)
UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (*ShowCertificateViewerParams) UnmarshalJSON ¶
func (v *ShowCertificateViewerParams) UnmarshalJSON(data []byte) error
UnmarshalJSON supports json.Unmarshaler interface
type State ¶
type State string
State the security level of a page or resource.
const ( StateUnknown State = "unknown" StateNeutral State = "neutral" StateInsecure State = "insecure" StateWarning State = "warning" StateSecure State = "secure" StateInfo State = "info" )
State values.
func (State) MarshalEasyJSON ¶
MarshalEasyJSON satisfies easyjson.Marshaler.
func (State) MarshalJSON ¶
MarshalJSON satisfies json.Marshaler.
func (*State) UnmarshalEasyJSON ¶
UnmarshalEasyJSON satisfies easyjson.Unmarshaler.
func (*State) UnmarshalJSON ¶
UnmarshalJSON satisfies json.Unmarshaler.
type StateExplanation ¶
type StateExplanation struct { SecurityState State `json:"securityState,omitempty"` // Security state representing the severity of the factor being explained. Summary string `json:"summary,omitempty"` // Short phrase describing the type of factor. Description string `json:"description,omitempty"` // Full text explanation of the factor. HasCertificate bool `json:"hasCertificate,omitempty"` // True if the page has a certificate. }
StateExplanation an explanation of an factor contributing to the security state.
func (StateExplanation) MarshalEasyJSON ¶
func (v StateExplanation) MarshalEasyJSON(w *jwriter.Writer)
MarshalEasyJSON supports easyjson.Marshaler interface
func (StateExplanation) MarshalJSON ¶
func (v StateExplanation) MarshalJSON() ([]byte, error)
MarshalJSON supports json.Marshaler interface
func (*StateExplanation) UnmarshalEasyJSON ¶
func (v *StateExplanation) UnmarshalEasyJSON(l *jlexer.Lexer)
UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (*StateExplanation) UnmarshalJSON ¶
func (v *StateExplanation) UnmarshalJSON(data []byte) error
UnmarshalJSON supports json.Unmarshaler interface