Join our next Boost Your Cybersecurity IQ Skills Session: Top 5 Security Exposures Driving Claims.
Skip To Main Content
Cyber Incident? Get Help
Blog homeCyber InsuranceSecurityExecutive RisksBroker EducationLife at Coalition

Thinking about “context” for web assets: Automating attack surface tagging and classification for scale

Person > Colin Flaherty
Colin FlahertyMay 20, 2021
Share:
Featured Image for Thinking about “context” for web assets: Automating attack surface tagging and classification for scale

This research and article was written by Colin Flaherty as part of a summer internship with assistance from some of the team at Coalition: Beatriz Lacerda (Data Scientist), Florentino Bexiga (EM Data Collections) and Tiago Henriques (GM Customer Security).

Introduction to the problem

Assets can either be identified as domains or IP addresses. A single domain can point to multiple IP addresses, and multiple domains can point to a single IP address. Assets are assigned vulnerability scores through a slew of heuristic methods, discussion of which is beyond the scope of this article. If multiple assets have the same vulnerability score, how can one prioritize which of these assets to examine first?

For example, a login page without SSL is probably more important to address than a static blog post without SSL. One way to prioritize assets that have the same or similar vulnerability scores is by assigning them comparable “contexts” that encapsulate information about how sensitive or otherwise important they might be. One attempt to tackle this problem is “Eyeballer," an open-source machine learning project that uses a convolutional neural network to assign tags to webpage screenshots such as “homepage,” “custom 404,” “login,” and “old-looking.”

For the purposes of this article, I focus on contextualizing HTTP/HTTPS assets, i.e. web pages.

High-level approach

Contexts should be comparable because they will be used to compare assets. Therefore, structured contexts should be favored over free-form contexts. For example, it would be easier to compare two assets if each of their contexts consists of a subset of a lexicon of “context tags” than if each asset’s context consists of a paragraph of free-form text. Similarly, as size of this context tag lexicon increases, comparing contexts becomes more cumbersome. If every web asset is tagged with its top five most frequent words, then the total context tag set across all web assets could quickly become unmanageable as the number of web assets being tagged grows.

In order to create a set of context tags that could be used to contextualize web assets, web assets may be examined from several perspectives: spatio-visually (layout, colors, design) as a screenshot, as structured code (HTML, CSS), and as a document consisting of written language. A convolutional neural network like Eyeballer can be used to generate tags for a webpage based solely on screenshots of its fully-rendered state. This approach is useful for tags that represent complex categories that nevertheless possess distinctive visual elements, such as the category of “blog” web pages or the category of “old-looking” web pages.

However, it requires significant amounts of labeled data to be precise enough for production, and existing publicly available datasets are not sufficiently large.

An example of code-based context tag generation would be examining a web page’s HTML for an tag with type “password” in order to determine if the page has a login feature. Finally, for text-based tags, natural language processing techniques such as bag-of-words frequency analysis can be applied.

For web asset contexts, one area to explore further is combining spatio-visual information and semantic information to generate tags. A simple bag-of-words frequency analysis may not be very effective on web pages because word frequencies on web pages exhibit sparsity. While important words may show up with high-frequency in traditional text (books, articles, etc.), important words might show up only once or twice on a web page if much of their importance is conveyed via positioning or styling. For example, an “About” page for a company might only display the word “About” once, but “About” would probably appear in large size font at the top of the page, possibly with extra embellishments and separated from other text.

Eyeballer

One proposed approach to providing context for web assets is Eyeballer, which uses a convolutional neural network to categorize web page screenshots. It is open-sourced, and its creators (“BishopFox”) have trained and tested it on a set of ~13,000 webpage screenshots. Its architecture consists of a MobileNet layer pre-trained on the popular ImageNet dataset and then a fine-tuning layer consisting of global average pooling and dense neural network layers for classification.

It uses MobileNet as opposed to other image models built for transfer learning because MobileNet is lightweight relative to its peers. It is pre-trained to determine if a web page can be identified with a subset of the following tags: “homepage,” “custom 404,” “login,” and “old-looking.” On a set of approximately 2,000 images (manually labeled by BishopFox), the network exhibits an all-or-nothing accuracy of 73.77%. For specific labels, the following precision and recall percentages were observed.

LabelCustom404LoginHomepageOld-lookingPrecision95.38%82.04%76.61%86.82%Recall66.19%89.89%94.16%66.32%

The convolutional neural network approach should be well-suited towards identifying high-level visual context such as whether a page is a blog or a homepage. However, in its current state Eyeballer may not be accurate enough for context generation in production.

Since it is unclear how complex categories such as that of a “homepage” could be identified from a code or text-based perspective, I turn to how Eyeballer could be improved.

In particular, there are four avenues for improvement: increased data, hyperparameter tuning, improving the model’s ability to extract features specific to web pages, and more precise label choice. Firstly, the most obvious way to improve this model would be to increase the training data set. However, this can be expensive. The default threshold at which a confidence score is interpreted as predicting a label is 50%. Raising this threshold to 90% improved precision for the “old-looking” label to 94.21% but lowered its recall to 39.58%. In general, adjusting this threshold means trading recall for precision.

Secondly, the specific architecture of Eyeballer could possibly be improved in future versions to better learn to extract web page features. The current training paradigm begins with a neural network pretrained on ImageNet (a large corpus of labeled images of objects) and then trains a fine-tuning layer on top of it. The underlying pre-trained neural network is not trained, however, to extract different features of a webpage (such as navigation bars or input fields) but is rather trained to identify more general lines and shapes. Due to Eyeballer’s global average pooling layer, which is immediately applied to the output of MobileNet, Eyeballer does not have a layer of convolutions that learn to extract features specific to web pages such as navigation bars or comment sections.

Exploring additional convolutional feature extraction layers (in conjunction with additional training data) could engender nontrivial improvements. In addition to training these additional layers with the existing dataset provided by BishopFox, transfer learning could also be applied. By temporarily replacing the Eyeballer classification layer with another classification layer that outputs whether a webpage contains common web page elements such as a navigation bar or comment section, and training this modified neural network on a dataset of web screenshots annotated with whether they include each of these web page elements, the intermediary convolution layers might learn to extract these web page elements.

Finally, label choice might help to improve the model. For example, it might be the case that the model is struggling to achieve a >90% precision for homepage classification because the visual particulars of homepages are so varied. 8,000 training screenshots may not be enough to capture this diversity sufficiently. However, note that homepages are of interest primarily because they typically link to many other pages, which may themselves possess sensitive assets, and then note that these links usually appear in some form of a navigation bar. Therefore, it might be just as useful to label web assets by whether or not they have a navigation bar as it is to label them by whether or not they are a homepage. Since navigation bars are less varied in form than homepages (they usually are at the tops of pages, display rows of words or phrases, etc.) a convolutional neural network may be able to learn to identify them more easily than they could learn to identify homepages in general.

HTML and CSS-informed keyword extraction

A bag-of-words approach can be applied to a webpage pretty simply. Firstly, the domain in question is visited. Then, the response’s HTML is parsed for all words that are not HTML tags or arguments. This will yield a multiset of words that can be cleaned with standard natural language processing techniques such as tokenization, removing stop words, removing punctuation, only preserving adjectives and nouns, generating n-grams, and lemmatization. This cleaning can be achieved easily with a programming package such as NLTK (see this demo code).

Finally, the resultant cleaned set of words forms a multiset, or “bag of words,” that can be further filtered for keyword extraction.

While the bag-of-words approach is useful for keyword extraction in general, the simplest way of determining word importance (frequency analysis) is not particularly well-suited for web page analysis. On a web page, the most important words may only appear infrequently, and visual layout and design is an important means through which information is conveyed. To circumvent this limitation, words can be tagged with features that signify their importance beyond frequency, and this expanded feature set can be used to determine relative word importance.

Firstly, words can be analyzed for spatial-visual importance. One heuristic that could be explored is the number of words that exist within a circle around a particular instance of a word. For example, suppose the word “About” appears on a web page twice. Then, an algorithm can be employed to take as input a screenshot of the webpage in question and annotate each instance of a word with a dot at its center. For each instance of the word “About,” a second algorithm can count the number of words (represented by dots) within a circle of X radius. If there are very few neighboring words for one of the instances of “About,” it could be concluded that this instance of “About” is a title and that furthermore this web page is an “About” page.

Practically, this approach is limited by the fact that not all “About” pages will display the word “About” as a title. They might instead display the words “Our Story” or “Meet the Owners.” While this approach can look for these synonym titles as well, it will not exhaustively identify all possible titles for an “About” page. In other words, the precision would be high (if a page has “About” or “Our Story” as a title, then it most likely is an “About” page) but recall might be lower (if an “About” page has a different title, then it might not be properly identified).

heuristic

Secondly, words can be analyzed via a web page’s HTML. For example, a word is probably more important if it is included within the in a web page’s <head>. On the “About” page for Coalition, there is no generic title within the body of the page that strongly indicates that the page is </span><a class="MuiTypography-root MuiTypography-inherit MuiLink-root MuiLink-underlineAlways css-1ewe708-MuiTypography-root-MuiLink-root-Link-root" href="https://www.coalitioninc.com/origin" target="_blank" rel="noopener noreferrer" data-testid="Text-hyperlink" data-large-text="false">an “About” page.</a></p><p class="MuiTypography-root MuiTypography-body1 css-bsjzx4-MuiTypography-root"><span class="MuiTypography-root MuiTypography-body1 css-bsjzx4-MuiTypography-root" data-testid="Text-html-body1">However, the <title> (top-left) includes “Our Story,” and the selected navbar element (top-middle) includes “About.” An initial list of tags to mark as signifying higher importance could be: <h1> through <h6>, <title>, <strong>, <summary>, <th>, <button>, and <a>.</span></p><img data-testid="Media" alt="image" loading="lazy" width="574" height="376" decoding="async" data-nimg="1" class="css-182ql0r-Media-root" style="color:transparent" sizes="100vw" srcSet="/_next/image?url=https%3A%2F%2Fimages.ctfassets.net%2Fo2pgk9gufvga%2Fyn9rv6cvwN5HMJTpvBJdi%2Fd4d07d64e8d4e594159601e53506540c%2Fimage.png&w=640&q=75 640w, /_next/image?url=https%3A%2F%2Fimages.ctfassets.net%2Fo2pgk9gufvga%2Fyn9rv6cvwN5HMJTpvBJdi%2Fd4d07d64e8d4e594159601e53506540c%2Fimage.png&w=750&q=75 750w, /_next/image?url=https%3A%2F%2Fimages.ctfassets.net%2Fo2pgk9gufvga%2Fyn9rv6cvwN5HMJTpvBJdi%2Fd4d07d64e8d4e594159601e53506540c%2Fimage.png&w=828&q=75 828w, /_next/image?url=https%3A%2F%2Fimages.ctfassets.net%2Fo2pgk9gufvga%2Fyn9rv6cvwN5HMJTpvBJdi%2Fd4d07d64e8d4e594159601e53506540c%2Fimage.png&w=1080&q=75 1080w, /_next/image?url=https%3A%2F%2Fimages.ctfassets.net%2Fo2pgk9gufvga%2Fyn9rv6cvwN5HMJTpvBJdi%2Fd4d07d64e8d4e594159601e53506540c%2Fimage.png&w=1200&q=75 1200w, /_next/image?url=https%3A%2F%2Fimages.ctfassets.net%2Fo2pgk9gufvga%2Fyn9rv6cvwN5HMJTpvBJdi%2Fd4d07d64e8d4e594159601e53506540c%2Fimage.png&w=1920&q=75 1920w, /_next/image?url=https%3A%2F%2Fimages.ctfassets.net%2Fo2pgk9gufvga%2Fyn9rv6cvwN5HMJTpvBJdi%2Fd4d07d64e8d4e594159601e53506540c%2Fimage.png&w=2048&q=75 2048w, /_next/image?url=https%3A%2F%2Fimages.ctfassets.net%2Fo2pgk9gufvga%2Fyn9rv6cvwN5HMJTpvBJdi%2Fd4d07d64e8d4e594159601e53506540c%2Fimage.png&w=3840&q=75 3840w" src="/_next/image?url=https%3A%2F%2Fimages.ctfassets.net%2Fo2pgk9gufvga%2Fyn9rv6cvwN5HMJTpvBJdi%2Fd4d07d64e8d4e594159601e53506540c%2Fimage.png&w=3840&q=75"/><p class="MuiTypography-root MuiTypography-body1 css-bsjzx4-MuiTypography-root" data-testid="Text-body1">Thirdly, words can be analyzed via their styling in CSS. If the size of a word according to its styling is in the upper quartile of word sizes on a web page, then this word is more likely to be important on that page. Similarly, bold font, italics, underlining, and a font that differs from that of most words on the page all indicate that a word might be of particular importance.</p><p class="MuiTypography-root MuiTypography-body1 css-bsjzx4-MuiTypography-root"><span class="MuiTypography-root MuiTypography-body1 css-bsjzx4-MuiTypography-root" data-testid="Text-html-body1">Finally, words can be analyzed to determine whether or not they are displayed in navigation bars or side bars. A convolutional neural network can be used to identify and annotate sidebars and navigation bars in a screenshot of a webpage. A second neural network can be used to annotate words in a screenshot of a webpage. These two annotation sets can be intersected to determine if a particular word is displayed in a sidebar or navigation bar. To handle the situation where sidebars or navigation bars are dropdowns, or otherwise only appear on hover or click of a particular button, the screenshotting algorithm can take a screenshot after hovering and clicking on every <button> and <a> that does not have an “href” or “form” parameter.</span></p><p class="MuiTypography-root MuiTypography-body1 css-bsjzx4-MuiTypography-root" data-testid="Text-body1">These analyses will enable more robust weighting of word importance on web pages. Once these features are collected, then they can be used to extract key words. Initially, a heuristic could be applied to generate a single “word importance” from these features. Eventually, a statistical model such as a logistic regression could be trained to predict if a word is important based on these features. If all “important” words are labeled as keywords for a web page, however, a dimensionality issue could arise: If web pages’ keywords are too diverse, it will be hard to compare them. One fix to this problem would be to only extract key words that are also contained in some external lexicon. To make this fix less brittle, synonyms and close linguistic cousins of words in this external lexicon could also be extracted as keywords. For example, if the most important word on a web page is “money” but only “financial” exists in the lexicon, then there would still be a match, and “money” would be annotated with a note that it was matched because it is a close linguistic cousin of “financial.”</p><h2 class="MuiTypography-root MuiTypography-h2 css-170sloj-MuiTypography-root" id="html-analysis" data-section-name="html-analysis" data-testid="Text-h2"><b>HTML analysis</b></h2><p class="MuiTypography-root MuiTypography-body1 css-bsjzx4-MuiTypography-root"><span class="MuiTypography-root MuiTypography-body1 css-bsjzx4-MuiTypography-root" data-testid="Text-html-body1">Tags can be generated by traditional HTML analysis as well. For example, a login feature on a web page probably contains an <input> with a type or placeholder that includes “username,” “email,” “password,” or “pin.” If a web asset points to a homepage, then the login feature might be hidden on a web page that can be navigated to via a link on the homepage. An algorithm can load and analyze the homepage, visit all of its links, and then analyze all of the HTML returned from those links of the same domain or subdomain, in order to find the login feature if it exists (see </span><a class="MuiTypography-root MuiTypography-inherit MuiLink-root MuiLink-underlineAlways css-1ewe708-MuiTypography-root-MuiLink-root-Link-root" href="https://colab.research.google.com/drive/1U8Id0ElcrIuuGyurbKtUNJGY2CZXXjtN?usp=sharing" target="_blank" rel="noopener noreferrer" data-testid="Text-hyperlink" data-large-text="false">this demo code</a>)</p><p class="MuiTypography-root MuiTypography-body1 css-bsjzx4-MuiTypography-root" data-testid="Text-body1">There are really two approaches to creating context tags for web pages: analysis (i.e. HTML parsing) and machine learning. Simpler tasks such as determining if a page has a login feature should be handled with an analytical approach, as this provides stronger performance guarantees. However, more complex tasks such as determining if a page is a homepage practically require a machine learning approach. Complex tasks like this can involve machine learning applied to either screenshots or HTML. While the former seems simpler, the latter actually sometimes makes more sense. HTML is an encoding of the visual aspects of a webpage, and so by training models on HTML, these models can largely avoid the task of having to create internal representations of websites from screenshots. Instead, they start with structured representation of screenshots, reducing the complexity of the learning task.</p><p class="MuiTypography-root MuiTypography-body1 css-bsjzx4-MuiTypography-root" data-testid="Text-body1">By creating a set of context tags through a variety of means including screenshot analysis with deep learning, text analysis with natural language processing, and code analysis, structured representations of websites can be constructed that enable their categorization and comparison. Since context tags will largely be qualitative in nature (i.e. nouns such as “blog” or adjectives such as “old-looking”), they will have to be given a heuristic ordering by a domain expert.</p><blockquote><p class="MuiTypography-root MuiTypography-body1 css-bsjzx4-MuiTypography-root" data-testid="Text-body1">Coalition recently launched Coalition Control — an integrated platform that allows organizations to take control of their cyber risk. Sign up with just your email address today and start controlling your risk.</p></blockquote><p class="MuiTypography-root MuiTypography-body1 css-bsjzx4-MuiTypography-root" data-testid="Text-body1"> </p></div></div></div><style data-emotion="css pupn83-Blog-relatedBlogPosts">.css-pupn83-Blog-relatedBlogPosts{grid-column:col-start 1/span 12;-webkit-order:6;-ms-flex-order:6;order:6;margin-top:48px;}@media (min-width:900px){.css-pupn83-Blog-relatedBlogPosts{margin-top:60px;grid-column:col-start 2/span 10;}}@media (max-width:899.95px){.css-pupn83-Blog-relatedBlogPosts [class$=Collection-contentContainer] [class$=Collection-viewMoreLinkTop]{display:none;}}</style><style data-emotion="css 15nnixh-Blog-relatedBlogPosts">.css-15nnixh-Blog-relatedBlogPosts{grid-column:col-start 1/span 12;-webkit-order:6;-ms-flex-order:6;order:6;margin-top:48px;}@media (min-width:900px){.css-15nnixh-Blog-relatedBlogPosts{margin-top:60px;grid-column:col-start 2/span 10;}}@media (max-width:899.95px){.css-15nnixh-Blog-relatedBlogPosts [class$=Collection-contentContainer] [class$=Collection-viewMoreLinkTop]{display:none;}}</style><div class="MuiBox-root css-15nnixh-Blog-relatedBlogPosts"><style data-emotion="css 1amtins-Collection-root">.css-1amtins-Collection-root [class$=Collection-itemsContainer]{grid-template-columns:repeat(1, minmax(0, 1fr));}@media (min-width:900px){.css-1amtins-Collection-root [class$=Collection-itemsContainer]{grid-template-columns:repeat(3, minmax(0, 1fr));}}.css-1amtins-Collection-root [class$=Collection-contentContainer]{-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;}.css-1amtins-Collection-root [class$=root-Card-root]{grid-column:unset;}.css-1amtins-Collection-root [class$=Text-body]{margin-top:16px;height:auto;}.css-1amtins-Collection-root [class$=Text-body] >*{display:block!important;}</style><style data-emotion="css u8jtpf-Collection-root">.css-u8jtpf-Collection-root{padding-top:0px;padding-bottom:0px;background-color:transparent;}.css-u8jtpf-Collection-root [class$=Collection-itemsContainer]{grid-template-columns:repeat(1, minmax(0, 1fr));}@media (min-width:900px){.css-u8jtpf-Collection-root [class$=Collection-itemsContainer]{grid-template-columns:repeat(3, minmax(0, 1fr));}}.css-u8jtpf-Collection-root [class$=Collection-contentContainer]{-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;}.css-u8jtpf-Collection-root [class$=root-Card-root]{grid-column:unset;}.css-u8jtpf-Collection-root [class$=Text-body]{margin-top:16px;height:auto;}.css-u8jtpf-Collection-root [class$=Text-body] >*{display:block!important;}</style><div class="MuiBox-root css-u8jtpf-Collection-root" colorscheme="default" data-testid="Collection" ownerState="[object Object]"><style data-emotion="css 3cvqlb-Collection-container">.css-3cvqlb-Collection-container{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-align-items:flex-start;-webkit-box-align:flex-start;-ms-flex-align:flex-start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;border-radius:10px;padding-top:0px;padding-bottom:0px;}</style><style data-emotion="css 3zox5s-MuiContainer-root-Collection-container">.css-3zox5s-MuiContainer-root-Collection-container{width:100%;margin-left:auto;box-sizing:border-box;margin-right:auto;display:block;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-align-items:flex-start;-webkit-box-align:flex-start;-ms-flex-align:flex-start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;border-radius:10px;padding-top:0px;padding-bottom:0px;}@media (min-width:1200px){.css-3zox5s-MuiContainer-root-Collection-container{max-width:1200px;}}</style><div class="MuiContainer-root MuiContainer-maxWidthLg MuiContainer-disableGutters css-3zox5s-MuiContainer-root-Collection-container" data-testid="Collection-container"><style data-emotion="css 1qeohwy-Collection-contentContainer">.css-1qeohwy-Collection-contentContainer{width:100%;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:flex-end;-webkit-box-align:flex-end;-ms-flex-align:flex-end;align-items:flex-end;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;margin-bottom:48px;}</style><style data-emotion="css 3zsr4k-Collection-contentContainer">.css-3zsr4k-Collection-contentContainer{width:100%;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:flex-end;-webkit-box-align:flex-end;-ms-flex-align:flex-end;align-items:flex-end;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;margin-bottom:48px;}</style><div class="MuiBox-root css-3zsr4k-Collection-contentContainer"><style data-emotion="css anjpbs-Collection-text">.css-anjpbs-Collection-text{z-index:10;}</style><style data-emotion="css bd7vl3-Text-root-Collection-text">.css-bd7vl3-Text-root-Collection-text{white-space:pre-wrap;text-align:flex-start;z-index:10;}.css-bd7vl3-Text-root-Collection-text ol,.css-bd7vl3-Text-root-Collection-text ul,.css-bd7vl3-Text-root-Collection-text li{padding:revert;}.css-bd7vl3-Text-root-Collection-text ol,.css-bd7vl3-Text-root-Collection-text ul{padding-left:16px;}.css-bd7vl3-Text-root-Collection-text ol ol{list-style-type:upper-alpha;}.css-bd7vl3-Text-root-Collection-text ol ol ol{list-style-type:revert;}.css-bd7vl3-Text-root-Collection-text ol ol ol ol{list-style-type:upper-alpha;}.css-bd7vl3-Text-root-Collection-text ol ol ol ol ol{list-style-type:revert;}.css-bd7vl3-Text-root-Collection-text [class$=MuiIcon-root-Text-checkIcon]{font-size:0.875rem;}</style><style data-emotion="css 1y92mxh-Text-root-Collection-text">.css-1y92mxh-Text-root-Collection-text{text-align:flex-start;white-space:pre-wrap;text-align:flex-start;z-index:10;}.css-1y92mxh-Text-root-Collection-text ol,.css-1y92mxh-Text-root-Collection-text ul,.css-1y92mxh-Text-root-Collection-text li{padding:revert;}.css-1y92mxh-Text-root-Collection-text ol,.css-1y92mxh-Text-root-Collection-text ul{padding-left:16px;}.css-1y92mxh-Text-root-Collection-text ol ol{list-style-type:upper-alpha;}.css-1y92mxh-Text-root-Collection-text ol ol ol{list-style-type:revert;}.css-1y92mxh-Text-root-Collection-text ol ol ol ol{list-style-type:upper-alpha;}.css-1y92mxh-Text-root-Collection-text ol ol ol ol ol{list-style-type:revert;}.css-1y92mxh-Text-root-Collection-text [class$=MuiIcon-root-Text-checkIcon]{font-size:0.875rem;}</style><div class="MuiBox-root css-1y92mxh-Text-root-Collection-text" data-testid="Collection-body" highlightColor="yellow" eyebrowColor="default" titleColor="default" colorscheme="default"><div class="MuiBox-root css-11xyynr-Text-contentContainer"><style data-emotion="css hueixr-Text-richTitle">.css-hueixr-Text-richTitle{word-break:break-word;margin-top:0;}.css-hueixr-Text-richTitle >*{color:#000000;}.css-hueixr-Text-richTitle h1{font-family:'Degular',sans-serif;font-size:2.5rem;line-height:1;letter-spacing:0;font-weight:300;}@media (min-width:600px){.css-hueixr-Text-richTitle h1{font-size:3.5rem;}}@media (min-width:900px){.css-hueixr-Text-richTitle h1{font-size:4.5rem;}}.css-hueixr-Text-richTitle h2{font-family:'Degular',sans-serif;font-size:2rem;line-height:1;letter-spacing:0;font-weight:300;}@media (min-width:600px){.css-hueixr-Text-richTitle h2{font-size:3rem;}}@media (min-width:900px){.css-hueixr-Text-richTitle h2{font-size:3.75rem;}}.css-hueixr-Text-richTitle h3{font-family:'Degular',sans-serif;font-size:1.75rem;line-height:1;letter-spacing:0;font-weight:400;}@media (min-width:600px){.css-hueixr-Text-richTitle h3{font-size:2.5rem;}}@media (min-width:900px){.css-hueixr-Text-richTitle h3{font-size:3rem;}}.css-hueixr-Text-richTitle h4{font-family:'Degular',sans-serif;font-size:1.5rem;line-height:1.1;letter-spacing:0;font-weight:400;}@media (min-width:600px){.css-hueixr-Text-richTitle h4{font-size:2rem;}}@media (min-width:900px){.css-hueixr-Text-richTitle h4{font-size:2.5rem;}}.css-hueixr-Text-richTitle h5{font-family:'Degular',sans-serif;font-size:1.25rem;line-height:1.1;letter-spacing:0;font-weight:400;}@media (min-width:600px){.css-hueixr-Text-richTitle h5{font-size:1.5rem;}}@media (min-width:900px){.css-hueixr-Text-richTitle h5{font-size:2rem;}}.css-hueixr-Text-richTitle h6{font-family:'Degular',sans-serif;font-size:1.125rem;line-height:1.1;letter-spacing:0;font-weight:500;}@media (min-width:600px){.css-hueixr-Text-richTitle h6{font-size:1.25rem;}}@media (min-width:900px){.css-hueixr-Text-richTitle h6{font-size:1.5rem;}}.css-hueixr-Text-richTitle p{font-family:'Public Sans',sans-serif;font-size:1.125rem;line-height:1.35;letter-spacing:0;}.css-hueixr-Text-richTitle u{color:#000000;display:inline-block;background:linear-gradient(to left, #FFBB3C, #FFBB3C) no-repeat 0px 0.125em;padding:0 0.075em;margin:0 -0.075em;-webkit-text-decoration:none;text-decoration:none;}.css-hueixr-Text-richTitle u b{color:#000000;}.css-hueixr-Text-richTitle p>u{padding:0.175em 0.175em;margin:-0.175em -0.175em;}.css-hueixr-Text-richTitle h3 sup{font-size:1.2rem;}</style><style data-emotion="css 966259-Text-richTitle">.css-966259-Text-richTitle{word-break:break-word;margin-top:0;}.css-966259-Text-richTitle >*{color:#000000;}.css-966259-Text-richTitle h1{font-family:'Degular',sans-serif;font-size:2.5rem;line-height:1;letter-spacing:0;font-weight:300;}@media (min-width:600px){.css-966259-Text-richTitle h1{font-size:3.5rem;}}@media (min-width:900px){.css-966259-Text-richTitle h1{font-size:4.5rem;}}.css-966259-Text-richTitle h2{font-family:'Degular',sans-serif;font-size:2rem;line-height:1;letter-spacing:0;font-weight:300;}@media (min-width:600px){.css-966259-Text-richTitle h2{font-size:3rem;}}@media (min-width:900px){.css-966259-Text-richTitle h2{font-size:3.75rem;}}.css-966259-Text-richTitle h3{font-family:'Degular',sans-serif;font-size:1.75rem;line-height:1;letter-spacing:0;font-weight:400;}@media (min-width:600px){.css-966259-Text-richTitle h3{font-size:2.5rem;}}@media (min-width:900px){.css-966259-Text-richTitle h3{font-size:3rem;}}.css-966259-Text-richTitle h4{font-family:'Degular',sans-serif;font-size:1.5rem;line-height:1.1;letter-spacing:0;font-weight:400;}@media (min-width:600px){.css-966259-Text-richTitle h4{font-size:2rem;}}@media (min-width:900px){.css-966259-Text-richTitle h4{font-size:2.5rem;}}.css-966259-Text-richTitle h5{font-family:'Degular',sans-serif;font-size:1.25rem;line-height:1.1;letter-spacing:0;font-weight:400;}@media (min-width:600px){.css-966259-Text-richTitle h5{font-size:1.5rem;}}@media (min-width:900px){.css-966259-Text-richTitle h5{font-size:2rem;}}.css-966259-Text-richTitle h6{font-family:'Degular',sans-serif;font-size:1.125rem;line-height:1.1;letter-spacing:0;font-weight:500;}@media (min-width:600px){.css-966259-Text-richTitle h6{font-size:1.25rem;}}@media (min-width:900px){.css-966259-Text-richTitle h6{font-size:1.5rem;}}.css-966259-Text-richTitle p{font-family:'Public Sans',sans-serif;font-size:1.125rem;line-height:1.35;letter-spacing:0;}.css-966259-Text-richTitle u{color:#000000;display:inline-block;background:linear-gradient(to left, #FFBB3C, #FFBB3C) no-repeat 0px 0.125em;padding:0 0.075em;margin:0 -0.075em;-webkit-text-decoration:none;text-decoration:none;}.css-966259-Text-richTitle u b{color:#000000;}.css-966259-Text-richTitle p>u{padding:0.175em 0.175em;margin:-0.175em -0.175em;}.css-966259-Text-richTitle h3 sup{font-size:1.2rem;}</style><div class="MuiBox-root css-966259-Text-richTitle"><style data-emotion="css 1tryqdm-MuiTypography-root">.css-1tryqdm-MuiTypography-root{margin:0;font-family:'Degular',sans-serif;font-size:1.5rem;line-height:1.1;letter-spacing:0;font-weight:400;}@media (min-width:600px){.css-1tryqdm-MuiTypography-root{font-size:2rem;}}@media (min-width:900px){.css-1tryqdm-MuiTypography-root{font-size:2.5rem;}}</style><h4 class="MuiTypography-root MuiTypography-h4 css-1tryqdm-MuiTypography-root" data-testid="Text-h4">Related blog posts</h4></div></div></div><style data-emotion="css 1liq5wo-Collection-viewMoreLinkTop">.css-1liq5wo-Collection-viewMoreLinkTop [class$=Link-root]>*{font-weight:700;}</style><style data-emotion="css 1jwvg2e-Link-root-Collection-viewMoreLinkTop">.css-1jwvg2e-Link-root-Collection-viewMoreLinkTop{-webkit-text-decoration:none;text-decoration:none;font-weight:bold;}.css-1jwvg2e-Link-root-Collection-viewMoreLinkTop .subText{-webkit-text-decoration:underline;text-decoration:underline;margin-left:4px;}.css-1jwvg2e-Link-root-Collection-viewMoreLinkTop[data-large-text=true]{display:inline-block;text-wrap:wrap;text-align:left;}.css-1jwvg2e-Link-root-Collection-viewMoreLinkTop .MuiIcon-root{font-size:10px;}.css-1jwvg2e-Link-root-Collection-viewMoreLinkTop .MuiBox-root{margin-left:4px;}.css-1jwvg2e-Link-root-Collection-viewMoreLinkTop [class$=Link-root]>*{font-weight:700;}</style><style data-emotion="css 10yrm9o-MuiLink-root-Link-root-Collection-viewMoreLinkTop">.css-10yrm9o-MuiLink-root-Link-root-Collection-viewMoreLinkTop{-webkit-text-decoration:underline;text-decoration:underline;text-decoration-color:rgba(39, 115, 224, 0.4);-webkit-text-decoration:none;text-decoration:none;font-weight:bold;}.css-10yrm9o-MuiLink-root-Link-root-Collection-viewMoreLinkTop:hover{text-decoration-color:inherit;}.css-10yrm9o-MuiLink-root-Link-root-Collection-viewMoreLinkTop .subText{-webkit-text-decoration:underline;text-decoration:underline;margin-left:4px;}.css-10yrm9o-MuiLink-root-Link-root-Collection-viewMoreLinkTop[data-large-text=true]{display:inline-block;text-wrap:wrap;text-align:left;}.css-10yrm9o-MuiLink-root-Link-root-Collection-viewMoreLinkTop .MuiIcon-root{font-size:10px;}.css-10yrm9o-MuiLink-root-Link-root-Collection-viewMoreLinkTop .MuiBox-root{margin-left:4px;}.css-10yrm9o-MuiLink-root-Link-root-Collection-viewMoreLinkTop [class$=Link-root]>*{font-weight:700;}</style><style data-emotion="css 17cvdox-MuiTypography-root-MuiLink-root-Link-root-Collection-viewMoreLinkTop">.css-17cvdox-MuiTypography-root-MuiLink-root-Link-root-Collection-viewMoreLinkTop{margin:0;color:#2773e0;-webkit-text-decoration:underline;text-decoration:underline;text-decoration-color:rgba(39, 115, 224, 0.4);-webkit-text-decoration:none;text-decoration:none;font-weight:bold;}.css-17cvdox-MuiTypography-root-MuiLink-root-Link-root-Collection-viewMoreLinkTop:hover{text-decoration-color:inherit;}.css-17cvdox-MuiTypography-root-MuiLink-root-Link-root-Collection-viewMoreLinkTop .subText{-webkit-text-decoration:underline;text-decoration:underline;margin-left:4px;}.css-17cvdox-MuiTypography-root-MuiLink-root-Link-root-Collection-viewMoreLinkTop[data-large-text=true]{display:inline-block;text-wrap:wrap;text-align:left;}.css-17cvdox-MuiTypography-root-MuiLink-root-Link-root-Collection-viewMoreLinkTop .MuiIcon-root{font-size:10px;}.css-17cvdox-MuiTypography-root-MuiLink-root-Link-root-Collection-viewMoreLinkTop .MuiBox-root{margin-left:4px;}.css-17cvdox-MuiTypography-root-MuiLink-root-Link-root-Collection-viewMoreLinkTop [class$=Link-root]>*{font-weight:700;}</style><style data-emotion="css 1rqplbd-Link-root-MuiTypography-root-MuiLink-root-Link-root-Collection-viewMoreLinkTop">.css-1rqplbd-Link-root-MuiTypography-root-MuiLink-root-Link-root-Collection-viewMoreLinkTop{margin:0;color:#2773e0;-webkit-text-decoration:underline;text-decoration:underline;text-decoration-color:rgba(39, 115, 224, 0.4);-webkit-text-decoration:none;text-decoration:none;font-weight:bold;}.css-1rqplbd-Link-root-MuiTypography-root-MuiLink-root-Link-root-Collection-viewMoreLinkTop .subText{-webkit-text-decoration:underline;text-decoration:underline;margin-left:4px;}.css-1rqplbd-Link-root-MuiTypography-root-MuiLink-root-Link-root-Collection-viewMoreLinkTop[data-large-text=true]{display:inline-block;text-wrap:wrap;text-align:left;}.css-1rqplbd-Link-root-MuiTypography-root-MuiLink-root-Link-root-Collection-viewMoreLinkTop:hover{text-decoration-color:inherit;}.css-1rqplbd-Link-root-MuiTypography-root-MuiLink-root-Link-root-Collection-viewMoreLinkTop .subText{-webkit-text-decoration:underline;text-decoration:underline;margin-left:4px;}.css-1rqplbd-Link-root-MuiTypography-root-MuiLink-root-Link-root-Collection-viewMoreLinkTop[data-large-text=true]{display:inline-block;text-wrap:wrap;text-align:left;}.css-1rqplbd-Link-root-MuiTypography-root-MuiLink-root-Link-root-Collection-viewMoreLinkTop .MuiIcon-root{font-size:10px;}.css-1rqplbd-Link-root-MuiTypography-root-MuiLink-root-Link-root-Collection-viewMoreLinkTop .MuiBox-root{margin-left:4px;}.css-1rqplbd-Link-root-MuiTypography-root-MuiLink-root-Link-root-Collection-viewMoreLinkTop [class$=Link-root]>*{font-weight:700;}</style><a class="MuiTypography-root MuiTypography-link MuiLink-root MuiLink-underlineAlways css-1rqplbd-Link-root-MuiTypography-root-MuiLink-root-Link-root-Collection-viewMoreLinkTop" colorscheme="default" target="_self" aria-label="See all articles" data-large-text="false" href="/en-ca/blog/security-labs">See all articles</a></div><style data-emotion="css cci1ex-Collection-itemsWrapper">.css-cci1ex-Collection-itemsWrapper{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:100%;position:relative;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;}.css-cci1ex-Collection-itemsWrapper .swiper{padding-right:0;}.css-cci1ex-Collection-itemsWrapper .swiper-slide{height:auto;}@media (max-width:899.95px){.css-cci1ex-Collection-itemsWrapper .swiper{padding-right:0px;}}</style><style data-emotion="css 11g1c8u-Collection-itemsWrapper">.css-11g1c8u-Collection-itemsWrapper{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:100%;position:relative;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;}.css-11g1c8u-Collection-itemsWrapper .swiper{padding-right:0;}.css-11g1c8u-Collection-itemsWrapper .swiper-slide{height:auto;}@media (max-width:899.95px){.css-11g1c8u-Collection-itemsWrapper .swiper{padding-right:0px;}}</style><div class="MuiBox-root css-11g1c8u-Collection-itemsWrapper"><style data-emotion="css hbdju2-Collection-itemsContainer">.css-hbdju2-Collection-itemsContainer{display:grid;grid-template-columns:repeat(1, 1fr);gap:24px;width:100%;-webkit-align-content:flex-start;-ms-flex-line-pack:flex-start;align-content:flex-start;}</style><style data-emotion="css 1o0lz65-Collection-itemsContainer">.css-1o0lz65-Collection-itemsContainer{display:grid;grid-template-columns:repeat(1, 1fr);gap:24px;width:100%;-webkit-align-content:flex-start;-ms-flex-line-pack:flex-start;align-content:flex-start;}</style><div class="MuiBox-root css-1o0lz65-Collection-itemsContainer" data-testid="Collection-itemsContainer"><style data-emotion="css 1ahl0sk-Card-root">.css-1ahl0sk-Card-root{position:relative;border-radius:0;background-color:transparent;cursor:pointer;-webkit-text-decoration:none;text-decoration:none;overflow:initial;grid-column:span 4;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;-webkit-justify-content:flex-start;justify-content:flex-start;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;background-color:#F5F5F3;}.css-1ahl0sk-Card-root:hover{background-color:#F3FDFB;}.css-1ahl0sk-Card-root [class$=Card-cardMedia]{height:100%;object-fit:cover;}@media (min-width:600px){.css-1ahl0sk-Card-root [class$=Card-cardMedia]{height:178px;}}.css-1ahl0sk-Card-root [class$=Card-cardMedia] img{height:inherit;width:100%;object-fit:cover;object-position:top left;}@media (min-width:600px){.css-1ahl0sk-Card-root [class$=Card-cardMedia] img{aspect-ratio:310/162;object-position:center;}}.css-1ahl0sk-Card-root [class$=Card-cardContent]{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;-webkit-align-items:flex-start;-webkit-box-align:flex-start;-ms-flex-align:flex-start;align-items:flex-start;gap:16px;padding:8px 24px 24px;}@media (max-width:899.95px){.css-1ahl0sk-Card-root [class$=Card-cardContent]{height:100%;}}.css-1ahl0sk-Card-root [class$=Card-text]{margin:0;padding:0;}.css-1ahl0sk-Card-root [class$=Text-richEyebrow]{display:none;}.css-1ahl0sk-Card-root [class$=Text-richTitle]{margin-top:16px;}.css-1ahl0sk-Card-root [class$=Text-richTitle] >*{font-size:1.125rem!important;font-family:Public Sans!important;}.css-1ahl0sk-Card-root [class$=Text-richSubtitle]{margin:16px 0px 0px;padding:0;}.css-1ahl0sk-Card-root [class$=Text-body]{display:none;}.css-1ahl0sk-Card-root [class$=Text-body] *{display:none;}.css-1ahl0sk-Card-root [class$=Card-cardActions]{display:none;}@media (max-width:899.95px){.css-1ahl0sk-Card-root{-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;}}.css-1ahl0sk-Card-root [class$=Card-cardCategory]{display:none;}.css-1ahl0sk-Card-root [class$=Text-richSubtitle] *{font-family:'Public Sans',sans-serif;font-size:1rem;line-height:1.35;letter-spacing:0;color:#00030B;}</style><style data-emotion="css d41b1w-MuiCard-root-Card-root">.css-d41b1w-MuiCard-root-Card-root{overflow:hidden;position:relative;border-radius:0;background-color:transparent;cursor:pointer;-webkit-text-decoration:none;text-decoration:none;overflow:initial;grid-column:span 4;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;-webkit-justify-content:flex-start;justify-content:flex-start;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;background-color:#F5F5F3;}.css-d41b1w-MuiCard-root-Card-root:hover{background-color:#F3FDFB;}.css-d41b1w-MuiCard-root-Card-root [class$=Card-cardMedia]{height:100%;object-fit:cover;}@media (min-width:600px){.css-d41b1w-MuiCard-root-Card-root [class$=Card-cardMedia]{height:178px;}}.css-d41b1w-MuiCard-root-Card-root [class$=Card-cardMedia] img{height:inherit;width:100%;object-fit:cover;object-position:top left;}@media (min-width:600px){.css-d41b1w-MuiCard-root-Card-root [class$=Card-cardMedia] img{aspect-ratio:310/162;object-position:center;}}.css-d41b1w-MuiCard-root-Card-root [class$=Card-cardContent]{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;-webkit-align-items:flex-start;-webkit-box-align:flex-start;-ms-flex-align:flex-start;align-items:flex-start;gap:16px;padding:8px 24px 24px;}@media (max-width:899.95px){.css-d41b1w-MuiCard-root-Card-root [class$=Card-cardContent]{height:100%;}}.css-d41b1w-MuiCard-root-Card-root [class$=Card-text]{margin:0;padding:0;}.css-d41b1w-MuiCard-root-Card-root [class$=Text-richEyebrow]{display:none;}.css-d41b1w-MuiCard-root-Card-root [class$=Text-richTitle]{margin-top:16px;}.css-d41b1w-MuiCard-root-Card-root [class$=Text-richTitle] >*{font-size:1.125rem!important;font-family:Public Sans!important;}.css-d41b1w-MuiCard-root-Card-root [class$=Text-richSubtitle]{margin:16px 0px 0px;padding:0;}.css-d41b1w-MuiCard-root-Card-root [class$=Text-body]{display:none;}.css-d41b1w-MuiCard-root-Card-root [class$=Text-body] *{display:none;}.css-d41b1w-MuiCard-root-Card-root [class$=Card-cardActions]{display:none;}@media (max-width:899.95px){.css-d41b1w-MuiCard-root-Card-root{-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;}}.css-d41b1w-MuiCard-root-Card-root [class$=Card-cardCategory]{display:none;}.css-d41b1w-MuiCard-root-Card-root [class$=Text-richSubtitle] *{font-family:'Public Sans',sans-serif;font-size:1rem;line-height:1.35;letter-spacing:0;color:#00030B;}</style><style data-emotion="css 1a9r8hg-MuiPaper-root-MuiCard-root-Card-root">.css-1a9r8hg-MuiPaper-root-MuiCard-root-Card-root{background-color:#FFFFFF;color:#6B6B6A;-webkit-transition:box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;transition:box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;border-radius:10px;box-shadow:none;overflow:hidden;position:relative;border-radius:0;background-color:transparent;cursor:pointer;-webkit-text-decoration:none;text-decoration:none;overflow:initial;grid-column:span 4;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;-webkit-justify-content:flex-start;justify-content:flex-start;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;background-color:#F5F5F3;}.css-1a9r8hg-MuiPaper-root-MuiCard-root-Card-root:hover{background-color:#F3FDFB;}.css-1a9r8hg-MuiPaper-root-MuiCard-root-Card-root [class$=Card-cardMedia]{height:100%;object-fit:cover;}@media (min-width:600px){.css-1a9r8hg-MuiPaper-root-MuiCard-root-Card-root [class$=Card-cardMedia]{height:178px;}}.css-1a9r8hg-MuiPaper-root-MuiCard-root-Card-root [class$=Card-cardMedia] img{height:inherit;width:100%;object-fit:cover;object-position:top left;}@media (min-width:600px){.css-1a9r8hg-MuiPaper-root-MuiCard-root-Card-root [class$=Card-cardMedia] img{aspect-ratio:310/162;object-position:center;}}.css-1a9r8hg-MuiPaper-root-MuiCard-root-Card-root [class$=Card-cardContent]{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;-webkit-align-items:flex-start;-webkit-box-align:flex-start;-ms-flex-align:flex-start;align-items:flex-start;gap:16px;padding:8px 24px 24px;}@media (max-width:899.95px){.css-1a9r8hg-MuiPaper-root-MuiCard-root-Card-root [class$=Card-cardContent]{height:100%;}}.css-1a9r8hg-MuiPaper-root-MuiCard-root-Card-root [class$=Card-text]{margin:0;padding:0;}.css-1a9r8hg-MuiPaper-root-MuiCard-root-Card-root [class$=Text-richEyebrow]{display:none;}.css-1a9r8hg-MuiPaper-root-MuiCard-root-Card-root [class$=Text-richTitle]{margin-top:16px;}.css-1a9r8hg-MuiPaper-root-MuiCard-root-Card-root [class$=Text-richTitle] >*{font-size:1.125rem!important;font-family:Public Sans!important;}.css-1a9r8hg-MuiPaper-root-MuiCard-root-Card-root [class$=Text-richSubtitle]{margin:16px 0px 0px;padding:0;}.css-1a9r8hg-MuiPaper-root-MuiCard-root-Card-root [class$=Text-body]{display:none;}.css-1a9r8hg-MuiPaper-root-MuiCard-root-Card-root [class$=Text-body] *{display:none;}.css-1a9r8hg-MuiPaper-root-MuiCard-root-Card-root [class$=Card-cardActions]{display:none;}@media (max-width:899.95px){.css-1a9r8hg-MuiPaper-root-MuiCard-root-Card-root{-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;}}.css-1a9r8hg-MuiPaper-root-MuiCard-root-Card-root [class$=Card-cardCategory]{display:none;}.css-1a9r8hg-MuiPaper-root-MuiCard-root-Card-root [class$=Text-richSubtitle] *{font-family:'Public Sans',sans-serif;font-size:1rem;line-height:1.35;letter-spacing:0;color:#00030B;}</style><style data-emotion="css 9l8ucb-Link-root-MuiPaper-root-MuiCard-root-Card-root">.css-9l8ucb-Link-root-MuiPaper-root-MuiCard-root-Card-root{background-color:#FFFFFF;color:#6B6B6A;-webkit-transition:box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;transition:box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;border-radius:10px;box-shadow:none;overflow:hidden;position:relative;border-radius:0;background-color:transparent;cursor:pointer;-webkit-text-decoration:none;text-decoration:none;overflow:initial;grid-column:span 4;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;-webkit-justify-content:flex-start;justify-content:flex-start;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;background-color:#F5F5F3;}.css-9l8ucb-Link-root-MuiPaper-root-MuiCard-root-Card-root .subText{-webkit-text-decoration:underline;text-decoration:underline;margin-left:4px;}.css-9l8ucb-Link-root-MuiPaper-root-MuiCard-root-Card-root[data-large-text=true]{display:inline-block;text-wrap:wrap;text-align:left;}.css-9l8ucb-Link-root-MuiPaper-root-MuiCard-root-Card-root:hover{background-color:#F3FDFB;}.css-9l8ucb-Link-root-MuiPaper-root-MuiCard-root-Card-root [class$=Card-cardMedia]{height:100%;object-fit:cover;}@media (min-width:600px){.css-9l8ucb-Link-root-MuiPaper-root-MuiCard-root-Card-root [class$=Card-cardMedia]{height:178px;}}.css-9l8ucb-Link-root-MuiPaper-root-MuiCard-root-Card-root [class$=Card-cardMedia] img{height:inherit;width:100%;object-fit:cover;object-position:top left;}@media (min-width:600px){.css-9l8ucb-Link-root-MuiPaper-root-MuiCard-root-Card-root [class$=Card-cardMedia] img{aspect-ratio:310/162;object-position:center;}}.css-9l8ucb-Link-root-MuiPaper-root-MuiCard-root-Card-root [class$=Card-cardContent]{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;-webkit-align-items:flex-start;-webkit-box-align:flex-start;-ms-flex-align:flex-start;align-items:flex-start;gap:16px;padding:8px 24px 24px;}@media (max-width:899.95px){.css-9l8ucb-Link-root-MuiPaper-root-MuiCard-root-Card-root [class$=Card-cardContent]{height:100%;}}.css-9l8ucb-Link-root-MuiPaper-root-MuiCard-root-Card-root [class$=Card-text]{margin:0;padding:0;}.css-9l8ucb-Link-root-MuiPaper-root-MuiCard-root-Card-root [class$=Text-richEyebrow]{display:none;}.css-9l8ucb-Link-root-MuiPaper-root-MuiCard-root-Card-root [class$=Text-richTitle]{margin-top:16px;}.css-9l8ucb-Link-root-MuiPaper-root-MuiCard-root-Card-root [class$=Text-richTitle] >*{font-size:1.125rem!important;font-family:Public Sans!important;}.css-9l8ucb-Link-root-MuiPaper-root-MuiCard-root-Card-root [class$=Text-richSubtitle]{margin:16px 0px 0px;padding:0;}.css-9l8ucb-Link-root-MuiPaper-root-MuiCard-root-Card-root [class$=Text-body]{display:none;}.css-9l8ucb-Link-root-MuiPaper-root-MuiCard-root-Card-root [class$=Text-body] *{display:none;}.css-9l8ucb-Link-root-MuiPaper-root-MuiCard-root-Card-root [class$=Card-cardActions]{display:none;}@media (max-width:899.95px){.css-9l8ucb-Link-root-MuiPaper-root-MuiCard-root-Card-root{-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;}}.css-9l8ucb-Link-root-MuiPaper-root-MuiCard-root-Card-root [class$=Card-cardCategory]{display:none;}.css-9l8ucb-Link-root-MuiPaper-root-MuiCard-root-Card-root [class$=Text-richSubtitle] *{font-family:'Public Sans',sans-serif;font-size:1rem;line-height:1.35;letter-spacing:0;color:#00030B;}</style><style data-emotion="css x2mc5s-MuiLink-root-Link-root-MuiPaper-root-MuiCard-root-Card-root">.css-x2mc5s-MuiLink-root-Link-root-MuiPaper-root-MuiCard-root-Card-root{-webkit-text-decoration:underline;text-decoration:underline;text-decoration-color:rgba(39, 115, 224, 0.4);background-color:#FFFFFF;color:#6B6B6A;-webkit-transition:box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;transition:box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;border-radius:10px;box-shadow:none;overflow:hidden;position:relative;border-radius:0;background-color:transparent;cursor:pointer;-webkit-text-decoration:none;text-decoration:none;overflow:initial;grid-column:span 4;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;-webkit-justify-content:flex-start;justify-content:flex-start;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;background-color:#F5F5F3;}.css-x2mc5s-MuiLink-root-Link-root-MuiPaper-root-MuiCard-root-Card-root:hover{text-decoration-color:inherit;}.css-x2mc5s-MuiLink-root-Link-root-MuiPaper-root-MuiCard-root-Card-root .subText{-webkit-text-decoration:underline;text-decoration:underline;margin-left:4px;}.css-x2mc5s-MuiLink-root-Link-root-MuiPaper-root-MuiCard-root-Card-root[data-large-text=true]{display:inline-block;text-wrap:wrap;text-align:left;}.css-x2mc5s-MuiLink-root-Link-root-MuiPaper-root-MuiCard-root-Card-root:hover{background-color:#F3FDFB;}.css-x2mc5s-MuiLink-root-Link-root-MuiPaper-root-MuiCard-root-Card-root [class$=Card-cardMedia]{height:100%;object-fit:cover;}@media (min-width:600px){.css-x2mc5s-MuiLink-root-Link-root-MuiPaper-root-MuiCard-root-Card-root [class$=Card-cardMedia]{height:178px;}}.css-x2mc5s-MuiLink-root-Link-root-MuiPaper-root-MuiCard-root-Card-root [class$=Card-cardMedia] img{height:inherit;width:100%;object-fit:cover;object-position:top left;}@media (min-width:600px){.css-x2mc5s-MuiLink-root-Link-root-MuiPaper-root-MuiCard-root-Card-root [class$=Card-cardMedia] img{aspect-ratio:310/162;object-position:center;}}.css-x2mc5s-MuiLink-root-Link-root-MuiPaper-root-MuiCard-root-Card-root [class$=Card-cardContent]{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;-webkit-align-items:flex-start;-webkit-box-align:flex-start;-ms-flex-align:flex-start;align-items:flex-start;gap:16px;padding:8px 24px 24px;}@media (max-width:899.95px){.css-x2mc5s-MuiLink-root-Link-root-MuiPaper-root-MuiCard-root-Card-root [class$=Card-cardContent]{height:100%;}}.css-x2mc5s-MuiLink-root-Link-root-MuiPaper-root-MuiCard-root-Card-root [class$=Card-text]{margin:0;padding:0;}.css-x2mc5s-MuiLink-root-Link-root-MuiPaper-root-MuiCard-root-Card-root [class$=Text-richEyebrow]{display:none;}.css-x2mc5s-MuiLink-root-Link-root-MuiPaper-root-MuiCard-root-Card-root [class$=Text-richTitle]{margin-top:16px;}.css-x2mc5s-MuiLink-root-Link-root-MuiPaper-root-MuiCard-root-Card-root [class$=Text-richTitle] >*{font-size:1.125rem!important;font-family:Public Sans!important;}.css-x2mc5s-MuiLink-root-Link-root-MuiPaper-root-MuiCard-root-Card-root [class$=Text-richSubtitle]{margin:16px 0px 0px;padding:0;}.css-x2mc5s-MuiLink-root-Link-root-MuiPaper-root-MuiCard-root-Card-root [class$=Text-body]{display:none;}.css-x2mc5s-MuiLink-root-Link-root-MuiPaper-root-MuiCard-root-Card-root [class$=Text-body] *{display:none;}.css-x2mc5s-MuiLink-root-Link-root-MuiPaper-root-MuiCard-root-Card-root [class$=Card-cardActions]{display:none;}@media (max-width:899.95px){.css-x2mc5s-MuiLink-root-Link-root-MuiPaper-root-MuiCard-root-Card-root{-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;}}.css-x2mc5s-MuiLink-root-Link-root-MuiPaper-root-MuiCard-root-Card-root [class$=Card-cardCategory]{display:none;}.css-x2mc5s-MuiLink-root-Link-root-MuiPaper-root-MuiCard-root-Card-root [class$=Text-richSubtitle] *{font-family:'Public Sans',sans-serif;font-size:1rem;line-height:1.35;letter-spacing:0;color:#00030B;}</style><style data-emotion="css 1v9z3p2-MuiTypography-root-MuiLink-root-Link-root-MuiPaper-root-MuiCard-root-Card-root">.css-1v9z3p2-MuiTypography-root-MuiLink-root-Link-root-MuiPaper-root-MuiCard-root-Card-root{margin:0;font:inherit;color:#2773e0;position:0;-webkit-text-decoration:underline;text-decoration:underline;text-decoration-color:rgba(39, 115, 224, 0.4);background-color:#FFFFFF;color:#6B6B6A;-webkit-transition:box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;transition:box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;border-radius:10px;box-shadow:none;overflow:hidden;position:relative;border-radius:0;background-color:transparent;cursor:pointer;-webkit-text-decoration:none;text-decoration:none;overflow:initial;grid-column:span 4;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;-webkit-justify-content:flex-start;justify-content:flex-start;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;background-color:#F5F5F3;}.css-1v9z3p2-MuiTypography-root-MuiLink-root-Link-root-MuiPaper-root-MuiCard-root-Card-root:hover{text-decoration-color:inherit;}.css-1v9z3p2-MuiTypography-root-MuiLink-root-Link-root-MuiPaper-root-MuiCard-root-Card-root .subText{-webkit-text-decoration:underline;text-decoration:underline;margin-left:4px;}.css-1v9z3p2-MuiTypography-root-MuiLink-root-Link-root-MuiPaper-root-MuiCard-root-Card-root[data-large-text=true]{display:inline-block;text-wrap:wrap;text-align:left;}.css-1v9z3p2-MuiTypography-root-MuiLink-root-Link-root-MuiPaper-root-MuiCard-root-Card-root:hover{background-color:#F3FDFB;}.css-1v9z3p2-MuiTypography-root-MuiLink-root-Link-root-MuiPaper-root-MuiCard-root-Card-root [class$=Card-cardMedia]{height:100%;object-fit:cover;}@media (min-width:600px){.css-1v9z3p2-MuiTypography-root-MuiLink-root-Link-root-MuiPaper-root-MuiCard-root-Card-root [class$=Card-cardMedia]{height:178px;}}.css-1v9z3p2-MuiTypography-root-MuiLink-root-Link-root-MuiPaper-root-MuiCard-root-Card-root [class$=Card-cardMedia] img{height:inherit;width:100%;object-fit:cover;object-position:top left;}@media (min-width:600px){.css-1v9z3p2-MuiTypography-root-MuiLink-root-Link-root-MuiPaper-root-MuiCard-root-Card-root [class$=Card-cardMedia] img{aspect-ratio:310/162;object-position:center;}}.css-1v9z3p2-MuiTypography-root-MuiLink-root-Link-root-MuiPaper-root-MuiCard-root-Card-root [class$=Card-cardContent]{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;-webkit-align-items:flex-start;-webkit-box-align:flex-start;-ms-flex-align:flex-start;align-items:flex-start;gap:16px;padding:8px 24px 24px;}@media (max-width:899.95px){.css-1v9z3p2-MuiTypography-root-MuiLink-root-Link-root-MuiPaper-root-MuiCard-root-Card-root [class$=Card-cardContent]{height:100%;}}.css-1v9z3p2-MuiTypography-root-MuiLink-root-Link-root-MuiPaper-root-MuiCard-root-Card-root [class$=Card-text]{margin:0;padding:0;}.css-1v9z3p2-MuiTypography-root-MuiLink-root-Link-root-MuiPaper-root-MuiCard-root-Card-root [class$=Text-richEyebrow]{display:none;}.css-1v9z3p2-MuiTypography-root-MuiLink-root-Link-root-MuiPaper-root-MuiCard-root-Card-root [class$=Text-richTitle]{margin-top:16px;}.css-1v9z3p2-MuiTypography-root-MuiLink-root-Link-root-MuiPaper-root-MuiCard-root-Card-root [class$=Text-richTitle] >*{font-size:1.125rem!important;font-family:Public Sans!important;}.css-1v9z3p2-MuiTypography-root-MuiLink-root-Link-root-MuiPaper-root-MuiCard-root-Card-root [class$=Text-richSubtitle]{margin:16px 0px 0px;padding:0;}.css-1v9z3p2-MuiTypography-root-MuiLink-root-Link-root-MuiPaper-root-MuiCard-root-Card-root [class$=Text-body]{display:none;}.css-1v9z3p2-MuiTypography-root-MuiLink-root-Link-root-MuiPaper-root-MuiCard-root-Card-root [class$=Text-body] *{display:none;}.css-1v9z3p2-MuiTypography-root-MuiLink-root-Link-root-MuiPaper-root-MuiCard-root-Card-root [class$=Card-cardActions]{display:none;}@media (max-width:899.95px){.css-1v9z3p2-MuiTypography-root-MuiLink-root-Link-root-MuiPaper-root-MuiCard-root-Card-root{-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;}}.css-1v9z3p2-MuiTypography-root-MuiLink-root-Link-root-MuiPaper-root-MuiCard-root-Card-root [class$=Card-cardCategory]{display:none;}.css-1v9z3p2-MuiTypography-root-MuiLink-root-Link-root-MuiPaper-root-MuiCard-root-Card-root [class$=Text-richSubtitle] *{font-family:'Public Sans',sans-serif;font-size:1rem;line-height:1.35;letter-spacing:0;color:#00030B;}</style><style data-emotion="css 18tjc9d-Link-root-MuiTypography-root-MuiLink-root-Link-root-MuiPaper-root-MuiCard-root-Card-root">.css-18tjc9d-Link-root-MuiTypography-root-MuiLink-root-Link-root-MuiPaper-root-MuiCard-root-Card-root{margin:0;font:inherit;color:#2773e0;position:0;-webkit-text-decoration:underline;text-decoration:underline;text-decoration-color:rgba(39, 115, 224, 0.4);background-color:#FFFFFF;color:#6B6B6A;-webkit-transition:box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;transition:box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;border-radius:10px;box-shadow:none;overflow:hidden;position:relative;border-radius:0;background-color:transparent;cursor:pointer;-webkit-text-decoration:none;text-decoration:none;overflow:initial;grid-column:span 4;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;-webkit-justify-content:flex-start;justify-content:flex-start;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;background-color:#F5F5F3;}.css-18tjc9d-Link-root-MuiTypography-root-MuiLink-root-Link-root-MuiPaper-root-MuiCard-root-Card-root .subText{-webkit-text-decoration:underline;text-decoration:underline;margin-left:4px;}.css-18tjc9d-Link-root-MuiTypography-root-MuiLink-root-Link-root-MuiPaper-root-MuiCard-root-Card-root[data-large-text=true]{display:inline-block;text-wrap:wrap;text-align:left;}.css-18tjc9d-Link-root-MuiTypography-root-MuiLink-root-Link-root-MuiPaper-root-MuiCard-root-Card-root:hover{text-decoration-color:inherit;}.css-18tjc9d-Link-root-MuiTypography-root-MuiLink-root-Link-root-MuiPaper-root-MuiCard-root-Card-root .subText{-webkit-text-decoration:underline;text-decoration:underline;margin-left:4px;}.css-18tjc9d-Link-root-MuiTypography-root-MuiLink-root-Link-root-MuiPaper-root-MuiCard-root-Card-root[data-large-text=true]{display:inline-block;text-wrap:wrap;text-align:left;}.css-18tjc9d-Link-root-MuiTypography-root-MuiLink-root-Link-root-MuiPaper-root-MuiCard-root-Card-root:hover{background-color:#F3FDFB;}.css-18tjc9d-Link-root-MuiTypography-root-MuiLink-root-Link-root-MuiPaper-root-MuiCard-root-Card-root [class$=Card-cardMedia]{height:100%;object-fit:cover;}@media (min-width:600px){.css-18tjc9d-Link-root-MuiTypography-root-MuiLink-root-Link-root-MuiPaper-root-MuiCard-root-Card-root [class$=Card-cardMedia]{height:178px;}}.css-18tjc9d-Link-root-MuiTypography-root-MuiLink-root-Link-root-MuiPaper-root-MuiCard-root-Card-root [class$=Card-cardMedia] img{height:inherit;width:100%;object-fit:cover;object-position:top left;}@media (min-width:600px){.css-18tjc9d-Link-root-MuiTypography-root-MuiLink-root-Link-root-MuiPaper-root-MuiCard-root-Card-root [class$=Card-cardMedia] img{aspect-ratio:310/162;object-position:center;}}.css-18tjc9d-Link-root-MuiTypography-root-MuiLink-root-Link-root-MuiPaper-root-MuiCard-root-Card-root [class$=Card-cardContent]{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;-webkit-align-items:flex-start;-webkit-box-align:flex-start;-ms-flex-align:flex-start;align-items:flex-start;gap:16px;padding:8px 24px 24px;}@media (max-width:899.95px){.css-18tjc9d-Link-root-MuiTypography-root-MuiLink-root-Link-root-MuiPaper-root-MuiCard-root-Card-root [class$=Card-cardContent]{height:100%;}}.css-18tjc9d-Link-root-MuiTypography-root-MuiLink-root-Link-root-MuiPaper-root-MuiCard-root-Card-root [class$=Card-text]{margin:0;padding:0;}.css-18tjc9d-Link-root-MuiTypography-root-MuiLink-root-Link-root-MuiPaper-root-MuiCard-root-Card-root [class$=Text-richEyebrow]{display:none;}.css-18tjc9d-Link-root-MuiTypography-root-MuiLink-root-Link-root-MuiPaper-root-MuiCard-root-Card-root [class$=Text-richTitle]{margin-top:16px;}.css-18tjc9d-Link-root-MuiTypography-root-MuiLink-root-Link-root-MuiPaper-root-MuiCard-root-Card-root [class$=Text-richTitle] >*{font-size:1.125rem!important;font-family:Public Sans!important;}.css-18tjc9d-Link-root-MuiTypography-root-MuiLink-root-Link-root-MuiPaper-root-MuiCard-root-Card-root [class$=Text-richSubtitle]{margin:16px 0px 0px;padding:0;}.css-18tjc9d-Link-root-MuiTypography-root-MuiLink-root-Link-root-MuiPaper-root-MuiCard-root-Card-root [class$=Text-body]{display:none;}.css-18tjc9d-Link-root-MuiTypography-root-MuiLink-root-Link-root-MuiPaper-root-MuiCard-root-Card-root [class$=Text-body] *{display:none;}.css-18tjc9d-Link-root-MuiTypography-root-MuiLink-root-Link-root-MuiPaper-root-MuiCard-root-Card-root [class$=Card-cardActions]{display:none;}@media (max-width:899.95px){.css-18tjc9d-Link-root-MuiTypography-root-MuiLink-root-Link-root-MuiPaper-root-MuiCard-root-Card-root{-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;}}.css-18tjc9d-Link-root-MuiTypography-root-MuiLink-root-Link-root-MuiPaper-root-MuiCard-root-Card-root [class$=Card-cardCategory]{display:none;}.css-18tjc9d-Link-root-MuiTypography-root-MuiLink-root-Link-root-MuiPaper-root-MuiCard-root-Card-root [class$=Text-richSubtitle] *{font-family:'Public Sans',sans-serif;font-size:1rem;line-height:1.35;letter-spacing:0;color:#00030B;}</style><a class="MuiTypography-root MuiTypography-inherit MuiLink-root MuiLink-underlineAlways MuiPaper-root MuiPaper-elevation MuiPaper-rounded MuiPaper-elevation0 MuiCard-root css-18tjc9d-Link-root-MuiTypography-root-MuiLink-root-Link-root-MuiPaper-root-MuiCard-root-Card-root" data-testid="Card" data-csk-entry-id="3VpmFsPwFQTOjOnuqvG8ur" data-csk-entry-type="Card" data-csk-entry-display-text="Card" textSpacing="1" link="[object Object]" category="[object Object]" eyebrowColor="default" richEyebrow="[object Object]" target="_blank" rel="noopener noreferrer" data-large-text="false" href="/en-ca/blog/security-labs/security-alert-critical-react2shell-vulnerability"><style data-emotion="css igfsvl-Card-cardMedia">.css-igfsvl-Card-cardMedia{display:block;position:relative;width:100%;}</style><style data-emotion="css ihp4d8-MuiCardMedia-root-Card-cardMedia">.css-ihp4d8-MuiCardMedia-root-Card-cardMedia{display:block;-webkit-background-size:cover;background-size:cover;background-repeat:no-repeat;-webkit-background-position:center;background-position:center;display:block;position:relative;width:100%;}</style><div class="MuiCardMedia-root css-ihp4d8-MuiCardMedia-root-Card-cardMedia"><img data-testid="Media" alt="" loading="lazy" width="2400" height="1256" decoding="async" data-nimg="1" class="css-182ql0r-Media-root" style="color:transparent" sizes="100vw" srcSet="/_next/image?url=https%3A%2F%2Fimages.ctfassets.net%2Fo2pgk9gufvga%2FWmSCBlgChRPMGvvZBport%2F1bed2c9fe409cc0e65426c6550daf3c0%2FCoalition_Security_Alert-React2Shell.png&w=640&q=75 640w, /_next/image?url=https%3A%2F%2Fimages.ctfassets.net%2Fo2pgk9gufvga%2FWmSCBlgChRPMGvvZBport%2F1bed2c9fe409cc0e65426c6550daf3c0%2FCoalition_Security_Alert-React2Shell.png&w=750&q=75 750w, /_next/image?url=https%3A%2F%2Fimages.ctfassets.net%2Fo2pgk9gufvga%2FWmSCBlgChRPMGvvZBport%2F1bed2c9fe409cc0e65426c6550daf3c0%2FCoalition_Security_Alert-React2Shell.png&w=828&q=75 828w, /_next/image?url=https%3A%2F%2Fimages.ctfassets.net%2Fo2pgk9gufvga%2FWmSCBlgChRPMGvvZBport%2F1bed2c9fe409cc0e65426c6550daf3c0%2FCoalition_Security_Alert-React2Shell.png&w=1080&q=75 1080w, /_next/image?url=https%3A%2F%2Fimages.ctfassets.net%2Fo2pgk9gufvga%2FWmSCBlgChRPMGvvZBport%2F1bed2c9fe409cc0e65426c6550daf3c0%2FCoalition_Security_Alert-React2Shell.png&w=1200&q=75 1200w, /_next/image?url=https%3A%2F%2Fimages.ctfassets.net%2Fo2pgk9gufvga%2FWmSCBlgChRPMGvvZBport%2F1bed2c9fe409cc0e65426c6550daf3c0%2FCoalition_Security_Alert-React2Shell.png&w=1920&q=75 1920w, /_next/image?url=https%3A%2F%2Fimages.ctfassets.net%2Fo2pgk9gufvga%2FWmSCBlgChRPMGvvZBport%2F1bed2c9fe409cc0e65426c6550daf3c0%2FCoalition_Security_Alert-React2Shell.png&w=2048&q=75 2048w, /_next/image?url=https%3A%2F%2Fimages.ctfassets.net%2Fo2pgk9gufvga%2FWmSCBlgChRPMGvvZBport%2F1bed2c9fe409cc0e65426c6550daf3c0%2FCoalition_Security_Alert-React2Shell.png&w=3840&q=75 3840w" src="/_next/image?url=https%3A%2F%2Fimages.ctfassets.net%2Fo2pgk9gufvga%2FWmSCBlgChRPMGvvZBport%2F1bed2c9fe409cc0e65426c6550daf3c0%2FCoalition_Security_Alert-React2Shell.png&w=3840&q=75"/><style data-emotion="css nv2ct4-Card-mediaDecorator">.css-nv2ct4-Card-mediaDecorator{display:none;}</style><style data-emotion="css 1flgmxw-Card-mediaDecorator">.css-1flgmxw-Card-mediaDecorator{display:none;}</style><div class="MuiBox-root css-1flgmxw-Card-mediaDecorator"><style data-emotion="css 1rfafaq-Card-downloadIcon">.css-1rfafaq-Card-downloadIcon{color:#2B70D7;height:auto;display:none;}</style><style data-emotion="css 1lnxrd9-MuiSvgIcon-root-Card-downloadIcon">.css-1lnxrd9-MuiSvgIcon-root-Card-downloadIcon{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:1em;height:1em;display:inline-block;fill:currentColor;-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;-webkit-transition:fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;transition:fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;font-size:1.5rem;color:#2B70D7;height:auto;display:none;}</style><svg class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-1lnxrd9-MuiSvgIcon-root-Card-downloadIcon" focusable="false" aria-hidden="true" viewBox="0 0 26 34" width="26" height="34" fill="none"><path d="M0.667969 32.3287H25.4208M23.3915 14.0982L12.571 24.9186L1.75204 14.0996M12.4943 24.7528V0" stroke="white" stroke-width="2" stroke-miterlimit="10"></path></svg><style data-emotion="css o0teug-Card-playIcon">.css-o0teug-Card-playIcon{height:auto;display:none;}</style><style data-emotion="css 1y847rn-MuiSvgIcon-root-Card-playIcon">.css-1y847rn-MuiSvgIcon-root-Card-playIcon{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:1em;height:1em;display:inline-block;fill:currentColor;-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;-webkit-transition:fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;transition:fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;font-size:1.5rem;height:auto;display:none;}</style><svg class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-1y847rn-MuiSvgIcon-root-Card-playIcon" focusable="false" aria-hidden="true" viewBox="0 0 25 32" width="25" height="32" fill="none"><path d="M0.558594 0.799927V31.3454L24.5586 16.0727L0.558594 0.799927Z" fill="white"></path></svg></div></div><style data-emotion="css 186g1ks-MuiTypography-root-Card-cardCategory">.css-186g1ks-MuiTypography-root-Card-cardCategory{margin:0;font-family:'Degular Mono',sans-serif;font-size:0.75rem;letter-spacing:1px;line-height:1.1;text-transform:uppercase;color:#2B70D7;font-weight:700;margin-top:20px;}</style><span class="MuiTypography-root MuiTypography-eyebrowMd css-186g1ks-MuiTypography-root-Card-cardCategory">Security</span><style data-emotion="css 17d2gz4-Card-cardContent">.css-17d2gz4-Card-cardContent{padding-bottom:48px;height:100%;width:100%;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;}</style><style data-emotion="css ouubfj-MuiCardContent-root-Card-cardContent">.css-ouubfj-MuiCardContent-root-Card-cardContent{padding:16px;padding-bottom:48px;height:100%;width:100%;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;}.css-ouubfj-MuiCardContent-root-Card-cardContent:last-child{padding-bottom:24px;}</style><div class="MuiCardContent-root css-ouubfj-MuiCardContent-root-Card-cardContent"><style data-emotion="css cxa0qu-Text-root-Card-text">.css-cxa0qu-Text-root-Card-text{white-space:pre-wrap;}.css-cxa0qu-Text-root-Card-text ol,.css-cxa0qu-Text-root-Card-text ul,.css-cxa0qu-Text-root-Card-text li{padding:revert;}.css-cxa0qu-Text-root-Card-text ol,.css-cxa0qu-Text-root-Card-text ul{padding-left:16px;}.css-cxa0qu-Text-root-Card-text ol ol{list-style-type:upper-alpha;}.css-cxa0qu-Text-root-Card-text ol ol ol{list-style-type:revert;}.css-cxa0qu-Text-root-Card-text ol ol ol ol{list-style-type:upper-alpha;}.css-cxa0qu-Text-root-Card-text ol ol ol ol ol{list-style-type:revert;}.css-cxa0qu-Text-root-Card-text [class$=MuiIcon-root-Text-checkIcon]{font-size:0.875rem;}</style><style data-emotion="css 11pd1jj-Text-root-Card-text">.css-11pd1jj-Text-root-Card-text{white-space:pre-wrap;}.css-11pd1jj-Text-root-Card-text ol,.css-11pd1jj-Text-root-Card-text ul,.css-11pd1jj-Text-root-Card-text li{padding:revert;}.css-11pd1jj-Text-root-Card-text ol,.css-11pd1jj-Text-root-Card-text ul{padding-left:16px;}.css-11pd1jj-Text-root-Card-text ol ol{list-style-type:upper-alpha;}.css-11pd1jj-Text-root-Card-text ol ol ol{list-style-type:revert;}.css-11pd1jj-Text-root-Card-text ol ol ol ol{list-style-type:upper-alpha;}.css-11pd1jj-Text-root-Card-text ol ol ol ol ol{list-style-type:revert;}.css-11pd1jj-Text-root-Card-text [class$=MuiIcon-root-Text-checkIcon]{font-size:0.875rem;}</style><div class="MuiBox-root css-11pd1jj-Text-root-Card-text" data-testid="Card-text" highlightColor="yellow" eyebrowColor="default" titleColor="default" subtitleColor="default" colorscheme="default"><div class="MuiBox-root css-11xyynr-Text-contentContainer"><style data-emotion="css iaxc3y-Text-richEyebrow">.css-iaxc3y-Text-richEyebrow h1{font-family:'Degular Mono',sans-serif;font-size:1rem;letter-spacing:1px;line-height:1.1;text-transform:uppercase;}.css-iaxc3y-Text-richEyebrow h2{font-family:'Degular Mono',sans-serif;font-size:0.875rem;letter-spacing:1px;line-height:1.1;text-transform:uppercase;}.css-iaxc3y-Text-richEyebrow h3{font-family:'Degular Mono',sans-serif;font-size:0.75rem;letter-spacing:1px;line-height:1.1;text-transform:uppercase;}.css-iaxc3y-Text-richEyebrow p{font-family:'Degular Mono',sans-serif;font-size:0.625rem;letter-spacing:1px;line-height:1.1;text-transform:uppercase;}.css-iaxc3y-Text-richEyebrow u{color:#000000;display:inline-block;background:linear-gradient(to left, #FFBB3C, #FFBB3C) no-repeat 0px 0.125em;padding:0.25em 0.075em;margin:-0.25em -0.075em;-webkit-text-decoration:none;text-decoration:none;}.css-iaxc3y-Text-richEyebrow u b{color:#000000;}.css-iaxc3y-Text-richEyebrow p>u{padding:0.175em 0.175em;margin:-0.175em -0.175em;}</style><style data-emotion="css a66rqh-Text-richEyebrow">.css-a66rqh-Text-richEyebrow h1{font-family:'Degular Mono',sans-serif;font-size:1rem;letter-spacing:1px;line-height:1.1;text-transform:uppercase;}.css-a66rqh-Text-richEyebrow h2{font-family:'Degular Mono',sans-serif;font-size:0.875rem;letter-spacing:1px;line-height:1.1;text-transform:uppercase;}.css-a66rqh-Text-richEyebrow h3{font-family:'Degular Mono',sans-serif;font-size:0.75rem;letter-spacing:1px;line-height:1.1;text-transform:uppercase;}.css-a66rqh-Text-richEyebrow p{font-family:'Degular Mono',sans-serif;font-size:0.625rem;letter-spacing:1px;line-height:1.1;text-transform:uppercase;}.css-a66rqh-Text-richEyebrow u{color:#000000;display:inline-block;background:linear-gradient(to left, #FFBB3C, #FFBB3C) no-repeat 0px 0.125em;padding:0.25em 0.075em;margin:-0.25em -0.075em;-webkit-text-decoration:none;text-decoration:none;}.css-a66rqh-Text-richEyebrow u b{color:#000000;}.css-a66rqh-Text-richEyebrow p>u{padding:0.175em 0.175em;margin:-0.175em -0.175em;}</style><div class="MuiBox-root css-a66rqh-Text-richEyebrow"><style data-emotion="css 1vtjxb1-MuiTypography-root">.css-1vtjxb1-MuiTypography-root{margin:0;font-family:'Degular',sans-serif;font-size:1.75rem;line-height:1;letter-spacing:0;font-weight:400;}@media (min-width:600px){.css-1vtjxb1-MuiTypography-root{font-size:2.5rem;}}@media (min-width:900px){.css-1vtjxb1-MuiTypography-root{font-size:3rem;}}</style><h3 class="MuiTypography-root MuiTypography-h3 css-1vtjxb1-MuiTypography-root" data-testid="Text-h3"><b>Blog</b></h3></div><style data-emotion="css 18ua1wf-Text-richSubtitle">.css-18ua1wf-Text-richSubtitle{margin-top:8px;}.css-18ua1wf-Text-richSubtitle h1{font-family:'Public Sans',sans-serif;font-size:1.5rem;line-height:1.3;letter-spacing:0;}.css-18ua1wf-Text-richSubtitle h2{font-family:'Public Sans',sans-serif;font-size:1.25rem;line-height:1.3;letter-spacing:0;}.css-18ua1wf-Text-richSubtitle h3{font-family:'Public Sans',sans-serif;font-size:1.125rem;line-height:1.35;letter-spacing:0;}.css-18ua1wf-Text-richSubtitle p{font-family:'Public Sans',sans-serif;font-size:1rem;line-height:1.35;letter-spacing:0;}</style><style data-emotion="css 1edvyth-Text-richSubtitle">.css-1edvyth-Text-richSubtitle{margin-top:8px;}.css-1edvyth-Text-richSubtitle h1{font-family:'Public Sans',sans-serif;font-size:1.5rem;line-height:1.3;letter-spacing:0;}.css-1edvyth-Text-richSubtitle h2{font-family:'Public Sans',sans-serif;font-size:1.25rem;line-height:1.3;letter-spacing:0;}.css-1edvyth-Text-richSubtitle h3{font-family:'Public Sans',sans-serif;font-size:1.125rem;line-height:1.35;letter-spacing:0;}.css-1edvyth-Text-richSubtitle p{font-family:'Public Sans',sans-serif;font-size:1rem;line-height:1.35;letter-spacing:0;}</style><div class="MuiBox-root css-1edvyth-Text-richSubtitle"><h3 class="MuiTypography-root MuiTypography-h3 css-1vtjxb1-MuiTypography-root" data-testid="Text-h3"><b>Patch Immediately: Critical Vulnerability Dubbed 'React2Shell'</b></h3></div><style data-emotion="css 1cr35vr-Text-body">.css-1cr35vr-Text-body{margin-top:8px;}.css-1cr35vr-Text-body h1{font-family:'Public Sans',sans-serif;font-size:1.5rem;font-weight:400;line-height:1.3;letter-spacing:0;color:#6B6B6A;}.css-1cr35vr-Text-body h2{font-family:'Public Sans',sans-serif;font-size:1.25rem;font-weight:400;line-height:1.3;letter-spacing:0;color:#6B6B6A;}.css-1cr35vr-Text-body h3{font-family:'Public Sans',sans-serif;font-size:1.125rem;font-weight:400;line-height:1.35;letter-spacing:0;color:#6B6B6A;}.css-1cr35vr-Text-body h4{font-family:'Public Sans',sans-serif;font-size:1rem;font-weight:400;line-height:1.35;letter-spacing:0;color:#6B6B6A;}.css-1cr35vr-Text-body h5{font-family:'Public Sans',sans-serif;font-size:0.875rem;font-weight:400;line-height:1.35;letter-spacing:0;color:#6B6B6A;}.css-1cr35vr-Text-body h6{font-family:'Public Sans',sans-serif;font-size:0.75rem;font-weight:400;line-height:1.35;letter-spacing:0;color:#6B6B6A;}.css-1cr35vr-Text-body p{font-family:'Public Sans',sans-serif;font-size:0.625rem;font-weight:400;line-height:1.4;letter-spacing:0;color:#6B6B6A;}.css-1cr35vr-Text-body a{color:#2B70D7;font-weight:bold;-webkit-text-decoration:underline #2B70D7;text-decoration:underline #2B70D7;}.css-1cr35vr-Text-body [data-testid="Text-ActiveMarketingForm"]~h4,.css-1cr35vr-Text-body [data-testid="Text-ActiveMarketingForm"]~p{color:#E9E8E8!important;}.css-1cr35vr-Text-body [data-testid="Text-ActiveMarketingForm"]~* a{color:#E9E8E8!important;text-decoration-color:#E9E8E8!important;}</style><style data-emotion="css 61thsz-Text-body">.css-61thsz-Text-body{margin-top:8px;}.css-61thsz-Text-body h1{font-family:'Public Sans',sans-serif;font-size:1.5rem;font-weight:400;line-height:1.3;letter-spacing:0;color:#6B6B6A;}.css-61thsz-Text-body h2{font-family:'Public Sans',sans-serif;font-size:1.25rem;font-weight:400;line-height:1.3;letter-spacing:0;color:#6B6B6A;}.css-61thsz-Text-body h3{font-family:'Public Sans',sans-serif;font-size:1.125rem;font-weight:400;line-height:1.35;letter-spacing:0;color:#6B6B6A;}.css-61thsz-Text-body h4{font-family:'Public Sans',sans-serif;font-size:1rem;font-weight:400;line-height:1.35;letter-spacing:0;color:#6B6B6A;}.css-61thsz-Text-body h5{font-family:'Public Sans',sans-serif;font-size:0.875rem;font-weight:400;line-height:1.35;letter-spacing:0;color:#6B6B6A;}.css-61thsz-Text-body h6{font-family:'Public Sans',sans-serif;font-size:0.75rem;font-weight:400;line-height:1.35;letter-spacing:0;color:#6B6B6A;}.css-61thsz-Text-body p{font-family:'Public Sans',sans-serif;font-size:0.625rem;font-weight:400;line-height:1.4;letter-spacing:0;color:#6B6B6A;}.css-61thsz-Text-body a{color:#2B70D7;font-weight:bold;-webkit-text-decoration:underline #2B70D7;text-decoration:underline #2B70D7;}.css-61thsz-Text-body [data-testid="Text-ActiveMarketingForm"]~h4,.css-61thsz-Text-body [data-testid="Text-ActiveMarketingForm"]~p{color:#E9E8E8!important;}.css-61thsz-Text-body [data-testid="Text-ActiveMarketingForm"]~* a{color:#E9E8E8!important;text-decoration-color:#E9E8E8!important;}</style><div class="MuiBox-root css-61thsz-Text-body"><h5 class="MuiTypography-root MuiTypography-h5 css-b1ll5w-MuiTypography-root" data-testid="Text-h5">Coalition notified policyholders about a new critical vulnerability impacting React and Next.js applications that allows RCE without authentication.</h5><style data-emotion="css ddxm7t-Text-embeddedRoot">.css-ddxm7t-Text-embeddedRoot{display:block;}</style><style data-emotion="css o7rjpj-Text-embeddedRoot">.css-o7rjpj-Text-embeddedRoot{display:block;display:block;}</style><span class="MuiBox-root css-o7rjpj-Text-embeddedRoot" data-testid="Text-embedded-entry-block"><style data-emotion="css 29bn3h-BlogAuthor-root">.css-29bn3h-BlogAuthor-root{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-text-decoration:none;text-decoration:none;}</style><style data-emotion="css we6kxz-BlogAuthor-root">.css-we6kxz-BlogAuthor-root{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-text-decoration:none;text-decoration:none;}</style><div class="MuiBox-root css-we6kxz-BlogAuthor-root" role="button"><style data-emotion="css 1trnset-BlogAuthor-avatar">.css-1trnset-BlogAuthor-avatar{width:32px;height:32px;}</style><style data-emotion="css 1gb2pws-MuiAvatar-root-BlogAuthor-avatar">.css-1gb2pws-MuiAvatar-root-BlogAuthor-avatar{position:relative;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;width:40px;height:40px;font-family:'Public Sans',sans-serif;font-size:1.25rem;line-height:1;border-radius:50%;overflow:hidden;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;color:#FFFFFF;background-color:#bdbdbd;width:32px;height:32px;}</style><div class="MuiAvatar-root MuiAvatar-circular MuiAvatar-colorDefault css-1gb2pws-MuiAvatar-root-BlogAuthor-avatar"><style data-emotion="css vxzysm-Media-root-BlogAuthor-image">.css-vxzysm-Media-root-BlogAuthor-image{display:block;max-width:100%;margin:auto;height:auto;}</style><img data-testid="Media" alt="" loading="lazy" width="560" height="560" decoding="async" data-nimg="1" class="css-vxzysm-Media-root-BlogAuthor-image" style="color:transparent" sizes="100vw" srcSet="/_next/image?url=https%3A%2F%2Fimages.ctfassets.net%2Fo2pgk9gufvga%2F5pZaD7pX3ttyPWcIgWkgE6%2F0fd7940657b4c50b391a3e730537be3a%2FJoe_Toomey_-_2019.png&w=640&q=75 640w, /_next/image?url=https%3A%2F%2Fimages.ctfassets.net%2Fo2pgk9gufvga%2F5pZaD7pX3ttyPWcIgWkgE6%2F0fd7940657b4c50b391a3e730537be3a%2FJoe_Toomey_-_2019.png&w=750&q=75 750w, /_next/image?url=https%3A%2F%2Fimages.ctfassets.net%2Fo2pgk9gufvga%2F5pZaD7pX3ttyPWcIgWkgE6%2F0fd7940657b4c50b391a3e730537be3a%2FJoe_Toomey_-_2019.png&w=828&q=75 828w, /_next/image?url=https%3A%2F%2Fimages.ctfassets.net%2Fo2pgk9gufvga%2F5pZaD7pX3ttyPWcIgWkgE6%2F0fd7940657b4c50b391a3e730537be3a%2FJoe_Toomey_-_2019.png&w=1080&q=75 1080w, /_next/image?url=https%3A%2F%2Fimages.ctfassets.net%2Fo2pgk9gufvga%2F5pZaD7pX3ttyPWcIgWkgE6%2F0fd7940657b4c50b391a3e730537be3a%2FJoe_Toomey_-_2019.png&w=1200&q=75 1200w, /_next/image?url=https%3A%2F%2Fimages.ctfassets.net%2Fo2pgk9gufvga%2F5pZaD7pX3ttyPWcIgWkgE6%2F0fd7940657b4c50b391a3e730537be3a%2FJoe_Toomey_-_2019.png&w=1920&q=75 1920w, /_next/image?url=https%3A%2F%2Fimages.ctfassets.net%2Fo2pgk9gufvga%2F5pZaD7pX3ttyPWcIgWkgE6%2F0fd7940657b4c50b391a3e730537be3a%2FJoe_Toomey_-_2019.png&w=2048&q=75 2048w, /_next/image?url=https%3A%2F%2Fimages.ctfassets.net%2Fo2pgk9gufvga%2F5pZaD7pX3ttyPWcIgWkgE6%2F0fd7940657b4c50b391a3e730537be3a%2FJoe_Toomey_-_2019.png&w=3840&q=75 3840w" src="/_next/image?url=https%3A%2F%2Fimages.ctfassets.net%2Fo2pgk9gufvga%2F5pZaD7pX3ttyPWcIgWkgE6%2F0fd7940657b4c50b391a3e730537be3a%2FJoe_Toomey_-_2019.png&w=3840&q=75"/></div><style data-emotion="css v6cquo-BlogAuthor-name">.css-v6cquo-BlogAuthor-name{margin-left:8px;font-weight:700;color:#000000;}</style><style data-emotion="css 1vl29xe-MuiTypography-root-BlogAuthor-name">.css-1vl29xe-MuiTypography-root-BlogAuthor-name{margin:0;font-family:'Public Sans',sans-serif;font-size:0.75rem;font-weight:400;line-height:1.35;letter-spacing:0;margin-left:8px;font-weight:700;color:#000000;}</style><span class="MuiTypography-root MuiTypography-bodycopyXs css-1vl29xe-MuiTypography-root-BlogAuthor-name">Joe Toomey</span><style data-emotion="css rmybqn-BlogAuthor-pubDate">.css-rmybqn-BlogAuthor-pubDate{margin-left:8px;color:#919eab;}</style><style data-emotion="css 8vwgn3-MuiTypography-root-BlogAuthor-pubDate">.css-8vwgn3-MuiTypography-root-BlogAuthor-pubDate{margin:0;font-family:'Public Sans',sans-serif;font-size:0.75rem;font-weight:400;line-height:1.35;letter-spacing:0;margin-left:8px;color:#919eab;}</style><span class="MuiTypography-root MuiTypography-bodycopyXs css-8vwgn3-MuiTypography-root-BlogAuthor-pubDate">December 05, 2025</span></div></span></div></div></div><style data-emotion="css 13oacr3-Card-cardActions">.css-13oacr3-Card-cardActions{padding-left:0;}</style><style data-emotion="css 12uoe1q-MuiCardActions-root-Card-cardActions">.css-12uoe1q-MuiCardActions-root-Card-cardActions{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:8px;padding-left:0;}.css-12uoe1q-MuiCardActions-root-Card-cardActions>:not(style)~:not(style){margin-left:8px;}</style><div class="MuiCardActions-root MuiCardActions-spacing css-12uoe1q-MuiCardActions-root-Card-cardActions" data-testid="Card-actions"><a class="MuiTypography-root MuiTypography-link MuiLink-root MuiLink-underlineAlways css-1xdedpr-Link-root-MuiTypography-root-MuiLink-root-Link-root" __typename="Link" colorscheme="default" target="_blank" rel="noopener noreferrer" data-csk-entry-id="3VpmFsPwFQTOjOnuqvG8ur" data-csk-entry-type="Link" data-csk-entry-display-text="Link" aria-label="Read Now" data-large-text="false" href="/en-ca/blog/security-labs/security-alert-critical-react2shell-vulnerability"><style data-emotion="css 1vv114x-Link-root">.css-1vv114x-Link-root{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}.css-1vv114x-Link-root .subText{-webkit-text-decoration:underline;text-decoration:underline;margin-left:4px;}.css-1vv114x-Link-root[data-large-text=true]{display:inline-block;text-wrap:wrap;text-align:left;}</style><style data-emotion="css agh5tf-Link-root">.css-agh5tf-Link-root{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}.css-agh5tf-Link-root .subText{-webkit-text-decoration:underline;text-decoration:underline;margin-left:4px;}.css-agh5tf-Link-root[data-large-text=true]{display:inline-block;text-wrap:wrap;text-align:left;}</style><div class="MuiBox-root css-agh5tf-Link-root"><span><style data-emotion="css 70qvj9">.css-70qvj9{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}</style><span class="MuiBox-root css-70qvj9"><span>Read Now</span></span></span><div class="MuiBox-root css-lh959v"><span class="material-icons notranslate MuiIcon-root MuiIcon-fontSizeMedium fas fa-chevron-right css-kp9ftd-MuiIcon-root" aria-hidden="true"></span></div></div></a></div></div></a><a class="MuiTypography-root MuiTypography-inherit MuiLink-root MuiLink-underlineAlways MuiPaper-root MuiPaper-elevation MuiPaper-rounded MuiPaper-elevation0 MuiCard-root css-18tjc9d-Link-root-MuiTypography-root-MuiLink-root-Link-root-MuiPaper-root-MuiCard-root-Card-root" data-testid="Card" data-csk-entry-id="6VVv0Y2sNhq7b9RGSLMKjn" data-csk-entry-type="Card" data-csk-entry-display-text="Card" textSpacing="1" link="[object Object]" category="[object Object]" eyebrowColor="default" richEyebrow="[object Object]" target="_blank" rel="noopener noreferrer" data-large-text="false" href="/en-ca/blog/security-labs/gray-hat-hackers"><div class="MuiCardMedia-root css-ihp4d8-MuiCardMedia-root-Card-cardMedia"><img data-testid="Media" alt="" loading="lazy" width="2400" height="1256" decoding="async" data-nimg="1" class="css-182ql0r-Media-root" style="color:transparent" sizes="100vw" srcSet="/_next/image?url=https%3A%2F%2Fimages.ctfassets.net%2Fo2pgk9gufvga%2F5TOIHJ2y11iqj1otSLLoYn%2F29bd949eaadbd55db68e58ba049f46ee%2FBlog_Shades_of_Gray__The_Risk_of_Doing_Business_with_Hackers.png&w=640&q=75 640w, /_next/image?url=https%3A%2F%2Fimages.ctfassets.net%2Fo2pgk9gufvga%2F5TOIHJ2y11iqj1otSLLoYn%2F29bd949eaadbd55db68e58ba049f46ee%2FBlog_Shades_of_Gray__The_Risk_of_Doing_Business_with_Hackers.png&w=750&q=75 750w, /_next/image?url=https%3A%2F%2Fimages.ctfassets.net%2Fo2pgk9gufvga%2F5TOIHJ2y11iqj1otSLLoYn%2F29bd949eaadbd55db68e58ba049f46ee%2FBlog_Shades_of_Gray__The_Risk_of_Doing_Business_with_Hackers.png&w=828&q=75 828w, /_next/image?url=https%3A%2F%2Fimages.ctfassets.net%2Fo2pgk9gufvga%2F5TOIHJ2y11iqj1otSLLoYn%2F29bd949eaadbd55db68e58ba049f46ee%2FBlog_Shades_of_Gray__The_Risk_of_Doing_Business_with_Hackers.png&w=1080&q=75 1080w, /_next/image?url=https%3A%2F%2Fimages.ctfassets.net%2Fo2pgk9gufvga%2F5TOIHJ2y11iqj1otSLLoYn%2F29bd949eaadbd55db68e58ba049f46ee%2FBlog_Shades_of_Gray__The_Risk_of_Doing_Business_with_Hackers.png&w=1200&q=75 1200w, /_next/image?url=https%3A%2F%2Fimages.ctfassets.net%2Fo2pgk9gufvga%2F5TOIHJ2y11iqj1otSLLoYn%2F29bd949eaadbd55db68e58ba049f46ee%2FBlog_Shades_of_Gray__The_Risk_of_Doing_Business_with_Hackers.png&w=1920&q=75 1920w, /_next/image?url=https%3A%2F%2Fimages.ctfassets.net%2Fo2pgk9gufvga%2F5TOIHJ2y11iqj1otSLLoYn%2F29bd949eaadbd55db68e58ba049f46ee%2FBlog_Shades_of_Gray__The_Risk_of_Doing_Business_with_Hackers.png&w=2048&q=75 2048w, /_next/image?url=https%3A%2F%2Fimages.ctfassets.net%2Fo2pgk9gufvga%2F5TOIHJ2y11iqj1otSLLoYn%2F29bd949eaadbd55db68e58ba049f46ee%2FBlog_Shades_of_Gray__The_Risk_of_Doing_Business_with_Hackers.png&w=3840&q=75 3840w" src="/_next/image?url=https%3A%2F%2Fimages.ctfassets.net%2Fo2pgk9gufvga%2F5TOIHJ2y11iqj1otSLLoYn%2F29bd949eaadbd55db68e58ba049f46ee%2FBlog_Shades_of_Gray__The_Risk_of_Doing_Business_with_Hackers.png&w=3840&q=75"/><div class="MuiBox-root css-1flgmxw-Card-mediaDecorator"><svg class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-1lnxrd9-MuiSvgIcon-root-Card-downloadIcon" focusable="false" aria-hidden="true" viewBox="0 0 26 34" width="26" height="34" fill="none"><path d="M0.667969 32.3287H25.4208M23.3915 14.0982L12.571 24.9186L1.75204 14.0996M12.4943 24.7528V0" stroke="white" stroke-width="2" stroke-miterlimit="10"></path></svg><svg class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-1y847rn-MuiSvgIcon-root-Card-playIcon" focusable="false" aria-hidden="true" viewBox="0 0 25 32" width="25" height="32" fill="none"><path d="M0.558594 0.799927V31.3454L24.5586 16.0727L0.558594 0.799927Z" fill="white"></path></svg></div></div><span class="MuiTypography-root MuiTypography-eyebrowMd css-186g1ks-MuiTypography-root-Card-cardCategory">Security</span><div class="MuiCardContent-root css-ouubfj-MuiCardContent-root-Card-cardContent"><div class="MuiBox-root css-11pd1jj-Text-root-Card-text" data-testid="Card-text" highlightColor="yellow" eyebrowColor="default" titleColor="default" subtitleColor="default" colorscheme="default"><div class="MuiBox-root css-11xyynr-Text-contentContainer"><div class="MuiBox-root css-a66rqh-Text-richEyebrow"><h3 class="MuiTypography-root MuiTypography-h3 css-1vtjxb1-MuiTypography-root" data-testid="Text-h3"><b>Blog</b></h3></div><div class="MuiBox-root css-1edvyth-Text-richSubtitle"><h3 class="MuiTypography-root MuiTypography-h3 css-1vtjxb1-MuiTypography-root" data-testid="Text-h3"><b>Shades of Gray: The Risk of Doing Business with Hackers</b></h3></div><div class="MuiBox-root css-61thsz-Text-body"><h5 class="MuiTypography-root MuiTypography-h5 css-b1ll5w-MuiTypography-root" data-testid="Text-h5">Gray hat hackers may appear altruistic, but attitudes can turn quickly when money is involved. How should businesses decide who to trust?</h5><span class="MuiBox-root css-o7rjpj-Text-embeddedRoot" data-testid="Text-embedded-entry-block"><div class="MuiBox-root css-we6kxz-BlogAuthor-root" role="button"><div class="MuiAvatar-root MuiAvatar-circular MuiAvatar-colorDefault css-1gb2pws-MuiAvatar-root-BlogAuthor-avatar"><img data-testid="Media" alt="" loading="lazy" width="800" height="800" decoding="async" data-nimg="1" class="css-vxzysm-Media-root-BlogAuthor-image" style="color:transparent" sizes="100vw" srcSet="/_next/image?url=https%3A%2F%2Fimages.ctfassets.net%2Fo2pgk9gufvga%2F5hfTpeydczKNnZcBFADgTf%2F51c09fdc599498d1019a0f95f3f18db5%2FJessicaS.jpeg&w=640&q=75 640w, /_next/image?url=https%3A%2F%2Fimages.ctfassets.net%2Fo2pgk9gufvga%2F5hfTpeydczKNnZcBFADgTf%2F51c09fdc599498d1019a0f95f3f18db5%2FJessicaS.jpeg&w=750&q=75 750w, /_next/image?url=https%3A%2F%2Fimages.ctfassets.net%2Fo2pgk9gufvga%2F5hfTpeydczKNnZcBFADgTf%2F51c09fdc599498d1019a0f95f3f18db5%2FJessicaS.jpeg&w=828&q=75 828w, /_next/image?url=https%3A%2F%2Fimages.ctfassets.net%2Fo2pgk9gufvga%2F5hfTpeydczKNnZcBFADgTf%2F51c09fdc599498d1019a0f95f3f18db5%2FJessicaS.jpeg&w=1080&q=75 1080w, /_next/image?url=https%3A%2F%2Fimages.ctfassets.net%2Fo2pgk9gufvga%2F5hfTpeydczKNnZcBFADgTf%2F51c09fdc599498d1019a0f95f3f18db5%2FJessicaS.jpeg&w=1200&q=75 1200w, /_next/image?url=https%3A%2F%2Fimages.ctfassets.net%2Fo2pgk9gufvga%2F5hfTpeydczKNnZcBFADgTf%2F51c09fdc599498d1019a0f95f3f18db5%2FJessicaS.jpeg&w=1920&q=75 1920w, /_next/image?url=https%3A%2F%2Fimages.ctfassets.net%2Fo2pgk9gufvga%2F5hfTpeydczKNnZcBFADgTf%2F51c09fdc599498d1019a0f95f3f18db5%2FJessicaS.jpeg&w=2048&q=75 2048w, /_next/image?url=https%3A%2F%2Fimages.ctfassets.net%2Fo2pgk9gufvga%2F5hfTpeydczKNnZcBFADgTf%2F51c09fdc599498d1019a0f95f3f18db5%2FJessicaS.jpeg&w=3840&q=75 3840w" src="/_next/image?url=https%3A%2F%2Fimages.ctfassets.net%2Fo2pgk9gufvga%2F5hfTpeydczKNnZcBFADgTf%2F51c09fdc599498d1019a0f95f3f18db5%2FJessicaS.jpeg&w=3840&q=75"/></div><span class="MuiTypography-root MuiTypography-bodycopyXs css-1vl29xe-MuiTypography-root-BlogAuthor-name">Jessica Stainer</span><span class="MuiTypography-root MuiTypography-bodycopyXs css-8vwgn3-MuiTypography-root-BlogAuthor-pubDate">November 24, 2025</span></div></span></div></div></div><div class="MuiCardActions-root MuiCardActions-spacing css-12uoe1q-MuiCardActions-root-Card-cardActions" data-testid="Card-actions"><a class="MuiTypography-root MuiTypography-link MuiLink-root MuiLink-underlineAlways css-1xdedpr-Link-root-MuiTypography-root-MuiLink-root-Link-root" __typename="Link" colorscheme="default" target="_blank" rel="noopener noreferrer" data-csk-entry-id="6VVv0Y2sNhq7b9RGSLMKjn" data-csk-entry-type="Link" data-csk-entry-display-text="Link" aria-label="Read Now" data-large-text="false" href="/en-ca/blog/security-labs/gray-hat-hackers"><div class="MuiBox-root css-agh5tf-Link-root"><span><span class="MuiBox-root css-70qvj9"><span>Read Now</span></span></span><div class="MuiBox-root css-lh959v"><span class="material-icons notranslate MuiIcon-root MuiIcon-fontSizeMedium fas fa-chevron-right css-kp9ftd-MuiIcon-root" aria-hidden="true"></span></div></div></a></div></div></a><a class="MuiTypography-root MuiTypography-inherit MuiLink-root MuiLink-underlineAlways MuiPaper-root MuiPaper-elevation MuiPaper-rounded MuiPaper-elevation0 MuiCard-root css-18tjc9d-Link-root-MuiTypography-root-MuiLink-root-Link-root-MuiPaper-root-MuiCard-root-Card-root" data-testid="Card" data-csk-entry-id="2ZeEt4tJAMko1ZPGCBxhbL" data-csk-entry-type="Card" data-csk-entry-display-text="Card" textSpacing="1" link="[object Object]" category="[object Object]" eyebrowColor="default" richEyebrow="[object Object]" target="_blank" rel="noopener noreferrer" data-large-text="false" href="/en-ca/blog/security-labs/risky-tech-ranking-q3-2025-updates"><div class="MuiCardMedia-root css-ihp4d8-MuiCardMedia-root-Card-cardMedia"><img data-testid="Media" alt="" loading="lazy" width="2400" height="1256" decoding="async" data-nimg="1" class="css-182ql0r-Media-root" style="color:transparent" sizes="100vw" srcSet="/_next/image?url=https%3A%2F%2Fimages.ctfassets.net%2Fo2pgk9gufvga%2F7j6hi1rNvYhcuiqIFnbqYd%2F2c71c1471ee689d13b7ba3f5dc2afd6a%2FBlog_Risky_Tech_Ranking-Q3.png&w=640&q=75 640w, /_next/image?url=https%3A%2F%2Fimages.ctfassets.net%2Fo2pgk9gufvga%2F7j6hi1rNvYhcuiqIFnbqYd%2F2c71c1471ee689d13b7ba3f5dc2afd6a%2FBlog_Risky_Tech_Ranking-Q3.png&w=750&q=75 750w, /_next/image?url=https%3A%2F%2Fimages.ctfassets.net%2Fo2pgk9gufvga%2F7j6hi1rNvYhcuiqIFnbqYd%2F2c71c1471ee689d13b7ba3f5dc2afd6a%2FBlog_Risky_Tech_Ranking-Q3.png&w=828&q=75 828w, /_next/image?url=https%3A%2F%2Fimages.ctfassets.net%2Fo2pgk9gufvga%2F7j6hi1rNvYhcuiqIFnbqYd%2F2c71c1471ee689d13b7ba3f5dc2afd6a%2FBlog_Risky_Tech_Ranking-Q3.png&w=1080&q=75 1080w, /_next/image?url=https%3A%2F%2Fimages.ctfassets.net%2Fo2pgk9gufvga%2F7j6hi1rNvYhcuiqIFnbqYd%2F2c71c1471ee689d13b7ba3f5dc2afd6a%2FBlog_Risky_Tech_Ranking-Q3.png&w=1200&q=75 1200w, /_next/image?url=https%3A%2F%2Fimages.ctfassets.net%2Fo2pgk9gufvga%2F7j6hi1rNvYhcuiqIFnbqYd%2F2c71c1471ee689d13b7ba3f5dc2afd6a%2FBlog_Risky_Tech_Ranking-Q3.png&w=1920&q=75 1920w, /_next/image?url=https%3A%2F%2Fimages.ctfassets.net%2Fo2pgk9gufvga%2F7j6hi1rNvYhcuiqIFnbqYd%2F2c71c1471ee689d13b7ba3f5dc2afd6a%2FBlog_Risky_Tech_Ranking-Q3.png&w=2048&q=75 2048w, /_next/image?url=https%3A%2F%2Fimages.ctfassets.net%2Fo2pgk9gufvga%2F7j6hi1rNvYhcuiqIFnbqYd%2F2c71c1471ee689d13b7ba3f5dc2afd6a%2FBlog_Risky_Tech_Ranking-Q3.png&w=3840&q=75 3840w" src="/_next/image?url=https%3A%2F%2Fimages.ctfassets.net%2Fo2pgk9gufvga%2F7j6hi1rNvYhcuiqIFnbqYd%2F2c71c1471ee689d13b7ba3f5dc2afd6a%2FBlog_Risky_Tech_Ranking-Q3.png&w=3840&q=75"/><div class="MuiBox-root css-1flgmxw-Card-mediaDecorator"><svg class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-1lnxrd9-MuiSvgIcon-root-Card-downloadIcon" focusable="false" aria-hidden="true" viewBox="0 0 26 34" width="26" height="34" fill="none"><path d="M0.667969 32.3287H25.4208M23.3915 14.0982L12.571 24.9186L1.75204 14.0996M12.4943 24.7528V0" stroke="white" stroke-width="2" stroke-miterlimit="10"></path></svg><svg class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-1y847rn-MuiSvgIcon-root-Card-playIcon" focusable="false" aria-hidden="true" viewBox="0 0 25 32" width="25" height="32" fill="none"><path d="M0.558594 0.799927V31.3454L24.5586 16.0727L0.558594 0.799927Z" fill="white"></path></svg></div></div><span class="MuiTypography-root MuiTypography-eyebrowMd css-186g1ks-MuiTypography-root-Card-cardCategory">Security</span><div class="MuiCardContent-root css-ouubfj-MuiCardContent-root-Card-cardContent"><div class="MuiBox-root css-11pd1jj-Text-root-Card-text" data-testid="Card-text" highlightColor="yellow" eyebrowColor="default" titleColor="default" subtitleColor="default" colorscheme="default"><div class="MuiBox-root css-11xyynr-Text-contentContainer"><div class="MuiBox-root css-a66rqh-Text-richEyebrow"><h3 class="MuiTypography-root MuiTypography-h3 css-1vtjxb1-MuiTypography-root" data-testid="Text-h3"><b>Blog</b></h3></div><div class="MuiBox-root css-1edvyth-Text-richSubtitle"><h3 class="MuiTypography-root MuiTypography-h3 css-1vtjxb1-MuiTypography-root" data-testid="Text-h3"><b>Risky Tech Ranking: Q3 2025 Updates</b></h3></div><div class="MuiBox-root css-61thsz-Text-body"><h5 class="MuiTypography-root MuiTypography-h5 css-b1ll5w-MuiTypography-root" data-testid="Text-h5">See how Coalition’s Risky Tech Ranking evolved in Q3 2025 with updates on the number of vendors scored, contributing vulnerabilities, Vendor Scores, and more.</h5><span class="MuiBox-root css-o7rjpj-Text-embeddedRoot" data-testid="Text-embedded-entry-block"><div class="MuiBox-root css-we6kxz-BlogAuthor-root" role="button"><div class="MuiAvatar-root MuiAvatar-circular MuiAvatar-colorDefault css-1gb2pws-MuiAvatar-root-BlogAuthor-avatar"><img data-testid="Media" alt="" loading="lazy" width="1608" height="1608" decoding="async" data-nimg="1" class="css-vxzysm-Media-root-BlogAuthor-image" style="color:transparent" sizes="100vw" srcSet="/_next/image?url=https%3A%2F%2Fimages.ctfassets.net%2Fo2pgk9gufvga%2F3otDD1dYfEIsrBRIAF5cju%2Ff2107e236ae0bd5088f12f2d064244a1%2FLucio_Fernandez-Arjona.jpg&w=640&q=75 640w, /_next/image?url=https%3A%2F%2Fimages.ctfassets.net%2Fo2pgk9gufvga%2F3otDD1dYfEIsrBRIAF5cju%2Ff2107e236ae0bd5088f12f2d064244a1%2FLucio_Fernandez-Arjona.jpg&w=750&q=75 750w, /_next/image?url=https%3A%2F%2Fimages.ctfassets.net%2Fo2pgk9gufvga%2F3otDD1dYfEIsrBRIAF5cju%2Ff2107e236ae0bd5088f12f2d064244a1%2FLucio_Fernandez-Arjona.jpg&w=828&q=75 828w, /_next/image?url=https%3A%2F%2Fimages.ctfassets.net%2Fo2pgk9gufvga%2F3otDD1dYfEIsrBRIAF5cju%2Ff2107e236ae0bd5088f12f2d064244a1%2FLucio_Fernandez-Arjona.jpg&w=1080&q=75 1080w, /_next/image?url=https%3A%2F%2Fimages.ctfassets.net%2Fo2pgk9gufvga%2F3otDD1dYfEIsrBRIAF5cju%2Ff2107e236ae0bd5088f12f2d064244a1%2FLucio_Fernandez-Arjona.jpg&w=1200&q=75 1200w, /_next/image?url=https%3A%2F%2Fimages.ctfassets.net%2Fo2pgk9gufvga%2F3otDD1dYfEIsrBRIAF5cju%2Ff2107e236ae0bd5088f12f2d064244a1%2FLucio_Fernandez-Arjona.jpg&w=1920&q=75 1920w, /_next/image?url=https%3A%2F%2Fimages.ctfassets.net%2Fo2pgk9gufvga%2F3otDD1dYfEIsrBRIAF5cju%2Ff2107e236ae0bd5088f12f2d064244a1%2FLucio_Fernandez-Arjona.jpg&w=2048&q=75 2048w, /_next/image?url=https%3A%2F%2Fimages.ctfassets.net%2Fo2pgk9gufvga%2F3otDD1dYfEIsrBRIAF5cju%2Ff2107e236ae0bd5088f12f2d064244a1%2FLucio_Fernandez-Arjona.jpg&w=3840&q=75 3840w" src="/_next/image?url=https%3A%2F%2Fimages.ctfassets.net%2Fo2pgk9gufvga%2F3otDD1dYfEIsrBRIAF5cju%2Ff2107e236ae0bd5088f12f2d064244a1%2FLucio_Fernandez-Arjona.jpg&w=3840&q=75"/></div><span class="MuiTypography-root MuiTypography-bodycopyXs css-1vl29xe-MuiTypography-root-BlogAuthor-name">Lucio Fernandez-Arjona</span><span class="MuiTypography-root MuiTypography-bodycopyXs css-8vwgn3-MuiTypography-root-BlogAuthor-pubDate">November 07, 2025</span></div></span></div></div></div><div class="MuiCardActions-root MuiCardActions-spacing css-12uoe1q-MuiCardActions-root-Card-cardActions" data-testid="Card-actions"><a class="MuiTypography-root MuiTypography-link MuiLink-root MuiLink-underlineAlways css-1xdedpr-Link-root-MuiTypography-root-MuiLink-root-Link-root" __typename="Link" colorscheme="default" target="_blank" rel="noopener noreferrer" data-csk-entry-id="2ZeEt4tJAMko1ZPGCBxhbL" data-csk-entry-type="Link" data-csk-entry-display-text="Link" aria-label="Read Now" data-large-text="false" href="/en-ca/blog/security-labs/risky-tech-ranking-q3-2025-updates"><div class="MuiBox-root css-agh5tf-Link-root"><span><span class="MuiBox-root css-70qvj9"><span>Read Now</span></span></span><div class="MuiBox-root css-lh959v"><span class="material-icons notranslate MuiIcon-root MuiIcon-fontSizeMedium fas fa-chevron-right css-kp9ftd-MuiIcon-root" aria-hidden="true"></span></div></div></a></div></div></a></div></div></div></div></div></div></div></main><style data-emotion="css 1wtxn2l-Footer-root">.css-1wtxn2l-Footer-root{padding:36px 0px 0px 0px;background-color:#000000;}</style><footer data-csk-entry-id="Scz8R8HKPL65x5R3TDlEU" data-csk-entry-type="footer" data-csk-entry-display-text="Footer" class="css-1wtxn2l-Footer-root"><style data-emotion="css q252x7-MuiContainer-root-Footer-container">.css-q252x7-MuiContainer-root-Footer-container{width:100%;margin-left:auto;box-sizing:border-box;margin-right:auto;display:block;padding-left:16px;padding-right:16px;}@media (min-width:600px){.css-q252x7-MuiContainer-root-Footer-container{padding-left:24px;padding-right:24px;}}@media (min-width:1200px){.css-q252x7-MuiContainer-root-Footer-container{max-width:1200px;}}</style><div class="MuiContainer-root MuiContainer-maxWidthLg css-q252x7-MuiContainer-root-Footer-container"><style data-emotion="css 1fhlno7-Footer-logoSocialWrapper">.css-1fhlno7-Footer-logoSocialWrapper{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;-webkit-box-flex-wrap:wrap;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;gap:24px;}@media (min-width:900px){.css-1fhlno7-Footer-logoSocialWrapper{-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;}}.css-1fhlno7-Footer-logoSocialWrapper [class$=Footer-logoWrapper]{margin:0;}.css-1fhlno7-Footer-logoSocialWrapper [class$=Footer-socialWrapper]{margin:0;}</style><style data-emotion="css ovsfme-Footer-logoSocialWrapper">.css-ovsfme-Footer-logoSocialWrapper{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;-webkit-box-flex-wrap:wrap;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;gap:24px;}@media (min-width:900px){.css-ovsfme-Footer-logoSocialWrapper{-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;}}.css-ovsfme-Footer-logoSocialWrapper [class$=Footer-logoWrapper]{margin:0;}.css-ovsfme-Footer-logoSocialWrapper [class$=Footer-socialWrapper]{margin:0;}</style><div class="MuiBox-root css-ovsfme-Footer-logoSocialWrapper"><style data-emotion="css ph28r1-Footer-logoWrapper">.css-ph28r1-Footer-logoWrapper img{height:49px;width:auto;}@media (max-width:899.95px){.css-ph28r1-Footer-logoWrapper{margin-bottom:32px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;width:100%;}}</style><style data-emotion="css 1q8qvse-Footer-logoWrapper">.css-1q8qvse-Footer-logoWrapper img{height:49px;width:auto;}@media (max-width:899.95px){.css-1q8qvse-Footer-logoWrapper{margin-bottom:32px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;width:100%;}}</style><div class="MuiBox-root css-1q8qvse-Footer-logoWrapper"><img src="https://images.ctfassets.net/o2pgk9gufvga/4FsCKS3AtT1XrYg66OOkor/88e55df16c8b77f057ccecdb678a133f/Coalition_Logo_Reverse.svg" data-testid="Media" class="css-182ql0r-Media-root" loading="lazy" height="49" width="192" alt="Logo > Coalition in white with transparent background " __typename="Asset" url="https://images.ctfassets.net/o2pgk9gufvga/4FsCKS3AtT1XrYg66OOkor/88e55df16c8b77f057ccecdb678a133f/Coalition_Logo_Reverse.svg" id="4FsCKS3AtT1XrYg66OOkor" sizes="100vw"/></div><style data-emotion="css 1uzjj6d-Footer-socialWrapper">.css-1uzjj6d-Footer-socialWrapper{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:flex-start;-webkit-box-align:flex-start;-ms-flex-align:flex-start;align-items:flex-start;-webkit-box-pack:end;-ms-flex-pack:end;-webkit-justify-content:flex-end;justify-content:flex-end;gap:12px;}@media (max-width:899.95px){.css-1uzjj6d-Footer-socialWrapper{-webkit-box-pack:start;-ms-flex-pack:start;-webkit-justify-content:flex-start;justify-content:flex-start;margin-bottom:80px;}}</style><style data-emotion="css aeg9qj-Footer-socialWrapper">.css-aeg9qj-Footer-socialWrapper{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:flex-start;-webkit-box-align:flex-start;-ms-flex-align:flex-start;align-items:flex-start;-webkit-box-pack:end;-ms-flex-pack:end;-webkit-justify-content:flex-end;justify-content:flex-end;gap:12px;}@media (max-width:899.95px){.css-aeg9qj-Footer-socialWrapper{-webkit-box-pack:start;-ms-flex-pack:start;-webkit-justify-content:flex-start;justify-content:flex-start;margin-bottom:80px;}}</style><div class="MuiBox-root css-aeg9qj-Footer-socialWrapper"><style data-emotion="css 1in5abf-Footer-socialLink">.css-1in5abf-Footer-socialLink{background-color:#FFFFFF;opacity:0.5;width:28px;height:28px;color:#000000;}.css-1in5abf-Footer-socialLink:hover{background-color:#FFFFFF;}.css-1in5abf-Footer-socialLink span{font-size:1rem;}</style><style data-emotion="css 234zwm-MuiIconButton-root-Footer-socialLink">.css-234zwm-MuiIconButton-root-Footer-socialLink{text-align:center;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;font-size:1.5rem;padding:8px;border-radius:50%;overflow:visible;color:rgba(0, 0, 0, 0.54);-webkit-transition:background-color 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;transition:background-color 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;background-color:#FFFFFF;opacity:0.5;width:28px;height:28px;color:#000000;}.css-234zwm-MuiIconButton-root-Footer-socialLink:hover{background-color:rgba(0, 0, 0, 0.04);}@media (hover: none){.css-234zwm-MuiIconButton-root-Footer-socialLink:hover{background-color:transparent;}}.css-234zwm-MuiIconButton-root-Footer-socialLink.Mui-disabled{background-color:transparent;color:rgba(0, 0, 0, 0.26);}.css-234zwm-MuiIconButton-root-Footer-socialLink:hover{background-color:#FFFFFF;}.css-234zwm-MuiIconButton-root-Footer-socialLink span{font-size:1rem;}</style><style data-emotion="css 1vxc2w0-MuiButtonBase-root-MuiIconButton-root-Footer-socialLink">.css-1vxc2w0-MuiButtonBase-root-MuiIconButton-root-Footer-socialLink{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;position:relative;box-sizing:border-box;-webkit-tap-highlight-color:transparent;background-color:transparent;outline:0;border:0;margin:0;border-radius:0;padding:0;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;vertical-align:middle;-moz-appearance:none;-webkit-appearance:none;-webkit-text-decoration:none;text-decoration:none;color:inherit;text-align:center;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;font-size:1.5rem;padding:8px;border-radius:50%;overflow:visible;color:rgba(0, 0, 0, 0.54);-webkit-transition:background-color 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;transition:background-color 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;background-color:#FFFFFF;opacity:0.5;width:28px;height:28px;color:#000000;}.css-1vxc2w0-MuiButtonBase-root-MuiIconButton-root-Footer-socialLink::-moz-focus-inner{border-style:none;}.css-1vxc2w0-MuiButtonBase-root-MuiIconButton-root-Footer-socialLink.Mui-disabled{pointer-events:none;cursor:default;}@media print{.css-1vxc2w0-MuiButtonBase-root-MuiIconButton-root-Footer-socialLink{-webkit-print-color-adjust:exact;color-adjust:exact;}}.css-1vxc2w0-MuiButtonBase-root-MuiIconButton-root-Footer-socialLink:hover{background-color:rgba(0, 0, 0, 0.04);}@media (hover: none){.css-1vxc2w0-MuiButtonBase-root-MuiIconButton-root-Footer-socialLink:hover{background-color:transparent;}}.css-1vxc2w0-MuiButtonBase-root-MuiIconButton-root-Footer-socialLink.Mui-disabled{background-color:transparent;color:rgba(0, 0, 0, 0.26);}.css-1vxc2w0-MuiButtonBase-root-MuiIconButton-root-Footer-socialLink:hover{background-color:#FFFFFF;}.css-1vxc2w0-MuiButtonBase-root-MuiIconButton-root-Footer-socialLink span{font-size:1rem;}</style><style data-emotion="css 1iapfzv-Link-root-MuiButtonBase-root-MuiIconButton-root-Footer-socialLink">.css-1iapfzv-Link-root-MuiButtonBase-root-MuiIconButton-root-Footer-socialLink{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;position:relative;box-sizing:border-box;-webkit-tap-highlight-color:transparent;background-color:transparent;outline:0;border:0;margin:0;border-radius:0;padding:0;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;vertical-align:middle;-moz-appearance:none;-webkit-appearance:none;-webkit-text-decoration:none;text-decoration:none;color:inherit;text-align:center;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;font-size:1.5rem;padding:8px;border-radius:50%;overflow:visible;color:rgba(0, 0, 0, 0.54);-webkit-transition:background-color 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;transition:background-color 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;background-color:#FFFFFF;opacity:0.5;width:28px;height:28px;color:#000000;}.css-1iapfzv-Link-root-MuiButtonBase-root-MuiIconButton-root-Footer-socialLink .subText{-webkit-text-decoration:underline;text-decoration:underline;margin-left:4px;}.css-1iapfzv-Link-root-MuiButtonBase-root-MuiIconButton-root-Footer-socialLink[data-large-text=true]{display:inline-block;text-wrap:wrap;text-align:left;}.css-1iapfzv-Link-root-MuiButtonBase-root-MuiIconButton-root-Footer-socialLink::-moz-focus-inner{border-style:none;}.css-1iapfzv-Link-root-MuiButtonBase-root-MuiIconButton-root-Footer-socialLink.Mui-disabled{pointer-events:none;cursor:default;}@media print{.css-1iapfzv-Link-root-MuiButtonBase-root-MuiIconButton-root-Footer-socialLink{-webkit-print-color-adjust:exact;color-adjust:exact;}}.css-1iapfzv-Link-root-MuiButtonBase-root-MuiIconButton-root-Footer-socialLink:hover{background-color:rgba(0, 0, 0, 0.04);}@media (hover: none){.css-1iapfzv-Link-root-MuiButtonBase-root-MuiIconButton-root-Footer-socialLink:hover{background-color:transparent;}}.css-1iapfzv-Link-root-MuiButtonBase-root-MuiIconButton-root-Footer-socialLink.Mui-disabled{background-color:transparent;color:rgba(0, 0, 0, 0.26);}.css-1iapfzv-Link-root-MuiButtonBase-root-MuiIconButton-root-Footer-socialLink:hover{background-color:#FFFFFF;}.css-1iapfzv-Link-root-MuiButtonBase-root-MuiIconButton-root-Footer-socialLink span{font-size:1rem;}</style><style data-emotion="css g569at-MuiLink-root-Link-root-MuiButtonBase-root-MuiIconButton-root-Footer-socialLink">.css-g569at-MuiLink-root-Link-root-MuiButtonBase-root-MuiIconButton-root-Footer-socialLink{-webkit-text-decoration:underline;text-decoration:underline;text-decoration-color:rgba(39, 115, 224, 0.4);display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;position:relative;box-sizing:border-box;-webkit-tap-highlight-color:transparent;background-color:transparent;outline:0;border:0;margin:0;border-radius:0;padding:0;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;vertical-align:middle;-moz-appearance:none;-webkit-appearance:none;-webkit-text-decoration:none;text-decoration:none;color:inherit;text-align:center;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;font-size:1.5rem;padding:8px;border-radius:50%;overflow:visible;color:rgba(0, 0, 0, 0.54);-webkit-transition:background-color 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;transition:background-color 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;background-color:#FFFFFF;opacity:0.5;width:28px;height:28px;color:#000000;}.css-g569at-MuiLink-root-Link-root-MuiButtonBase-root-MuiIconButton-root-Footer-socialLink:hover{text-decoration-color:inherit;}.css-g569at-MuiLink-root-Link-root-MuiButtonBase-root-MuiIconButton-root-Footer-socialLink .subText{-webkit-text-decoration:underline;text-decoration:underline;margin-left:4px;}.css-g569at-MuiLink-root-Link-root-MuiButtonBase-root-MuiIconButton-root-Footer-socialLink[data-large-text=true]{display:inline-block;text-wrap:wrap;text-align:left;}.css-g569at-MuiLink-root-Link-root-MuiButtonBase-root-MuiIconButton-root-Footer-socialLink::-moz-focus-inner{border-style:none;}.css-g569at-MuiLink-root-Link-root-MuiButtonBase-root-MuiIconButton-root-Footer-socialLink.Mui-disabled{pointer-events:none;cursor:default;}@media print{.css-g569at-MuiLink-root-Link-root-MuiButtonBase-root-MuiIconButton-root-Footer-socialLink{-webkit-print-color-adjust:exact;color-adjust:exact;}}.css-g569at-MuiLink-root-Link-root-MuiButtonBase-root-MuiIconButton-root-Footer-socialLink:hover{background-color:rgba(0, 0, 0, 0.04);}@media (hover: none){.css-g569at-MuiLink-root-Link-root-MuiButtonBase-root-MuiIconButton-root-Footer-socialLink:hover{background-color:transparent;}}.css-g569at-MuiLink-root-Link-root-MuiButtonBase-root-MuiIconButton-root-Footer-socialLink.Mui-disabled{background-color:transparent;color:rgba(0, 0, 0, 0.26);}.css-g569at-MuiLink-root-Link-root-MuiButtonBase-root-MuiIconButton-root-Footer-socialLink:hover{background-color:#FFFFFF;}.css-g569at-MuiLink-root-Link-root-MuiButtonBase-root-MuiIconButton-root-Footer-socialLink span{font-size:1rem;}</style><style data-emotion="css 1pdefzc-MuiTypography-root-MuiLink-root-Link-root-MuiButtonBase-root-MuiIconButton-root-Footer-socialLink">.css-1pdefzc-MuiTypography-root-MuiLink-root-Link-root-MuiButtonBase-root-MuiIconButton-root-Footer-socialLink{margin:0;font:inherit;color:#2773e0;-webkit-text-decoration:underline;text-decoration:underline;text-decoration-color:rgba(39, 115, 224, 0.4);display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;position:relative;box-sizing:border-box;-webkit-tap-highlight-color:transparent;background-color:transparent;outline:0;border:0;margin:0;border-radius:0;padding:0;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;vertical-align:middle;-moz-appearance:none;-webkit-appearance:none;-webkit-text-decoration:none;text-decoration:none;color:inherit;text-align:center;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;font-size:1.5rem;padding:8px;border-radius:50%;overflow:visible;color:rgba(0, 0, 0, 0.54);-webkit-transition:background-color 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;transition:background-color 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;background-color:#FFFFFF;opacity:0.5;width:28px;height:28px;color:#000000;}.css-1pdefzc-MuiTypography-root-MuiLink-root-Link-root-MuiButtonBase-root-MuiIconButton-root-Footer-socialLink:hover{text-decoration-color:inherit;}.css-1pdefzc-MuiTypography-root-MuiLink-root-Link-root-MuiButtonBase-root-MuiIconButton-root-Footer-socialLink .subText{-webkit-text-decoration:underline;text-decoration:underline;margin-left:4px;}.css-1pdefzc-MuiTypography-root-MuiLink-root-Link-root-MuiButtonBase-root-MuiIconButton-root-Footer-socialLink[data-large-text=true]{display:inline-block;text-wrap:wrap;text-align:left;}.css-1pdefzc-MuiTypography-root-MuiLink-root-Link-root-MuiButtonBase-root-MuiIconButton-root-Footer-socialLink::-moz-focus-inner{border-style:none;}.css-1pdefzc-MuiTypography-root-MuiLink-root-Link-root-MuiButtonBase-root-MuiIconButton-root-Footer-socialLink.Mui-disabled{pointer-events:none;cursor:default;}@media print{.css-1pdefzc-MuiTypography-root-MuiLink-root-Link-root-MuiButtonBase-root-MuiIconButton-root-Footer-socialLink{-webkit-print-color-adjust:exact;color-adjust:exact;}}.css-1pdefzc-MuiTypography-root-MuiLink-root-Link-root-MuiButtonBase-root-MuiIconButton-root-Footer-socialLink:hover{background-color:rgba(0, 0, 0, 0.04);}@media (hover: none){.css-1pdefzc-MuiTypography-root-MuiLink-root-Link-root-MuiButtonBase-root-MuiIconButton-root-Footer-socialLink:hover{background-color:transparent;}}.css-1pdefzc-MuiTypography-root-MuiLink-root-Link-root-MuiButtonBase-root-MuiIconButton-root-Footer-socialLink.Mui-disabled{background-color:transparent;color:rgba(0, 0, 0, 0.26);}.css-1pdefzc-MuiTypography-root-MuiLink-root-Link-root-MuiButtonBase-root-MuiIconButton-root-Footer-socialLink:hover{background-color:#FFFFFF;}.css-1pdefzc-MuiTypography-root-MuiLink-root-Link-root-MuiButtonBase-root-MuiIconButton-root-Footer-socialLink span{font-size:1rem;}</style><a class="MuiTypography-root MuiTypography-inherit MuiLink-root MuiLink-underlineAlways MuiButtonBase-root MuiIconButton-root MuiIconButton-sizeMedium css-1pdefzc-MuiTypography-root-MuiLink-root-Link-root-MuiButtonBase-root-MuiIconButton-root-Footer-socialLink" href="https://www.linkedin.com/company/coalitioninc/" target="_self" rel="noopener noreferrer" tabindex="0" locale="en-ca" data-large-text="false"><span class="material-icons notranslate MuiIcon-root MuiIcon-fontSizeMedium fab fa-brands fa-linkedin-in css-kp9ftd-MuiIcon-root" aria-hidden="true"></span></a><a class="MuiTypography-root MuiTypography-inherit MuiLink-root MuiLink-underlineAlways MuiButtonBase-root MuiIconButton-root MuiIconButton-sizeMedium css-1pdefzc-MuiTypography-root-MuiLink-root-Link-root-MuiButtonBase-root-MuiIconButton-root-Footer-socialLink" href="https://x.com/SolveCyberRisk/" target="_self" rel="noopener noreferrer" tabindex="0" locale="en-ca" data-large-text="false"><span class="material-icons notranslate MuiIcon-root MuiIcon-fontSizeMedium fab fa-brands fa-x-twitter css-kp9ftd-MuiIcon-root" aria-hidden="true"></span></a><a class="MuiTypography-root MuiTypography-inherit MuiLink-root MuiLink-underlineAlways MuiButtonBase-root MuiIconButton-root MuiIconButton-sizeMedium css-1pdefzc-MuiTypography-root-MuiLink-root-Link-root-MuiButtonBase-root-MuiIconButton-root-Footer-socialLink" href="https://www.youtube.com/channel/UCoc7ed_HZrl-Ln4ZCnDsuZA" target="_self" rel="noopener noreferrer" tabindex="0" locale="en-ca" data-large-text="false"><span class="material-icons notranslate MuiIcon-root MuiIcon-fontSizeMedium fab fa-brands fa-youtube css-kp9ftd-MuiIcon-root" aria-hidden="true"></span></a><a class="MuiTypography-root MuiTypography-inherit MuiLink-root MuiLink-underlineAlways MuiButtonBase-root MuiIconButton-root MuiIconButton-sizeMedium css-1pdefzc-MuiTypography-root-MuiLink-root-Link-root-MuiButtonBase-root-MuiIconButton-root-Footer-socialLink" href="https://www.instagram.com/coalitioninc/" target="_self" rel="noopener noreferrer" tabindex="0" locale="en-ca" data-large-text="false"><span class="material-icons notranslate MuiIcon-root MuiIcon-fontSizeMedium fab fa-brands fa-instagram css-kp9ftd-MuiIcon-root" aria-hidden="true"></span></a><a class="MuiTypography-root MuiTypography-inherit MuiLink-root MuiLink-underlineAlways MuiButtonBase-root MuiIconButton-root MuiIconButton-sizeMedium css-1pdefzc-MuiTypography-root-MuiLink-root-Link-root-MuiButtonBase-root-MuiIconButton-root-Footer-socialLink" href="https://www.facebook.com/coalitioninc/" target="_self" rel="noopener noreferrer" tabindex="0" locale="en-ca" data-large-text="false"><span class="material-icons notranslate MuiIcon-root MuiIcon-fontSizeMedium fab fa-brands fa-facebook-f css-kp9ftd-MuiIcon-root" aria-hidden="true"></span></a></div></div><style data-emotion="css wgqaij-Footer-divider">.css-wgqaij-Footer-divider{border-color:#556271;opacity:0.5;border-bottom-width:1px;margin-top:32px;margin-bottom:32px;}</style><style data-emotion="css 49wwe3-MuiDivider-root-Footer-divider">.css-49wwe3-MuiDivider-root-Footer-divider{margin:0;-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;border-width:0;border-style:solid;border-color:rgba(0, 0, 0, 0.12);border-bottom-width:thin;border-color:#F9FAFB;border-bottom-width:2px;border-color:#556271;opacity:0.5;border-bottom-width:1px;margin-top:32px;margin-bottom:32px;}</style><hr class="MuiDivider-root MuiDivider-fullWidth css-49wwe3-MuiDivider-root-Footer-divider"/><style data-emotion="css 1yit786-Footer-navigationGrid">.css-1yit786-Footer-navigationGrid{width:100%;}</style><style data-emotion="css v1mvs3-MuiGrid-root-Footer-navigationGrid">.css-v1mvs3-MuiGrid-root-Footer-navigationGrid{box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-flex-wrap:wrap;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;width:100%;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;width:100%;}@media (min-width:0px){.css-v1mvs3-MuiGrid-root-Footer-navigationGrid{margin-top:-48px;}.css-v1mvs3-MuiGrid-root-Footer-navigationGrid>.MuiGrid-item{padding-top:48px;}}@media (min-width:600px){.css-v1mvs3-MuiGrid-root-Footer-navigationGrid{margin-top:-32px;}.css-v1mvs3-MuiGrid-root-Footer-navigationGrid>.MuiGrid-item{padding-top:32px;}}@media (min-width:0px){.css-v1mvs3-MuiGrid-root-Footer-navigationGrid{width:calc(100% + 48px);margin-left:-48px;}.css-v1mvs3-MuiGrid-root-Footer-navigationGrid>.MuiGrid-item{padding-left:48px;}}@media (min-width:600px){.css-v1mvs3-MuiGrid-root-Footer-navigationGrid{width:calc(100% + 32px);margin-left:-32px;}.css-v1mvs3-MuiGrid-root-Footer-navigationGrid>.MuiGrid-item{padding-left:32px;}}</style><div class="MuiGrid-root MuiGrid-container MuiGrid-spacing-xs-6 MuiGrid-spacing-sm-4 css-v1mvs3-MuiGrid-root-Footer-navigationGrid"><style data-emotion="css 12h9rq4-Footer-navigationGridItem">.css-12h9rq4-Footer-navigationGridItem a[class$=NavigationItemLink-link]:hover{color:#FFBB3C;-webkit-text-decoration:underline;text-decoration:underline;text-underline-offset:4px;}.css-12h9rq4-Footer-navigationGridItem:last-of-type >[class$=NavigationItem-root]:first-of-type >[class$=NavigationItem-footerNavigationItems] >[class$=NavigationItem-root]{margin-top:40px;}.css-12h9rq4-Footer-navigationGridItem:last-of-type >[class$=NavigationItem-root]:first-of-type >[class$=NavigationItem-footerNavigationItems] >[class$=NavigationItem-root] >a[class$=NavigationItem-footerLink]:first-of-type{-webkit-transition:-webkit-transform 0.3s ease,opacity 0.3s ease;transition:transform 0.3s ease,opacity 0.3s ease;-webkit-transform:translateX(0);-moz-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0);}.css-12h9rq4-Footer-navigationGridItem:last-of-type >[class$=NavigationItem-root]:first-of-type >[class$=NavigationItem-footerNavigationItems] >[class$=NavigationItem-root] >a[class$=NavigationItem-footerLink]:first-of-type:after{-webkit-transition:-webkit-transform 0.3s ease,opacity 0.3s ease;transition:transform 0.3s ease,opacity 0.3s ease;-webkit-transform:translateX(0);-moz-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0);content:"\f054";font-family:FontAwesome;font-weight:700;display:inline-block;margin-left:8px;font-size:0.65rem;}.css-12h9rq4-Footer-navigationGridItem:last-of-type >[class$=NavigationItem-root]:first-of-type >[class$=NavigationItem-footerNavigationItems] >[class$=NavigationItem-root] >a[class$=NavigationItem-footerLink]:first-of-type:hover{color:#FFBB3C;-webkit-text-decoration:underline;text-decoration:underline;text-underline-offset:4px;-webkit-transition:-webkit-transform 0.3s ease,opacity 0.3s ease;transition:transform 0.3s ease,opacity 0.3s ease;-webkit-transform:translateX(2px);-moz-transform:translateX(2px);-ms-transform:translateX(2px);transform:translateX(2px);}.css-12h9rq4-Footer-navigationGridItem:last-of-type >[class$=NavigationItem-root]:first-of-type >[class$=NavigationItem-footerNavigationItems] >[class$=NavigationItem-root] >a[class$=NavigationItem-footerLink]:first-of-type:hover:after{color:#FFBB3C;-webkit-transition:-webkit-transform 0.3s ease,opacity 0.3s ease;transition:transform 0.3s ease,opacity 0.3s ease;-webkit-transform:translateX(2px);-moz-transform:translateX(2px);-ms-transform:translateX(2px);transform:translateX(2px);content:"\f061";font-family:FontAwesome;font-weight:700;display:inline-block;margin-left:8px;font-size:0.65rem;}</style><style data-emotion="css rh5ans-MuiGrid-root-Footer-navigationGridItem">.css-rh5ans-MuiGrid-root-Footer-navigationGridItem{box-sizing:border-box;margin:0;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-flex-basis:100%;-ms-flex-preferred-size:100%;flex-basis:100%;-webkit-box-flex:0;-webkit-flex-grow:0;-ms-flex-positive:0;flex-grow:0;max-width:100%;}@media (min-width:600px){.css-rh5ans-MuiGrid-root-Footer-navigationGridItem{-webkit-flex-basis:50%;-ms-flex-preferred-size:50%;flex-basis:50%;-webkit-box-flex:0;-webkit-flex-grow:0;-ms-flex-positive:0;flex-grow:0;max-width:50%;}}@media (min-width:900px){.css-rh5ans-MuiGrid-root-Footer-navigationGridItem{-webkit-flex-basis:25%;-ms-flex-preferred-size:25%;flex-basis:25%;-webkit-box-flex:0;-webkit-flex-grow:0;-ms-flex-positive:0;flex-grow:0;max-width:25%;}}@media (min-width:1200px){.css-rh5ans-MuiGrid-root-Footer-navigationGridItem{-webkit-flex-basis:25%;-ms-flex-preferred-size:25%;flex-basis:25%;-webkit-box-flex:0;-webkit-flex-grow:0;-ms-flex-positive:0;flex-grow:0;max-width:25%;}}@media (min-width:1536px){.css-rh5ans-MuiGrid-root-Footer-navigationGridItem{-webkit-flex-basis:25%;-ms-flex-preferred-size:25%;flex-basis:25%;-webkit-box-flex:0;-webkit-flex-grow:0;-ms-flex-positive:0;flex-grow:0;max-width:25%;}}.css-rh5ans-MuiGrid-root-Footer-navigationGridItem a[class$=NavigationItemLink-link]:hover{color:#FFBB3C;-webkit-text-decoration:underline;text-decoration:underline;text-underline-offset:4px;}.css-rh5ans-MuiGrid-root-Footer-navigationGridItem:last-of-type >[class$=NavigationItem-root]:first-of-type >[class$=NavigationItem-footerNavigationItems] >[class$=NavigationItem-root]{margin-top:40px;}.css-rh5ans-MuiGrid-root-Footer-navigationGridItem:last-of-type >[class$=NavigationItem-root]:first-of-type >[class$=NavigationItem-footerNavigationItems] >[class$=NavigationItem-root] >a[class$=NavigationItem-footerLink]:first-of-type{-webkit-transition:-webkit-transform 0.3s ease,opacity 0.3s ease;transition:transform 0.3s ease,opacity 0.3s ease;-webkit-transform:translateX(0);-moz-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0);}.css-rh5ans-MuiGrid-root-Footer-navigationGridItem:last-of-type >[class$=NavigationItem-root]:first-of-type >[class$=NavigationItem-footerNavigationItems] >[class$=NavigationItem-root] >a[class$=NavigationItem-footerLink]:first-of-type:after{-webkit-transition:-webkit-transform 0.3s ease,opacity 0.3s ease;transition:transform 0.3s ease,opacity 0.3s ease;-webkit-transform:translateX(0);-moz-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0);content:"\f054";font-family:FontAwesome;font-weight:700;display:inline-block;margin-left:8px;font-size:0.65rem;}.css-rh5ans-MuiGrid-root-Footer-navigationGridItem:last-of-type >[class$=NavigationItem-root]:first-of-type >[class$=NavigationItem-footerNavigationItems] >[class$=NavigationItem-root] >a[class$=NavigationItem-footerLink]:first-of-type:hover{color:#FFBB3C;-webkit-text-decoration:underline;text-decoration:underline;text-underline-offset:4px;-webkit-transition:-webkit-transform 0.3s ease,opacity 0.3s ease;transition:transform 0.3s ease,opacity 0.3s ease;-webkit-transform:translateX(2px);-moz-transform:translateX(2px);-ms-transform:translateX(2px);transform:translateX(2px);}.css-rh5ans-MuiGrid-root-Footer-navigationGridItem:last-of-type >[class$=NavigationItem-root]:first-of-type >[class$=NavigationItem-footerNavigationItems] >[class$=NavigationItem-root] >a[class$=NavigationItem-footerLink]:first-of-type:hover:after{color:#FFBB3C;-webkit-transition:-webkit-transform 0.3s ease,opacity 0.3s ease;transition:transform 0.3s ease,opacity 0.3s ease;-webkit-transform:translateX(2px);-moz-transform:translateX(2px);-ms-transform:translateX(2px);transform:translateX(2px);content:"\f061";font-family:FontAwesome;font-weight:700;display:inline-block;margin-left:8px;font-size:0.65rem;}</style><div class="MuiGrid-root MuiGrid-item MuiGrid-grid-xs-12 MuiGrid-grid-sm-6 MuiGrid-grid-md-3 css-rh5ans-MuiGrid-root-Footer-navigationGridItem"><style data-emotion="css 1wbrxfq-NavigationItem-root">.css-1wbrxfq-NavigationItem-root{position:relative;}.css-1wbrxfq-NavigationItem-root [class$=Link-root]{font-family:'Public Sans',sans-serif;font-size:0.875rem;font-weight:400;line-height:1.35;letter-spacing:0;-webkit-text-decoration:none;text-decoration:none;color:#6B6B6A;}.css-1wbrxfq-NavigationItem-root [class$=MuiIcon-root]{font-size:0.625rem;}@media (max-width:899.95px){.css-1wbrxfq-NavigationItem-root{margin-bottom:48px;}}</style><style data-emotion="css 1vv8vtj-NavigationItem-root">.css-1vv8vtj-NavigationItem-root{position:relative;}.css-1vv8vtj-NavigationItem-root [class$=Link-root]{font-family:'Public Sans',sans-serif;font-size:0.875rem;font-weight:400;line-height:1.35;letter-spacing:0;-webkit-text-decoration:none;text-decoration:none;color:#6B6B6A;}.css-1vv8vtj-NavigationItem-root [class$=MuiIcon-root]{font-size:0.625rem;}@media (max-width:899.95px){.css-1vv8vtj-NavigationItem-root{margin-bottom:48px;}}</style><div class="MuiBox-root css-1vv8vtj-NavigationItem-root" data-testid="NavigationItem" ownerState="[object Object]"><style data-emotion="css nhqdk-NavigationItem-footerTitle">.css-nhqdk-NavigationItem-footerTitle{-webkit-text-decoration:none;text-decoration:none;text-transform:uppercase;color:#FFFFFF;font-family:'Public Sans',sans-serif;font-size:0.75rem;font-weight:800;line-height:1.35;letter-spacing:0;}</style><span class="css-nhqdk-NavigationItem-footerTitle">Insurance</span><style data-emotion="css 1xsmzkk-NavigationItem-footerNavigationItems">.css-1xsmzkk-NavigationItem-footerNavigationItems{padding-top:8px;}</style><style data-emotion="css g22b3e-NavigationItem-footerNavigationItems">.css-g22b3e-NavigationItem-footerNavigationItems{padding-top:8px;}</style><div class="MuiBox-root css-g22b3e-NavigationItem-footerNavigationItems"><style data-emotion="css 1lkngs-NavigationItemLink-root">.css-1lkngs-NavigationItemLink-root{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;border-radius:10px;}.css-1lkngs-NavigationItemLink-root [class$=MuiLink-root]{letter-spacing:0;-webkit-text-decoration:none;text-decoration:none;font-weight:400;color:inherit;}.css-1lkngs-NavigationItemLink-root [class$=MuiSvgIcon-root]{display:none;}</style><style data-emotion="css 1xw5ase-NavigationItemLink-root">.css-1xw5ase-NavigationItemLink-root{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;border-radius:10px;}.css-1xw5ase-NavigationItemLink-root [class$=MuiLink-root]{letter-spacing:0;-webkit-text-decoration:none;text-decoration:none;font-weight:400;color:inherit;}.css-1xw5ase-NavigationItemLink-root [class$=MuiSvgIcon-root]{display:none;}</style><div class="MuiBox-root css-1xw5ase-NavigationItemLink-root" data-testid="NavigationItemLink"><style data-emotion="css 1eo7eyj-NavigationItemLink-link">.css-1eo7eyj-NavigationItemLink-link{-webkit-text-decoration:none;text-decoration:none;color:#FFFFFF;font-family:'Public Sans',sans-serif;font-size:0.875rem;font-weight:400;line-height:1.35;letter-spacing:0;}</style><style data-emotion="css 8td2eb-Link-root-NavigationItemLink-link">.css-8td2eb-Link-root-NavigationItemLink-link{-webkit-text-decoration:none;text-decoration:none;color:#FFFFFF;font-family:'Public Sans',sans-serif;font-size:0.875rem;font-weight:400;line-height:1.35;letter-spacing:0;}.css-8td2eb-Link-root-NavigationItemLink-link .subText{-webkit-text-decoration:underline;text-decoration:underline;margin-left:4px;}.css-8td2eb-Link-root-NavigationItemLink-link[data-large-text=true]{display:inline-block;text-wrap:wrap;text-align:left;}</style><style data-emotion="css l9kdxn-MuiLink-root-Link-root-NavigationItemLink-link">.css-l9kdxn-MuiLink-root-Link-root-NavigationItemLink-link{-webkit-text-decoration:underline;text-decoration:underline;text-decoration-color:rgba(39, 115, 224, 0.4);-webkit-text-decoration:none;text-decoration:none;color:#FFFFFF;font-family:'Public Sans',sans-serif;font-size:0.875rem;font-weight:400;line-height:1.35;letter-spacing:0;}.css-l9kdxn-MuiLink-root-Link-root-NavigationItemLink-link:hover{text-decoration-color:inherit;}.css-l9kdxn-MuiLink-root-Link-root-NavigationItemLink-link .subText{-webkit-text-decoration:underline;text-decoration:underline;margin-left:4px;}.css-l9kdxn-MuiLink-root-Link-root-NavigationItemLink-link[data-large-text=true]{display:inline-block;text-wrap:wrap;text-align:left;}</style><style data-emotion="css 1drhl9z-MuiTypography-root-MuiLink-root-Link-root-NavigationItemLink-link">.css-1drhl9z-MuiTypography-root-MuiLink-root-Link-root-NavigationItemLink-link{margin:0;color:#2773e0;-webkit-text-decoration:underline;text-decoration:underline;text-decoration-color:rgba(39, 115, 224, 0.4);-webkit-text-decoration:none;text-decoration:none;color:#FFFFFF;font-family:'Public Sans',sans-serif;font-size:0.875rem;font-weight:400;line-height:1.35;letter-spacing:0;}.css-1drhl9z-MuiTypography-root-MuiLink-root-Link-root-NavigationItemLink-link:hover{text-decoration-color:inherit;}.css-1drhl9z-MuiTypography-root-MuiLink-root-Link-root-NavigationItemLink-link .subText{-webkit-text-decoration:underline;text-decoration:underline;margin-left:4px;}.css-1drhl9z-MuiTypography-root-MuiLink-root-Link-root-NavigationItemLink-link[data-large-text=true]{display:inline-block;text-wrap:wrap;text-align:left;}</style><style data-emotion="css 1sypo2q-Link-root-MuiTypography-root-MuiLink-root-Link-root-NavigationItemLink-link">.css-1sypo2q-Link-root-MuiTypography-root-MuiLink-root-Link-root-NavigationItemLink-link{margin:0;color:#2773e0;-webkit-text-decoration:underline;text-decoration:underline;text-decoration-color:rgba(39, 115, 224, 0.4);-webkit-text-decoration:none;text-decoration:none;color:#FFFFFF;font-family:'Public Sans',sans-serif;font-size:0.875rem;font-weight:400;line-height:1.35;letter-spacing:0;}.css-1sypo2q-Link-root-MuiTypography-root-MuiLink-root-Link-root-NavigationItemLink-link .subText{-webkit-text-decoration:underline;text-decoration:underline;margin-left:4px;}.css-1sypo2q-Link-root-MuiTypography-root-MuiLink-root-Link-root-NavigationItemLink-link[data-large-text=true]{display:inline-block;text-wrap:wrap;text-align:left;}.css-1sypo2q-Link-root-MuiTypography-root-MuiLink-root-Link-root-NavigationItemLink-link:hover{text-decoration-color:inherit;}.css-1sypo2q-Link-root-MuiTypography-root-MuiLink-root-Link-root-NavigationItemLink-link .subText{-webkit-text-decoration:underline;text-decoration:underline;margin-left:4px;}.css-1sypo2q-Link-root-MuiTypography-root-MuiLink-root-Link-root-NavigationItemLink-link[data-large-text=true]{display:inline-block;text-wrap:wrap;text-align:left;}</style><a class="MuiTypography-root MuiTypography-regular MuiLink-root MuiLink-underlineAlways css-1sypo2q-Link-root-MuiTypography-root-MuiLink-root-Link-root-NavigationItemLink-link" numWrap="2" data-csk-entry-id="6Ytzz0MvDJ9oBiVVIrqdja" data-csk-entry-type="navigationItem" data-csk-entry-display-text="NavigationItem" target="_self" data-large-text="false" href="/en-ca/cyber-insurance"><style data-emotion="css ozjjep-NavigationItemLink-linkContent">.css-ozjjep-NavigationItemLink-linkContent{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;gap:24px;padding:0;}</style><style data-emotion="css 1bc5mlt-NavigationItemLink-linkContent">.css-1bc5mlt-NavigationItemLink-linkContent{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;gap:24px;padding:0;}</style><div class="MuiBox-root css-1bc5mlt-NavigationItemLink-linkContent" ownerState="[object Object]"><style data-emotion="css em0tnu-NavigationItemLink-linkTextWrapper">.css-em0tnu-NavigationItemLink-linkTextWrapper{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;}</style><style data-emotion="css vuqx3d-NavigationItemLink-linkTextWrapper">.css-vuqx3d-NavigationItemLink-linkTextWrapper{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;}</style><div class="MuiBox-root css-vuqx3d-NavigationItemLink-linkTextWrapper"><style data-emotion="css 1jf6iky-NavigationItemLink-linkItem">.css-1jf6iky-NavigationItemLink-linkItem{font-family:'Public Sans',sans-serif;font-size:0.875rem;font-weight:400;line-height:1.35;letter-spacing:0;display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-top:16px;}</style><style data-emotion="css 22w7c4-MuiTypography-root-NavigationItemLink-linkItem">.css-22w7c4-MuiTypography-root-NavigationItemLink-linkItem{margin:0;font-family:'Public Sans',sans-serif;font-size:1rem;font-weight:400;letter-spacing:0;line-height:1.35;font-family:'Public Sans',sans-serif;font-size:0.875rem;font-weight:400;line-height:1.35;letter-spacing:0;display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-top:16px;}</style><p class="MuiTypography-root MuiTypography-body1 css-22w7c4-MuiTypography-root-NavigationItemLink-linkItem">Cyber Insurance<style data-emotion="css 1vooibu-MuiSvgIcon-root">.css-1vooibu-MuiSvgIcon-root{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:1em;height:1em;display:inline-block;fill:currentColor;-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;-webkit-transition:fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;transition:fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;font-size:inherit;}</style><svg class="MuiSvgIcon-root MuiSvgIcon-fontSizeInherit css-1vooibu-MuiSvgIcon-root" focusable="false" aria-hidden="true" viewBox="0 0 24 24" data-testid="KeyboardArrowRightIcon"><path d="M8.59 16.59 13.17 12 8.59 7.41 10 6l6 6-6 6z"></path></svg></p></div></div></a></div><div class="MuiBox-root css-1xw5ase-NavigationItemLink-root" data-testid="NavigationItemLink"><a class="MuiTypography-root MuiTypography-regular MuiLink-root MuiLink-underlineAlways css-1sypo2q-Link-root-MuiTypography-root-MuiLink-root-Link-root-NavigationItemLink-link" numWrap="2" data-csk-entry-id="1yXMvR3aCcOsBxeMihWPgI" data-csk-entry-type="navigationItem" data-csk-entry-display-text="NavigationItem" target="_self" data-large-text="false" href="/en-ca/technology-errors-and-omissions-insurance"><div class="MuiBox-root css-1bc5mlt-NavigationItemLink-linkContent" ownerState="[object Object]"><div class="MuiBox-root css-vuqx3d-NavigationItemLink-linkTextWrapper"><p class="MuiTypography-root MuiTypography-body1 css-22w7c4-MuiTypography-root-NavigationItemLink-linkItem">Technology Errors & Omissions<svg class="MuiSvgIcon-root MuiSvgIcon-fontSizeInherit css-1vooibu-MuiSvgIcon-root" focusable="false" aria-hidden="true" viewBox="0 0 24 24" data-testid="KeyboardArrowRightIcon"><path d="M8.59 16.59 13.17 12 8.59 7.41 10 6l6 6-6 6z"></path></svg></p></div></div></a></div></div></div></div><div class="MuiGrid-root MuiGrid-item MuiGrid-grid-xs-12 MuiGrid-grid-sm-6 MuiGrid-grid-md-3 css-rh5ans-MuiGrid-root-Footer-navigationGridItem"><div class="MuiBox-root css-1vv8vtj-NavigationItem-root" data-testid="NavigationItem" ownerState="[object Object]"><span class="css-nhqdk-NavigationItem-footerTitle">Cybersecurity</span><div class="MuiBox-root css-g22b3e-NavigationItem-footerNavigationItems"><div class="MuiBox-root css-1xw5ase-NavigationItemLink-root" data-testid="NavigationItemLink"><a class="MuiTypography-root MuiTypography-regular MuiLink-root MuiLink-underlineAlways css-1sypo2q-Link-root-MuiTypography-root-MuiLink-root-Link-root-NavigationItemLink-link" numWrap="2" data-csk-entry-id="47qtogO5JtCGgH8pZ60kqG" data-csk-entry-type="navigationItem" data-csk-entry-display-text="NavigationItem" target="_self" data-large-text="false" href="/en-ca/control"><div class="MuiBox-root css-1bc5mlt-NavigationItemLink-linkContent" ownerState="[object Object]"><div class="MuiBox-root css-vuqx3d-NavigationItemLink-linkTextWrapper"><p class="MuiTypography-root MuiTypography-body1 css-22w7c4-MuiTypography-root-NavigationItemLink-linkItem">Coalition Control<svg class="MuiSvgIcon-root MuiSvgIcon-fontSizeInherit css-1vooibu-MuiSvgIcon-root" focusable="false" aria-hidden="true" viewBox="0 0 24 24" data-testid="KeyboardArrowRightIcon"><path d="M8.59 16.59 13.17 12 8.59 7.41 10 6l6 6-6 6z"></path></svg></p></div></div></a></div><div class="MuiBox-root css-1xw5ase-NavigationItemLink-root" data-testid="NavigationItemLink"><a class="MuiTypography-root MuiTypography-regular MuiLink-root MuiLink-underlineAlways css-1sypo2q-Link-root-MuiTypography-root-MuiLink-root-Link-root-NavigationItemLink-link" numWrap="2" data-csk-entry-id="7fEXdCLixkzuNgf2LZavWt" data-csk-entry-type="navigationItem" data-csk-entry-display-text="NavigationItem" target="_self" data-large-text="false" href="/en-ca/security/managed-detection-response"><div class="MuiBox-root css-1bc5mlt-NavigationItemLink-linkContent" ownerState="[object Object]"><div class="MuiBox-root css-vuqx3d-NavigationItemLink-linkTextWrapper"><p class="MuiTypography-root MuiTypography-body1 css-22w7c4-MuiTypography-root-NavigationItemLink-linkItem">Managed Detection & Response<svg class="MuiSvgIcon-root MuiSvgIcon-fontSizeInherit css-1vooibu-MuiSvgIcon-root" focusable="false" aria-hidden="true" viewBox="0 0 24 24" data-testid="KeyboardArrowRightIcon"><path d="M8.59 16.59 13.17 12 8.59 7.41 10 6l6 6-6 6z"></path></svg></p></div></div></a></div><div class="MuiBox-root css-1xw5ase-NavigationItemLink-root" data-testid="NavigationItemLink"><a class="MuiTypography-root MuiTypography-regular MuiLink-root MuiLink-underlineAlways css-1sypo2q-Link-root-MuiTypography-root-MuiLink-root-Link-root-NavigationItemLink-link" numWrap="2" data-csk-entry-id="6Gse7Qb88zblntSUAZDfPe" data-csk-entry-type="navigationItem" data-csk-entry-display-text="NavigationItem" target="_self" data-large-text="false" href="/en-ca/incident-response"><div class="MuiBox-root css-1bc5mlt-NavigationItemLink-linkContent" ownerState="[object Object]"><div class="MuiBox-root css-vuqx3d-NavigationItemLink-linkTextWrapper"><p class="MuiTypography-root MuiTypography-body1 css-22w7c4-MuiTypography-root-NavigationItemLink-linkItem">Coalition Incident Response<svg class="MuiSvgIcon-root MuiSvgIcon-fontSizeInherit css-1vooibu-MuiSvgIcon-root" focusable="false" aria-hidden="true" viewBox="0 0 24 24" data-testid="KeyboardArrowRightIcon"><path d="M8.59 16.59 13.17 12 8.59 7.41 10 6l6 6-6 6z"></path></svg></p></div></div></a></div><div class="MuiBox-root css-1xw5ase-NavigationItemLink-root" data-testid="NavigationItemLink"><a class="MuiTypography-root MuiTypography-regular MuiLink-root MuiLink-underlineAlways css-1sypo2q-Link-root-MuiTypography-root-MuiLink-root-Link-root-NavigationItemLink-link" numWrap="2" data-csk-entry-id="5vfs1EZhFSh8ZnLeQZnzh" data-csk-entry-type="navigationItem" data-csk-entry-display-text="NavigationItem" target="_self" data-large-text="false" href="/en-ca/security/security-awareness-training"><div class="MuiBox-root css-1bc5mlt-NavigationItemLink-linkContent" ownerState="[object Object]"><div class="MuiBox-root css-vuqx3d-NavigationItemLink-linkTextWrapper"><p class="MuiTypography-root MuiTypography-body1 css-22w7c4-MuiTypography-root-NavigationItemLink-linkItem">Security Awareness Training<svg class="MuiSvgIcon-root MuiSvgIcon-fontSizeInherit css-1vooibu-MuiSvgIcon-root" focusable="false" aria-hidden="true" viewBox="0 0 24 24" data-testid="KeyboardArrowRightIcon"><path d="M8.59 16.59 13.17 12 8.59 7.41 10 6l6 6-6 6z"></path></svg></p></div></div></a></div></div></div></div><div class="MuiGrid-root MuiGrid-item MuiGrid-grid-xs-12 MuiGrid-grid-sm-6 MuiGrid-grid-md-3 css-rh5ans-MuiGrid-root-Footer-navigationGridItem"><div class="MuiBox-root css-1vv8vtj-NavigationItem-root" data-testid="NavigationItem" ownerState="[object Object]"><span class="css-nhqdk-NavigationItem-footerTitle">Resources</span><div class="MuiBox-root css-g22b3e-NavigationItem-footerNavigationItems"><div class="MuiBox-root css-1xw5ase-NavigationItemLink-root" data-testid="NavigationItemLink"><a class="MuiTypography-root MuiTypography-regular MuiLink-root MuiLink-underlineAlways css-1drhl9z-MuiTypography-root-MuiLink-root-Link-root-NavigationItemLink-link" href="https://help.coalitioninc.com/hc/en-us" target="_self" rel="noopener noreferrer" numWrap="2" data-csk-entry-id="5zFXUJ7YuMcBbviGuLygls" data-csk-entry-type="navigationItem" data-csk-entry-display-text="NavigationItem" locale="en-ca" data-large-text="false"><div class="MuiBox-root css-1bc5mlt-NavigationItemLink-linkContent" ownerState="[object Object]"><div class="MuiBox-root css-vuqx3d-NavigationItemLink-linkTextWrapper"><p class="MuiTypography-root MuiTypography-body1 css-22w7c4-MuiTypography-root-NavigationItemLink-linkItem">Help Center<svg class="MuiSvgIcon-root MuiSvgIcon-fontSizeInherit css-1vooibu-MuiSvgIcon-root" focusable="false" aria-hidden="true" viewBox="0 0 24 24" data-testid="KeyboardArrowRightIcon"><path d="M8.59 16.59 13.17 12 8.59 7.41 10 6l6 6-6 6z"></path></svg></p></div></div></a></div><div class="MuiBox-root css-1xw5ase-NavigationItemLink-root" data-testid="NavigationItemLink"><a class="MuiTypography-root MuiTypography-regular MuiLink-root MuiLink-underlineAlways css-1sypo2q-Link-root-MuiTypography-root-MuiLink-root-Link-root-NavigationItemLink-link" numWrap="2" data-csk-entry-id="5lLh054YHoef8OVyjzsOB7" data-csk-entry-type="navigationItem" data-csk-entry-display-text="NavigationItem" target="_self" data-large-text="false" href="/en-ca/case-studies"><div class="MuiBox-root css-1bc5mlt-NavigationItemLink-linkContent" ownerState="[object Object]"><div class="MuiBox-root css-vuqx3d-NavigationItemLink-linkTextWrapper"><p class="MuiTypography-root MuiTypography-body1 css-22w7c4-MuiTypography-root-NavigationItemLink-linkItem">Case Studies<svg class="MuiSvgIcon-root MuiSvgIcon-fontSizeInherit css-1vooibu-MuiSvgIcon-root" focusable="false" aria-hidden="true" viewBox="0 0 24 24" data-testid="KeyboardArrowRightIcon"><path d="M8.59 16.59 13.17 12 8.59 7.41 10 6l6 6-6 6z"></path></svg></p></div></div></a></div><div class="MuiBox-root css-1xw5ase-NavigationItemLink-root" data-testid="NavigationItemLink"><a class="MuiTypography-root MuiTypography-regular MuiLink-root MuiLink-underlineAlways css-1sypo2q-Link-root-MuiTypography-root-MuiLink-root-Link-root-NavigationItemLink-link" numWrap="2" data-csk-entry-id="76Pt0yB7SdoGMLEPuyoR1U" data-csk-entry-type="navigationItem" data-csk-entry-display-text="NavigationItem" target="_self" data-large-text="false" href="/en-ca/industry"><div class="MuiBox-root css-1bc5mlt-NavigationItemLink-linkContent" ownerState="[object Object]"><div class="MuiBox-root css-vuqx3d-NavigationItemLink-linkTextWrapper"><p class="MuiTypography-root MuiTypography-body1 css-22w7c4-MuiTypography-root-NavigationItemLink-linkItem">Industry Guides<svg class="MuiSvgIcon-root MuiSvgIcon-fontSizeInherit css-1vooibu-MuiSvgIcon-root" focusable="false" aria-hidden="true" viewBox="0 0 24 24" data-testid="KeyboardArrowRightIcon"><path d="M8.59 16.59 13.17 12 8.59 7.41 10 6l6 6-6 6z"></path></svg></p></div></div></a></div><div class="MuiBox-root css-1xw5ase-NavigationItemLink-root" data-testid="NavigationItemLink"><a class="MuiTypography-root MuiTypography-regular MuiLink-root MuiLink-underlineAlways css-1drhl9z-MuiTypography-root-MuiLink-root-Link-root-NavigationItemLink-link" href="https://www.coalitioninc.com/knowledge-center?filter=Webinars" target="_self" rel="noopener noreferrer" numWrap="2" data-csk-entry-id="685GfvbVCbNfXJfWyZF7sr" data-csk-entry-type="navigationItem" data-csk-entry-display-text="NavigationItem" locale="en-ca" data-large-text="false"><div class="MuiBox-root css-1bc5mlt-NavigationItemLink-linkContent" ownerState="[object Object]"><div class="MuiBox-root css-vuqx3d-NavigationItemLink-linkTextWrapper"><p class="MuiTypography-root MuiTypography-body1 css-22w7c4-MuiTypography-root-NavigationItemLink-linkItem">Webinars<svg class="MuiSvgIcon-root MuiSvgIcon-fontSizeInherit css-1vooibu-MuiSvgIcon-root" focusable="false" aria-hidden="true" viewBox="0 0 24 24" data-testid="KeyboardArrowRightIcon"><path d="M8.59 16.59 13.17 12 8.59 7.41 10 6l6 6-6 6z"></path></svg></p></div></div></a></div><div class="MuiBox-root css-1xw5ase-NavigationItemLink-root" data-testid="NavigationItemLink"><a class="MuiTypography-root MuiTypography-regular MuiLink-root MuiLink-underlineAlways css-1sypo2q-Link-root-MuiTypography-root-MuiLink-root-Link-root-NavigationItemLink-link" numWrap="2" data-csk-entry-id="26SIvanQEH2OhXtQBaEmzy" data-csk-entry-type="navigationItem" data-csk-entry-display-text="NavigationItem" target="_self" data-large-text="false" href="/en-ca/activate"><div class="MuiBox-root css-1bc5mlt-NavigationItemLink-linkContent" ownerState="[object Object]"><div class="MuiBox-root css-vuqx3d-NavigationItemLink-linkTextWrapper"><p class="MuiTypography-root MuiTypography-body1 css-22w7c4-MuiTypography-root-NavigationItemLink-linkItem">Activate Conference<svg class="MuiSvgIcon-root MuiSvgIcon-fontSizeInherit css-1vooibu-MuiSvgIcon-root" focusable="false" aria-hidden="true" viewBox="0 0 24 24" data-testid="KeyboardArrowRightIcon"><path d="M8.59 16.59 13.17 12 8.59 7.41 10 6l6 6-6 6z"></path></svg></p></div></div></a></div></div></div></div><div class="MuiGrid-root MuiGrid-item MuiGrid-grid-xs-12 MuiGrid-grid-sm-6 MuiGrid-grid-md-3 css-rh5ans-MuiGrid-root-Footer-navigationGridItem"><div class="MuiBox-root css-1vv8vtj-NavigationItem-root" data-testid="NavigationItem" ownerState="[object Object]"><span class="css-nhqdk-NavigationItem-footerTitle">Company</span><div class="MuiBox-root css-g22b3e-NavigationItem-footerNavigationItems"><div class="MuiBox-root css-1xw5ase-NavigationItemLink-root" data-testid="NavigationItemLink"><a class="MuiTypography-root MuiTypography-regular MuiLink-root MuiLink-underlineAlways css-1sypo2q-Link-root-MuiTypography-root-MuiLink-root-Link-root-NavigationItemLink-link" numWrap="2" data-csk-entry-id="4wG0ZM2EbdY62JF0VfnaOP" data-csk-entry-type="navigationItem" data-csk-entry-display-text="NavigationItem" target="_self" data-large-text="false" href="/en-ca/about"><div class="MuiBox-root css-1bc5mlt-NavigationItemLink-linkContent" ownerState="[object Object]"><div class="MuiBox-root css-vuqx3d-NavigationItemLink-linkTextWrapper"><p class="MuiTypography-root MuiTypography-body1 css-22w7c4-MuiTypography-root-NavigationItemLink-linkItem">About<svg class="MuiSvgIcon-root MuiSvgIcon-fontSizeInherit css-1vooibu-MuiSvgIcon-root" focusable="false" aria-hidden="true" viewBox="0 0 24 24" data-testid="KeyboardArrowRightIcon"><path d="M8.59 16.59 13.17 12 8.59 7.41 10 6l6 6-6 6z"></path></svg></p></div></div></a></div><div class="MuiBox-root css-1xw5ase-NavigationItemLink-root" data-testid="NavigationItemLink"><a class="MuiTypography-root MuiTypography-regular MuiLink-root MuiLink-underlineAlways css-1drhl9z-MuiTypography-root-MuiLink-root-Link-root-NavigationItemLink-link" href="https://www.coalitioninc.com/careers" target="_self" rel="noopener noreferrer" numWrap="2" data-csk-entry-id="3u0tt8UIBhb0vJEP5DY8BF" data-csk-entry-type="navigationItem" data-csk-entry-display-text="NavigationItem" locale="en-ca" data-large-text="false"><div class="MuiBox-root css-1bc5mlt-NavigationItemLink-linkContent" ownerState="[object Object]"><div class="MuiBox-root css-vuqx3d-NavigationItemLink-linkTextWrapper"><p class="MuiTypography-root MuiTypography-body1 css-22w7c4-MuiTypography-root-NavigationItemLink-linkItem">Careers<svg class="MuiSvgIcon-root MuiSvgIcon-fontSizeInherit css-1vooibu-MuiSvgIcon-root" focusable="false" aria-hidden="true" viewBox="0 0 24 24" data-testid="KeyboardArrowRightIcon"><path d="M8.59 16.59 13.17 12 8.59 7.41 10 6l6 6-6 6z"></path></svg></p></div></div></a></div><div class="MuiBox-root css-1xw5ase-NavigationItemLink-root" data-testid="NavigationItemLink"><a class="MuiTypography-root MuiTypography-regular MuiLink-root MuiLink-underlineAlways css-1sypo2q-Link-root-MuiTypography-root-MuiLink-root-Link-root-NavigationItemLink-link" numWrap="2" data-csk-entry-id="52uVykuqsFs1A0amryUQOg" data-csk-entry-type="navigationItem" data-csk-entry-display-text="NavigationItem" target="_self" data-large-text="false" href="/en-ca/newsroom"><div class="MuiBox-root css-1bc5mlt-NavigationItemLink-linkContent" ownerState="[object Object]"><div class="MuiBox-root css-vuqx3d-NavigationItemLink-linkTextWrapper"><p class="MuiTypography-root MuiTypography-body1 css-22w7c4-MuiTypography-root-NavigationItemLink-linkItem">Newsroom<svg class="MuiSvgIcon-root MuiSvgIcon-fontSizeInherit css-1vooibu-MuiSvgIcon-root" focusable="false" aria-hidden="true" viewBox="0 0 24 24" data-testid="KeyboardArrowRightIcon"><path d="M8.59 16.59 13.17 12 8.59 7.41 10 6l6 6-6 6z"></path></svg></p></div></div></a></div><div class="MuiBox-root css-1xw5ase-NavigationItemLink-root" data-testid="NavigationItemLink"><a class="MuiTypography-root MuiTypography-regular MuiLink-root MuiLink-underlineAlways css-1sypo2q-Link-root-MuiTypography-root-MuiLink-root-Link-root-NavigationItemLink-link" numWrap="2" data-csk-entry-id="7tgv3OYIK3C3tfhW8dtTNm" data-csk-entry-type="navigationItem" data-csk-entry-display-text="NavigationItem" target="_self" data-large-text="false" href="/en-ca/blog"><div class="MuiBox-root css-1bc5mlt-NavigationItemLink-linkContent" ownerState="[object Object]"><div class="MuiBox-root css-vuqx3d-NavigationItemLink-linkTextWrapper"><p class="MuiTypography-root MuiTypography-body1 css-22w7c4-MuiTypography-root-NavigationItemLink-linkItem">Blog<svg class="MuiSvgIcon-root MuiSvgIcon-fontSizeInherit css-1vooibu-MuiSvgIcon-root" focusable="false" aria-hidden="true" viewBox="0 0 24 24" data-testid="KeyboardArrowRightIcon"><path d="M8.59 16.59 13.17 12 8.59 7.41 10 6l6 6-6 6z"></path></svg></p></div></div></a></div><div class="MuiBox-root css-1xw5ase-NavigationItemLink-root" data-testid="NavigationItemLink"><a class="MuiTypography-root MuiTypography-regular MuiLink-root MuiLink-underlineAlways css-1sypo2q-Link-root-MuiTypography-root-MuiLink-root-Link-root-NavigationItemLink-link" numWrap="2" data-csk-entry-id="3UZ80lxZPH2znulTs1na8L" data-csk-entry-type="navigationItem" data-csk-entry-display-text="NavigationItem" target="_self" data-large-text="false" href="/en-ca/legal/licenses"><div class="MuiBox-root css-1bc5mlt-NavigationItemLink-linkContent" ownerState="[object Object]"><div class="MuiBox-root css-vuqx3d-NavigationItemLink-linkTextWrapper"><p class="MuiTypography-root MuiTypography-body1 css-22w7c4-MuiTypography-root-NavigationItemLink-linkItem">Licenses<svg class="MuiSvgIcon-root MuiSvgIcon-fontSizeInherit css-1vooibu-MuiSvgIcon-root" focusable="false" aria-hidden="true" viewBox="0 0 24 24" data-testid="KeyboardArrowRightIcon"><path d="M8.59 16.59 13.17 12 8.59 7.41 10 6l6 6-6 6z"></path></svg></p></div></div></a></div><div class="MuiBox-root css-1vv8vtj-NavigationItem-root" data-testid="NavigationItem" ownerState="[object Object]"><style data-emotion="css 105n7z9-NavigationItem-footerLink">.css-105n7z9-NavigationItem-footerLink{-webkit-text-decoration:none;text-decoration:none;text-transform:uppercase;color:#FFFFFF;font-family:'Public Sans',sans-serif;font-size:0.75rem;font-weight:800;line-height:1.35;letter-spacing:0;}</style><style data-emotion="css 2ljdb-Link-root-NavigationItem-footerLink">.css-2ljdb-Link-root-NavigationItem-footerLink{-webkit-text-decoration:none;text-decoration:none;text-transform:uppercase;color:#FFFFFF;font-family:'Public Sans',sans-serif;font-size:0.75rem;font-weight:800;line-height:1.35;letter-spacing:0;}.css-2ljdb-Link-root-NavigationItem-footerLink .subText{-webkit-text-decoration:underline;text-decoration:underline;margin-left:4px;}.css-2ljdb-Link-root-NavigationItem-footerLink[data-large-text=true]{display:inline-block;text-wrap:wrap;text-align:left;}</style><style data-emotion="css 10rxcsy-MuiLink-root-Link-root-NavigationItem-footerLink">.css-10rxcsy-MuiLink-root-Link-root-NavigationItem-footerLink{-webkit-text-decoration:underline;text-decoration:underline;text-decoration-color:rgba(39, 115, 224, 0.4);-webkit-text-decoration:none;text-decoration:none;text-transform:uppercase;color:#FFFFFF;font-family:'Public Sans',sans-serif;font-size:0.75rem;font-weight:800;line-height:1.35;letter-spacing:0;}.css-10rxcsy-MuiLink-root-Link-root-NavigationItem-footerLink:hover{text-decoration-color:inherit;}.css-10rxcsy-MuiLink-root-Link-root-NavigationItem-footerLink .subText{-webkit-text-decoration:underline;text-decoration:underline;margin-left:4px;}.css-10rxcsy-MuiLink-root-Link-root-NavigationItem-footerLink[data-large-text=true]{display:inline-block;text-wrap:wrap;text-align:left;}</style><style data-emotion="css 1pfttiw-MuiTypography-root-MuiLink-root-Link-root-NavigationItem-footerLink">.css-1pfttiw-MuiTypography-root-MuiLink-root-Link-root-NavigationItem-footerLink{margin:0;font:inherit;color:#2773e0;-webkit-text-decoration:underline;text-decoration:underline;text-decoration-color:rgba(39, 115, 224, 0.4);-webkit-text-decoration:none;text-decoration:none;text-transform:uppercase;color:#FFFFFF;font-family:'Public Sans',sans-serif;font-size:0.75rem;font-weight:800;line-height:1.35;letter-spacing:0;}.css-1pfttiw-MuiTypography-root-MuiLink-root-Link-root-NavigationItem-footerLink:hover{text-decoration-color:inherit;}.css-1pfttiw-MuiTypography-root-MuiLink-root-Link-root-NavigationItem-footerLink .subText{-webkit-text-decoration:underline;text-decoration:underline;margin-left:4px;}.css-1pfttiw-MuiTypography-root-MuiLink-root-Link-root-NavigationItem-footerLink[data-large-text=true]{display:inline-block;text-wrap:wrap;text-align:left;}</style><style data-emotion="css a13di8-Link-root-MuiTypography-root-MuiLink-root-Link-root-NavigationItem-footerLink">.css-a13di8-Link-root-MuiTypography-root-MuiLink-root-Link-root-NavigationItem-footerLink{margin:0;font:inherit;color:#2773e0;-webkit-text-decoration:underline;text-decoration:underline;text-decoration-color:rgba(39, 115, 224, 0.4);-webkit-text-decoration:none;text-decoration:none;text-transform:uppercase;color:#FFFFFF;font-family:'Public Sans',sans-serif;font-size:0.75rem;font-weight:800;line-height:1.35;letter-spacing:0;}.css-a13di8-Link-root-MuiTypography-root-MuiLink-root-Link-root-NavigationItem-footerLink .subText{-webkit-text-decoration:underline;text-decoration:underline;margin-left:4px;}.css-a13di8-Link-root-MuiTypography-root-MuiLink-root-Link-root-NavigationItem-footerLink[data-large-text=true]{display:inline-block;text-wrap:wrap;text-align:left;}.css-a13di8-Link-root-MuiTypography-root-MuiLink-root-Link-root-NavigationItem-footerLink:hover{text-decoration-color:inherit;}.css-a13di8-Link-root-MuiTypography-root-MuiLink-root-Link-root-NavigationItem-footerLink .subText{-webkit-text-decoration:underline;text-decoration:underline;margin-left:4px;}.css-a13di8-Link-root-MuiTypography-root-MuiLink-root-Link-root-NavigationItem-footerLink[data-large-text=true]{display:inline-block;text-wrap:wrap;text-align:left;}</style><a class="MuiTypography-root MuiTypography-inherit MuiLink-root MuiLink-underlineAlways css-a13di8-Link-root-MuiTypography-root-MuiLink-root-Link-root-NavigationItem-footerLink" __typename="Link" data-csk-entry-id="5ySnKuwfxN76mh8kdP9E3q" data-csk-entry-type="navigationItem" data-csk-entry-display-text="NavigationItem" target="_self" aria-label="Contact" data-large-text="false" href="/en-ca/contact">Contact</a><div class="MuiBox-root css-g22b3e-NavigationItem-footerNavigationItems"><div class="MuiBox-root css-1xw5ase-NavigationItemLink-root" data-testid="NavigationItemLink"><a class="MuiTypography-root MuiTypography-regular MuiLink-root MuiLink-underlineAlways css-1sypo2q-Link-root-MuiTypography-root-MuiLink-root-Link-root-NavigationItemLink-link" numWrap="2" data-csk-entry-id="7DcsCZYqrbcS9yTJd0I7tq" data-csk-entry-type="navigationItem" data-csk-entry-display-text="NavigationItem" target="_blank" data-large-text="false" href="tel:18338661337"><div class="MuiBox-root css-1bc5mlt-NavigationItemLink-linkContent" ownerState="[object Object]"><div class="MuiBox-root css-vuqx3d-NavigationItemLink-linkTextWrapper"><p class="MuiTypography-root MuiTypography-body1 css-22w7c4-MuiTypography-root-NavigationItemLink-linkItem">Report a Claim: +1 (833) 866-1337<svg class="MuiSvgIcon-root MuiSvgIcon-fontSizeInherit css-1vooibu-MuiSvgIcon-root" focusable="false" aria-hidden="true" viewBox="0 0 24 24" data-testid="KeyboardArrowRightIcon"><path d="M8.59 16.59 13.17 12 8.59 7.41 10 6l6 6-6 6z"></path></svg></p></div></div></a></div><div class="MuiBox-root css-1xw5ase-NavigationItemLink-root" data-testid="NavigationItemLink"><a class="MuiTypography-root MuiTypography-regular MuiLink-root MuiLink-underlineAlways css-1drhl9z-MuiTypography-root-MuiLink-root-Link-root-NavigationItemLink-link" href="mailto:help@coalitioninc.com" target="_blank" rel="noopener noreferrer" numWrap="2" data-csk-entry-id="59zXJrPP3caienlNXTmY0m" data-csk-entry-type="navigationItem" data-csk-entry-display-text="NavigationItem" data-large-text="false"><div class="MuiBox-root css-1bc5mlt-NavigationItemLink-linkContent" ownerState="[object Object]"><div class="MuiBox-root css-vuqx3d-NavigationItemLink-linkTextWrapper"><p class="MuiTypography-root MuiTypography-body1 css-22w7c4-MuiTypography-root-NavigationItemLink-linkItem">Email Support: help@coalitioninc.com<svg class="MuiSvgIcon-root MuiSvgIcon-fontSizeInherit css-1vooibu-MuiSvgIcon-root" focusable="false" aria-hidden="true" viewBox="0 0 24 24" data-testid="KeyboardArrowRightIcon"><path d="M8.59 16.59 13.17 12 8.59 7.41 10 6l6 6-6 6z"></path></svg></p></div></div></a></div></div></div></div></div></div></div><style data-emotion="css 173a7le-Footer-localeTermsWrapper">.css-173a7le-Footer-localeTermsWrapper{margin-top:40px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;-webkit-justify-content:flex-start;justify-content:flex-start;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-flex-wrap:wrap;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;gap:24px;}.css-173a7le-Footer-localeTermsWrapper [class$=NavigationItemLocaleGroupLabel-root]{margin-right:32px;}.css-173a7le-Footer-localeTermsWrapper [class$=NavigationItemLocaleGroupLabel-root] [class$=NavigationItemLocaleGroupLabel-localeSelector]{padding:4px 16px;border:2px solid #FFFFFF;border-radius:8px;}.css-173a7le-Footer-localeTermsWrapper [class$=NavigationItemLocaleGroupLabel-root] [class$=NavigationItemLocaleGroupLabel-localeSelector] svg:last-of-type{margin-right:16px;}.css-173a7le-Footer-localeTermsWrapper [class$=NavigationItemLocaleGroupLabel-root] [class$=NavigationItemLocaleGroupLabel-localeSelector].Mui-focused{outline-style:none;outline-color:transparent;}</style><style data-emotion="css 1bk890u-Footer-localeTermsWrapper">.css-1bk890u-Footer-localeTermsWrapper{margin-top:40px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;-webkit-justify-content:flex-start;justify-content:flex-start;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-flex-wrap:wrap;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;gap:24px;}.css-1bk890u-Footer-localeTermsWrapper [class$=NavigationItemLocaleGroupLabel-root]{margin-right:32px;}.css-1bk890u-Footer-localeTermsWrapper [class$=NavigationItemLocaleGroupLabel-root] [class$=NavigationItemLocaleGroupLabel-localeSelector]{padding:4px 16px;border:2px solid #FFFFFF;border-radius:8px;}.css-1bk890u-Footer-localeTermsWrapper [class$=NavigationItemLocaleGroupLabel-root] [class$=NavigationItemLocaleGroupLabel-localeSelector] svg:last-of-type{margin-right:16px;}.css-1bk890u-Footer-localeTermsWrapper [class$=NavigationItemLocaleGroupLabel-root] [class$=NavigationItemLocaleGroupLabel-localeSelector].Mui-focused{outline-style:none;outline-color:transparent;}</style><div class="MuiBox-root css-1bk890u-Footer-localeTermsWrapper"><style data-emotion="css nefwsu-NavigationItemLocaleGroupLabel-root">.css-nefwsu-NavigationItemLocaleGroupLabel-root{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-align-self:flex-end;-ms-flex-item-align:flex-end;align-self:flex-end;}</style><style data-emotion="css 1yv67pu-NavigationItemLocaleGroupLabel-root">.css-1yv67pu-NavigationItemLocaleGroupLabel-root{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-align-self:flex-end;-ms-flex-item-align:flex-end;align-self:flex-end;}</style><div class="MuiBox-root css-1yv67pu-NavigationItemLocaleGroupLabel-root" variant="localeGroupLabel"><style data-emotion="css 81az5i-NavigationItemLocaleGroupLabel-localeSelector">.css-81az5i-NavigationItemLocaleGroupLabel-localeSelector .MuiInputBase-input{padding:0;}.css-81az5i-NavigationItemLocaleGroupLabel-localeSelector .MuiInputBase-input span{margin:0;}.css-81az5i-NavigationItemLocaleGroupLabel-localeSelector [class$=NavigationItemLocaleGroupLabel-locale]{color:#FFFFFF;font-size:0.875rem;}.css-81az5i-NavigationItemLocaleGroupLabel-localeSelector.Mui-focused{outline-color:#FFFFFF;outline-style:auto;}</style><style data-emotion="css eagl79-NavigationItemLocaleGroupLabel-localeInput-NavigationItemLocaleGroupLabel-localeSelector">.css-eagl79-NavigationItemLocaleGroupLabel-localeInput-NavigationItemLocaleGroupLabel-localeSelector [class$=MuiInputBase-input]{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}.css-eagl79-NavigationItemLocaleGroupLabel-localeInput-NavigationItemLocaleGroupLabel-localeSelector [class$=MuiSelect-icon]{color:#FFFFFF;font-size:18px;right:-5px;}@media (max-width:899.95px){.css-eagl79-NavigationItemLocaleGroupLabel-localeInput-NavigationItemLocaleGroupLabel-localeSelector [class$=MuiSelect-icon]{width:0.9em;}}.css-eagl79-NavigationItemLocaleGroupLabel-localeInput-NavigationItemLocaleGroupLabel-localeSelector [class$=MuiSvgIcon-root]{width:18px;margin-right:8px;}.css-eagl79-NavigationItemLocaleGroupLabel-localeInput-NavigationItemLocaleGroupLabel-localeSelector .MuiInputBase-input{padding:0;}.css-eagl79-NavigationItemLocaleGroupLabel-localeInput-NavigationItemLocaleGroupLabel-localeSelector .MuiInputBase-input span{margin:0;}.css-eagl79-NavigationItemLocaleGroupLabel-localeInput-NavigationItemLocaleGroupLabel-localeSelector [class$=NavigationItemLocaleGroupLabel-locale]{color:#FFFFFF;font-size:0.875rem;}.css-eagl79-NavigationItemLocaleGroupLabel-localeInput-NavigationItemLocaleGroupLabel-localeSelector.Mui-focused{outline-color:#FFFFFF;outline-style:auto;}</style><style data-emotion="css-global 1prfaxn">@-webkit-keyframes mui-auto-fill{from{display:block;}}@keyframes mui-auto-fill{from{display:block;}}@-webkit-keyframes mui-auto-fill-cancel{from{display:block;}}@keyframes mui-auto-fill-cancel{from{display:block;}}</style><style data-emotion="css 11gvn0n-MuiInputBase-root-NavigationItemLocaleGroupLabel-localeInput-NavigationItemLocaleGroupLabel-localeSelector">.css-11gvn0n-MuiInputBase-root-NavigationItemLocaleGroupLabel-localeInput-NavigationItemLocaleGroupLabel-localeSelector{font-family:'Public Sans',sans-serif;font-size:1rem;font-weight:400;letter-spacing:0;line-height:1.4375em;color:#6B6B6A;box-sizing:border-box;position:relative;cursor:text;display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:100%;}.css-11gvn0n-MuiInputBase-root-NavigationItemLocaleGroupLabel-localeInput-NavigationItemLocaleGroupLabel-localeSelector.Mui-disabled{color:rgba(0, 0, 0, 0.38);cursor:default;}.css-11gvn0n-MuiInputBase-root-NavigationItemLocaleGroupLabel-localeInput-NavigationItemLocaleGroupLabel-localeSelector [class$=MuiInputBase-input]{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}.css-11gvn0n-MuiInputBase-root-NavigationItemLocaleGroupLabel-localeInput-NavigationItemLocaleGroupLabel-localeSelector [class$=MuiSelect-icon]{color:#FFFFFF;font-size:18px;right:-5px;}@media (max-width:899.95px){.css-11gvn0n-MuiInputBase-root-NavigationItemLocaleGroupLabel-localeInput-NavigationItemLocaleGroupLabel-localeSelector [class$=MuiSelect-icon]{width:0.9em;}}.css-11gvn0n-MuiInputBase-root-NavigationItemLocaleGroupLabel-localeInput-NavigationItemLocaleGroupLabel-localeSelector [class$=MuiSvgIcon-root]{width:18px;margin-right:8px;}.css-11gvn0n-MuiInputBase-root-NavigationItemLocaleGroupLabel-localeInput-NavigationItemLocaleGroupLabel-localeSelector .MuiInputBase-input{padding:0;}.css-11gvn0n-MuiInputBase-root-NavigationItemLocaleGroupLabel-localeInput-NavigationItemLocaleGroupLabel-localeSelector .MuiInputBase-input span{margin:0;}.css-11gvn0n-MuiInputBase-root-NavigationItemLocaleGroupLabel-localeInput-NavigationItemLocaleGroupLabel-localeSelector [class$=NavigationItemLocaleGroupLabel-locale]{color:#FFFFFF;font-size:0.875rem;}.css-11gvn0n-MuiInputBase-root-NavigationItemLocaleGroupLabel-localeInput-NavigationItemLocaleGroupLabel-localeSelector.Mui-focused{outline-color:#FFFFFF;outline-style:auto;}</style><div class="MuiInputBase-root MuiInputBase-colorPrimary MuiInputBase-fullWidth MuiInputBase-adornedStart css-11gvn0n-MuiInputBase-root-NavigationItemLocaleGroupLabel-localeInput-NavigationItemLocaleGroupLabel-localeSelector"><style data-emotion="css 3ttl39-NavigationItemLocaleGroupLabel-worldIcon">.css-3ttl39-NavigationItemLocaleGroupLabel-worldIcon{width:12px;margin-right:4px;color:#FFFFFF;}</style><style data-emotion="css 1ipk86n-MuiSvgIcon-root-NavigationItemLocaleGroupLabel-worldIcon">.css-1ipk86n-MuiSvgIcon-root-NavigationItemLocaleGroupLabel-worldIcon{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:1em;height:1em;display:inline-block;fill:currentColor;-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;-webkit-transition:fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;transition:fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;font-size:1.5rem;width:12px;margin-right:4px;color:#FFFFFF;}</style><svg class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-1ipk86n-MuiSvgIcon-root-NavigationItemLocaleGroupLabel-worldIcon" focusable="false" aria-hidden="true" viewBox="0 0 18 18" width="18" height="18" fill="none"><path d="M9 0C3.98571 0 0 3.98571 0 9C0 14.0143 3.98571 18 9 18C14.0143 18 18 14.0143 18 9C18 3.98571 14.0143 0 9 0ZM15.9429 7.71429C15.9429 7.84286 15.8143 8.1 15.6857 8.1H13.2429C12.9857 8.1 12.8571 7.84286 12.8571 7.71429C12.7286 6.17143 12.4714 4.75714 12.0857 3.21429C12.0857 3.08571 12.0857 2.82857 12.3429 2.82857C12.4714 2.82857 12.4714 2.82857 12.6 2.82857C14.2714 3.85714 15.5571 5.65714 15.9429 7.71429ZM9 16.0714C8.48571 16.0714 7.32857 14.0143 7.07143 10.2857C7.07143 10.1571 7.2 9.9 7.32857 9.9H10.4143C10.5429 9.9 10.8 10.0286 10.8 10.2857C10.6714 14.0143 9.51429 16.0714 9 16.0714ZM7.45714 7.97143C7.32857 7.97143 7.32857 7.97143 7.2 7.84286C7.2 7.84286 7.07143 7.71429 7.07143 7.58571C7.32857 3.98571 8.48571 1.92857 9 1.92857C9.51429 1.92857 10.6714 3.98571 10.9286 7.71429C10.9286 7.84286 10.9286 7.84286 10.8 7.97143C10.8 8.1 10.6714 8.1 10.5429 8.1H7.45714V7.97143ZM5.52857 2.82857C5.65714 2.7 5.91429 2.82857 5.91429 2.95714C5.91429 3.08571 5.91429 3.08571 5.91429 3.21429C5.52857 4.75714 5.27143 6.17143 5.14286 7.71429C5.14286 7.84286 5.01429 7.97143 4.88571 7.97143H2.31429C2.18571 7.97143 2.18571 7.97143 2.05714 7.84286V7.71429C2.44286 5.65714 3.72857 3.85714 5.52857 2.82857ZM2.05714 10.2857C2.05714 10.1571 2.18571 9.9 2.31429 9.9H4.75714C5.01429 9.9 5.14286 10.1571 5.14286 10.2857C5.27143 11.8286 5.52857 13.3714 5.91429 14.7857C5.91429 14.9143 5.91429 15.1714 5.65714 15.1714C5.52857 15.1714 5.52857 15.1714 5.4 15.1714C3.72857 14.1429 2.44286 12.3429 2.05714 10.2857ZM12.4714 15.1714C12.3429 15.3 12.0857 15.1714 12.0857 15.0429C12.0857 14.9143 12.0857 14.9143 12.0857 14.7857C12.4714 13.2429 12.7286 11.8286 12.8571 10.2857C12.8571 10.1571 12.9857 10.0286 13.1143 10.0286H15.5571C15.6857 10.0286 15.6857 10.0286 15.8143 10.1571C15.8143 10.2857 15.9429 10.2857 15.9429 10.4143C15.5571 12.3429 14.2714 14.1429 12.4714 15.1714Z" fill="inherit"></path></svg><style data-emotion="css yz9k0d-MuiInputBase-input">.css-yz9k0d-MuiInputBase-input{font:inherit;letter-spacing:inherit;color:currentColor;padding:4px 0 5px;border:0;box-sizing:content-box;background:none;height:1.4375em;margin:0;-webkit-tap-highlight-color:transparent;display:block;min-width:0;width:100%;-webkit-animation-name:mui-auto-fill-cancel;animation-name:mui-auto-fill-cancel;-webkit-animation-duration:10ms;animation-duration:10ms;}.css-yz9k0d-MuiInputBase-input::-webkit-input-placeholder{color:currentColor;opacity:0.42;-webkit-transition:opacity 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;transition:opacity 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;}.css-yz9k0d-MuiInputBase-input::-moz-placeholder{color:currentColor;opacity:0.42;-webkit-transition:opacity 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;transition:opacity 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;}.css-yz9k0d-MuiInputBase-input:-ms-input-placeholder{color:currentColor;opacity:0.42;-webkit-transition:opacity 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;transition:opacity 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;}.css-yz9k0d-MuiInputBase-input::-ms-input-placeholder{color:currentColor;opacity:0.42;-webkit-transition:opacity 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;transition:opacity 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;}.css-yz9k0d-MuiInputBase-input:focus{outline:0;}.css-yz9k0d-MuiInputBase-input:invalid{box-shadow:none;}.css-yz9k0d-MuiInputBase-input::-webkit-search-decoration{-webkit-appearance:none;}label[data-shrink=false]+.MuiInputBase-formControl .css-yz9k0d-MuiInputBase-input::-webkit-input-placeholder{opacity:0!important;}label[data-shrink=false]+.MuiInputBase-formControl .css-yz9k0d-MuiInputBase-input::-moz-placeholder{opacity:0!important;}label[data-shrink=false]+.MuiInputBase-formControl .css-yz9k0d-MuiInputBase-input:-ms-input-placeholder{opacity:0!important;}label[data-shrink=false]+.MuiInputBase-formControl .css-yz9k0d-MuiInputBase-input::-ms-input-placeholder{opacity:0!important;}label[data-shrink=false]+.MuiInputBase-formControl .css-yz9k0d-MuiInputBase-input:focus::-webkit-input-placeholder{opacity:0.42;}label[data-shrink=false]+.MuiInputBase-formControl .css-yz9k0d-MuiInputBase-input:focus::-moz-placeholder{opacity:0.42;}label[data-shrink=false]+.MuiInputBase-formControl .css-yz9k0d-MuiInputBase-input:focus:-ms-input-placeholder{opacity:0.42;}label[data-shrink=false]+.MuiInputBase-formControl .css-yz9k0d-MuiInputBase-input:focus::-ms-input-placeholder{opacity:0.42;}.css-yz9k0d-MuiInputBase-input.Mui-disabled{opacity:1;-webkit-text-fill-color:rgba(0, 0, 0, 0.38);}.css-yz9k0d-MuiInputBase-input:-webkit-autofill{-webkit-animation-duration:5000s;animation-duration:5000s;-webkit-animation-name:mui-auto-fill;animation-name:mui-auto-fill;}</style><style data-emotion="css a2sf8p-MuiSelect-select-MuiInputBase-input">.css-a2sf8p-MuiSelect-select-MuiInputBase-input{-moz-appearance:none;-webkit-appearance:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border-radius:10px;cursor:pointer;font:inherit;letter-spacing:inherit;color:currentColor;padding:4px 0 5px;border:0;box-sizing:content-box;background:none;height:1.4375em;margin:0;-webkit-tap-highlight-color:transparent;display:block;min-width:0;width:100%;-webkit-animation-name:mui-auto-fill-cancel;animation-name:mui-auto-fill-cancel;-webkit-animation-duration:10ms;animation-duration:10ms;}.css-a2sf8p-MuiSelect-select-MuiInputBase-input:focus{border-radius:10px;}.css-a2sf8p-MuiSelect-select-MuiInputBase-input::-ms-expand{display:none;}.css-a2sf8p-MuiSelect-select-MuiInputBase-input.Mui-disabled{cursor:default;}.css-a2sf8p-MuiSelect-select-MuiInputBase-input[multiple]{height:auto;}.css-a2sf8p-MuiSelect-select-MuiInputBase-input:not([multiple]) option,.css-a2sf8p-MuiSelect-select-MuiInputBase-input:not([multiple]) optgroup{background-color:#FFFFFF;}.css-a2sf8p-MuiSelect-select-MuiInputBase-input.css-a2sf8p-MuiSelect-select-MuiInputBase-input.css-a2sf8p-MuiSelect-select-MuiInputBase-input{padding-right:32px;}.css-a2sf8p-MuiSelect-select-MuiInputBase-input.MuiSelect-select{height:auto;min-height:1.4375em;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;}.css-a2sf8p-MuiSelect-select-MuiInputBase-input::-webkit-input-placeholder{color:currentColor;opacity:0.42;-webkit-transition:opacity 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;transition:opacity 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;}.css-a2sf8p-MuiSelect-select-MuiInputBase-input::-moz-placeholder{color:currentColor;opacity:0.42;-webkit-transition:opacity 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;transition:opacity 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;}.css-a2sf8p-MuiSelect-select-MuiInputBase-input:-ms-input-placeholder{color:currentColor;opacity:0.42;-webkit-transition:opacity 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;transition:opacity 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;}.css-a2sf8p-MuiSelect-select-MuiInputBase-input::-ms-input-placeholder{color:currentColor;opacity:0.42;-webkit-transition:opacity 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;transition:opacity 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;}.css-a2sf8p-MuiSelect-select-MuiInputBase-input:focus{outline:0;}.css-a2sf8p-MuiSelect-select-MuiInputBase-input:invalid{box-shadow:none;}.css-a2sf8p-MuiSelect-select-MuiInputBase-input::-webkit-search-decoration{-webkit-appearance:none;}label[data-shrink=false]+.MuiInputBase-formControl .css-a2sf8p-MuiSelect-select-MuiInputBase-input::-webkit-input-placeholder{opacity:0!important;}label[data-shrink=false]+.MuiInputBase-formControl .css-a2sf8p-MuiSelect-select-MuiInputBase-input::-moz-placeholder{opacity:0!important;}label[data-shrink=false]+.MuiInputBase-formControl .css-a2sf8p-MuiSelect-select-MuiInputBase-input:-ms-input-placeholder{opacity:0!important;}label[data-shrink=false]+.MuiInputBase-formControl .css-a2sf8p-MuiSelect-select-MuiInputBase-input::-ms-input-placeholder{opacity:0!important;}label[data-shrink=false]+.MuiInputBase-formControl .css-a2sf8p-MuiSelect-select-MuiInputBase-input:focus::-webkit-input-placeholder{opacity:0.42;}label[data-shrink=false]+.MuiInputBase-formControl .css-a2sf8p-MuiSelect-select-MuiInputBase-input:focus::-moz-placeholder{opacity:0.42;}label[data-shrink=false]+.MuiInputBase-formControl .css-a2sf8p-MuiSelect-select-MuiInputBase-input:focus:-ms-input-placeholder{opacity:0.42;}label[data-shrink=false]+.MuiInputBase-formControl .css-a2sf8p-MuiSelect-select-MuiInputBase-input:focus::-ms-input-placeholder{opacity:0.42;}.css-a2sf8p-MuiSelect-select-MuiInputBase-input.Mui-disabled{opacity:1;-webkit-text-fill-color:rgba(0, 0, 0, 0.38);}.css-a2sf8p-MuiSelect-select-MuiInputBase-input:-webkit-autofill{-webkit-animation-duration:5000s;animation-duration:5000s;-webkit-animation-name:mui-auto-fill;animation-name:mui-auto-fill;}</style><div tabindex="0" role="combobox" aria-controls=":R9al9kilcv6:" aria-expanded="false" aria-haspopup="listbox" aria-labelledby="mui-component-select-locale" id="mui-component-select-locale" class="MuiSelect-select MuiSelect-outlined MuiInputBase-input MuiInputBase-inputAdornedStart css-a2sf8p-MuiSelect-select-MuiInputBase-input"><style data-emotion="css gqj4z-NavigationItemLocaleGroupLabel-locale">.css-gqj4z-NavigationItemLocaleGroupLabel-locale{font-family:'Public Sans',sans-serif;font-size:0.75rem;font-weight:700;line-height:1.35;letter-spacing:0;color:#000000;-webkit-text-decoration:none;text-decoration:none;}</style><style data-emotion="css 1rbhbto-MuiTypography-root-NavigationItemLocaleGroupLabel-locale">.css-1rbhbto-MuiTypography-root-NavigationItemLocaleGroupLabel-locale{margin:0;font-family:'Public Sans',sans-serif;font-size:1rem;font-weight:400;letter-spacing:0;line-height:1.35;font-family:'Public Sans',sans-serif;font-size:0.75rem;font-weight:700;line-height:1.35;letter-spacing:0;color:#000000;-webkit-text-decoration:none;text-decoration:none;}</style><p class="MuiTypography-root MuiTypography-body1 css-1rbhbto-MuiTypography-root-NavigationItemLocaleGroupLabel-locale">Canada</p></div><input aria-invalid="false" name="locale" aria-hidden="true" tabindex="-1" class="MuiSelect-nativeInput css-yf8vq0-MuiSelect-nativeInput" id="uncontrolled-native" value="en-ca"/><svg class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium MuiSelect-icon MuiSelect-iconOutlined css-hfutr2-MuiSvgIcon-root-MuiSelect-icon" focusable="false" aria-hidden="true" viewBox="0 0 24 24" data-testid="ExpandMoreIcon"><path d="M16.59 8.59 12 13.17 7.41 8.59 6 10l6 6 6-6z"></path></svg></div></div><style data-emotion="css 70j8r4-Footer-termsWrapper">.css-70j8r4-Footer-termsWrapper >[class$=NavigationItem-root]>[class$=footerNavigationItems]:last-child>a{color:#FFFFFF;}.css-70j8r4-Footer-termsWrapper >[class$=NavigationItem-root]>[class$=footerNavigationItems]:last-child>a:hover{color:#D3D4D4;}.css-70j8r4-Footer-termsWrapper >[class$=NavigationItem-root]:first-child{margin:0;padding:0;}.css-70j8r4-Footer-termsWrapper >[class$=NavigationItem-root]:first-child [class$=NavigationItem-footerNavigationItems]{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;-webkit-justify-content:flex-start;justify-content:flex-start;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-flex-wrap:wrap;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;gap:32px;}.css-70j8r4-Footer-termsWrapper >[class$=NavigationItem-root]:first-child [class$=NavigationItem-footerNavigationItems] >[class$=NavigationItemLink-root] >a[class$=MuiLink-root-Link-root-NavigationItemLink-link]:hover{color:#FFBB3C;-webkit-text-decoration:underline;text-decoration:underline;text-underline-offset:4px;}.css-70j8r4-Footer-termsWrapper >[class$=NavigationItem-root]:first-child [class$=NavigationItem-footerNavigationItems] >[class$=NavigationItemLink-root] >a[class$=MuiLink-root-Link-root-NavigationItemLink-link] >div[class*=NavigationItemLink-linkContent] >div[class$=NavigationItemLink-linkTextWrapper] >p[class$=MuiTypography-root-NavigationItemLink-linkItem]{padding:0;margin:0;}</style><style data-emotion="css bbedez-Footer-termsWrapper">.css-bbedez-Footer-termsWrapper >[class$=NavigationItem-root]>[class$=footerNavigationItems]:last-child>a{color:#FFFFFF;}.css-bbedez-Footer-termsWrapper >[class$=NavigationItem-root]>[class$=footerNavigationItems]:last-child>a:hover{color:#D3D4D4;}.css-bbedez-Footer-termsWrapper >[class$=NavigationItem-root]:first-child{margin:0;padding:0;}.css-bbedez-Footer-termsWrapper >[class$=NavigationItem-root]:first-child [class$=NavigationItem-footerNavigationItems]{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;-webkit-justify-content:flex-start;justify-content:flex-start;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-flex-wrap:wrap;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;gap:32px;}.css-bbedez-Footer-termsWrapper >[class$=NavigationItem-root]:first-child [class$=NavigationItem-footerNavigationItems] >[class$=NavigationItemLink-root] >a[class$=MuiLink-root-Link-root-NavigationItemLink-link]:hover{color:#FFBB3C;-webkit-text-decoration:underline;text-decoration:underline;text-underline-offset:4px;}.css-bbedez-Footer-termsWrapper >[class$=NavigationItem-root]:first-child [class$=NavigationItem-footerNavigationItems] >[class$=NavigationItemLink-root] >a[class$=MuiLink-root-Link-root-NavigationItemLink-link] >div[class*=NavigationItemLink-linkContent] >div[class$=NavigationItemLink-linkTextWrapper] >p[class$=MuiTypography-root-NavigationItemLink-linkItem]{padding:0;margin:0;}</style><div class="MuiBox-root css-bbedez-Footer-termsWrapper"><div class="MuiBox-root css-1vv8vtj-NavigationItem-root" data-testid="NavigationItem" ownerState="[object Object]"><span class="css-nhqdk-NavigationItem-footerTitle"></span><style data-emotion="css u5a1es-NavigationItem-footerNavigationItems">.css-u5a1es-NavigationItem-footerNavigationItems{padding-top:0px;margin-top:4px;}.css-u5a1es-NavigationItem-footerNavigationItems >div:first-of-type [class$=NavigationItemLink-linkItem]{margin-top:0;}</style><style data-emotion="css dr939w-NavigationItem-footerNavigationItems">.css-dr939w-NavigationItem-footerNavigationItems{padding-top:0px;margin-top:4px;}.css-dr939w-NavigationItem-footerNavigationItems >div:first-of-type [class$=NavigationItemLink-linkItem]{margin-top:0;}</style><div class="MuiBox-root css-dr939w-NavigationItem-footerNavigationItems"><div class="MuiBox-root css-1xw5ase-NavigationItemLink-root" data-testid="NavigationItemLink"><a class="MuiTypography-root MuiTypography-regular MuiLink-root MuiLink-underlineAlways css-1sypo2q-Link-root-MuiTypography-root-MuiLink-root-Link-root-NavigationItemLink-link" numWrap="2" data-csk-entry-id="6BAN8wuQgft5aDxOfJwbr3" data-csk-entry-type="navigationItem" data-csk-entry-display-text="NavigationItem" target="_self" data-large-text="false" href="/en-ca/sitemap"><div class="MuiBox-root css-1bc5mlt-NavigationItemLink-linkContent" ownerState="[object Object]"><div class="MuiBox-root css-vuqx3d-NavigationItemLink-linkTextWrapper"><p class="MuiTypography-root MuiTypography-body1 css-22w7c4-MuiTypography-root-NavigationItemLink-linkItem">Sitemap<svg class="MuiSvgIcon-root MuiSvgIcon-fontSizeInherit css-1vooibu-MuiSvgIcon-root" focusable="false" aria-hidden="true" viewBox="0 0 24 24" data-testid="KeyboardArrowRightIcon"><path d="M8.59 16.59 13.17 12 8.59 7.41 10 6l6 6-6 6z"></path></svg></p></div></div></a></div><div class="MuiBox-root css-1xw5ase-NavigationItemLink-root" data-testid="NavigationItemLink"><a class="MuiTypography-root MuiTypography-regular MuiLink-root MuiLink-underlineAlways css-1sypo2q-Link-root-MuiTypography-root-MuiLink-root-Link-root-NavigationItemLink-link" data-csk-entry-id="5k7ita0xot4uGQXmamUq10" data-csk-entry-type="navigationItem" data-csk-entry-display-text="NavigationItem" target="_self" data-large-text="false" href="/en-ca/legal/terms"><div class="MuiBox-root css-1bc5mlt-NavigationItemLink-linkContent" ownerState="[object Object]"><div class="MuiBox-root css-vuqx3d-NavigationItemLink-linkTextWrapper"><p class="MuiTypography-root MuiTypography-body1 css-22w7c4-MuiTypography-root-NavigationItemLink-linkItem">Legal<svg class="MuiSvgIcon-root MuiSvgIcon-fontSizeInherit css-1vooibu-MuiSvgIcon-root" focusable="false" aria-hidden="true" viewBox="0 0 24 24" data-testid="KeyboardArrowRightIcon"><path d="M8.59 16.59 13.17 12 8.59 7.41 10 6l6 6-6 6z"></path></svg></p></div></div></a></div><div class="MuiBox-root css-1xw5ase-NavigationItemLink-root" data-testid="NavigationItemLink"><a class="MuiTypography-root MuiTypography-regular MuiLink-root MuiLink-underlineAlways css-1sypo2q-Link-root-MuiTypography-root-MuiLink-root-Link-root-NavigationItemLink-link" data-csk-entry-id="6vxiK30KGFqRApMIsspUMN" data-csk-entry-type="navigationItem" data-csk-entry-display-text="NavigationItem" target="_self" data-large-text="false" href="/en-ca/legal/privacy"><div class="MuiBox-root css-1bc5mlt-NavigationItemLink-linkContent" ownerState="[object Object]"><div class="MuiBox-root css-vuqx3d-NavigationItemLink-linkTextWrapper"><p class="MuiTypography-root MuiTypography-body1 css-22w7c4-MuiTypography-root-NavigationItemLink-linkItem">Privacy<svg class="MuiSvgIcon-root MuiSvgIcon-fontSizeInherit css-1vooibu-MuiSvgIcon-root" focusable="false" aria-hidden="true" viewBox="0 0 24 24" data-testid="KeyboardArrowRightIcon"><path d="M8.59 16.59 13.17 12 8.59 7.41 10 6l6 6-6 6z"></path></svg></p></div></div></a></div><div class="MuiBox-root css-1xw5ase-NavigationItemLink-root" data-testid="NavigationItemLink"><a class="MuiTypography-root MuiTypography-regular MuiLink-root MuiLink-underlineAlways css-1sypo2q-Link-root-MuiTypography-root-MuiLink-root-Link-root-NavigationItemLink-link" numWrap="2" data-csk-entry-id="3TCsiARgqWpdPriKuXIQwD" data-csk-entry-type="navigationItem" data-csk-entry-display-text="NavigationItem" target="_self" data-large-text="false" href="/en-ca/legal/disclaimer"><div class="MuiBox-root css-1bc5mlt-NavigationItemLink-linkContent" ownerState="[object Object]"><div class="MuiBox-root css-vuqx3d-NavigationItemLink-linkTextWrapper"><p class="MuiTypography-root MuiTypography-body1 css-22w7c4-MuiTypography-root-NavigationItemLink-linkItem">Disclaimers<svg class="MuiSvgIcon-root MuiSvgIcon-fontSizeInherit css-1vooibu-MuiSvgIcon-root" focusable="false" aria-hidden="true" viewBox="0 0 24 24" data-testid="KeyboardArrowRightIcon"><path d="M8.59 16.59 13.17 12 8.59 7.41 10 6l6 6-6 6z"></path></svg></p></div></div></a></div><div class="MuiBox-root css-1xw5ase-NavigationItemLink-root" data-testid="NavigationItemLink"><a class="MuiTypography-root MuiTypography-regular MuiLink-root MuiLink-underlineAlways css-1sypo2q-Link-root-MuiTypography-root-MuiLink-root-Link-root-NavigationItemLink-link" numWrap="2" data-csk-entry-id="6YqybpglWJ297A778M307a" data-csk-entry-type="navigationItem" data-csk-entry-display-text="NavigationItem" target="_self" data-large-text="false" href="/en-ca/legal/complaints-procedure"><div class="MuiBox-root css-1bc5mlt-NavigationItemLink-linkContent" ownerState="[object Object]"><div class="MuiBox-root css-vuqx3d-NavigationItemLink-linkTextWrapper"><p class="MuiTypography-root MuiTypography-body1 css-22w7c4-MuiTypography-root-NavigationItemLink-linkItem">Complaints Procedure<svg class="MuiSvgIcon-root MuiSvgIcon-fontSizeInherit css-1vooibu-MuiSvgIcon-root" focusable="false" aria-hidden="true" viewBox="0 0 24 24" data-testid="KeyboardArrowRightIcon"><path d="M8.59 16.59 13.17 12 8.59 7.41 10 6l6 6-6 6z"></path></svg></p></div></div></a></div><a class="MuiTypography-root MuiTypography-link MuiLink-root MuiLink-underlineAlways ot-show-settings css-1xdedpr-Link-root-MuiTypography-root-MuiLink-root-Link-root" colorscheme="blue" data-csk-entry-id="1KXzspS0VlbzrjUs1T2Dw6" data-csk-entry-type="link" data-csk-entry-display-text="Link" data-large-text="false" href="/en-ca/blog/security-labs/thinking-about-context-for-web-assets#"><style data-emotion="css 1rlitzi-MuiStack-root">.css-1rlitzi-MuiStack-root{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:8px;}</style><span class="MuiStack-root css-1rlitzi-MuiStack-root">Your Privacy Choices<style data-emotion="css i4bv87-MuiSvgIcon-root">.css-i4bv87-MuiSvgIcon-root{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:1em;height:1em;display:inline-block;fill:currentColor;-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;-webkit-transition:fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;transition:fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;font-size:1.5rem;}</style><svg class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-i4bv87-MuiSvgIcon-root" focusable="false" aria-hidden="true" viewBox="0 0 30 14" width="30" height="14" fill="none"><g><g id="final---dec.11-2020_1_"><g id="_x30_208-our-toggle_2_" transform="translate(-1275.000000, -200.000000)"><g id="Final-Copy-2_2_" transform="translate(1275.000000, 200.000000)"><path style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFF" d="M7.4,12.8h6.8l3.1-11.6H7.4C4.2,1.2,1.6,3.8,1.6,7S4.2,12.8,7.4,12.8z"></path></g></g></g><g id="final---dec.11-2020"><g id="_x30_208-our-toggle" transform="translate(-1275.000000, -200.000000)"><g id="Final-Copy-2" transform="translate(1275.000000, 200.000000)"><path style="fill-rule:evenodd;clip-rule:evenodd;fill:#0066FF" d="M22.6,0H7.4c-3.9,0-7,3.1-7,7s3.1,7,7,7h15.2c3.9,0,7-3.1,7-7S26.4,0,22.6,0z M1.6,7c0-3.2,2.6-5.8,5.8-5.8 h9.9l-3.1,11.6H7.4C4.2,12.8,1.6,10.2,1.6,7z"></path><path id="x" style="fill:#FFFFFF" d="M24.6,4c0.2,0.2,0.2,0.6,0,0.8l0,0L22.5,7l2.2,2.2c0.2,0.2,0.2,0.6,0,0.8c-0.2,0.2-0.6,0.2-0.8,0 l0,0l-2.2-2.2L19.5,10c-0.2,0.2-0.6,0.2-0.8,0c-0.2-0.2-0.2-0.6,0-0.8l0,0L20.8,7l-2.2-2.2c-0.2-0.2-0.2-0.6,0-0.8 c0.2-0.2,0.6-0.2,0.8,0l0,0l2.2,2.2L23.8,4C24,3.8,24.4,3.8,24.6,4z"></path><path id="y" style="fill:#0066FF" d="M12.7,4.1c0.2,0.2,0.3,0.6,0.1,0.8l0,0L8.6,9.8C8.5,9.9,8.4,10,8.3,10c-0.2,0.1-0.5,0.1-0.7-0.1l0,0 L5.4,7.7c-0.2-0.2-0.2-0.6,0-0.8c0.2-0.2,0.6-0.2,0.8,0l0,0L8,8.6l3.8-4.5C12,3.9,12.4,3.9,12.7,4.1z"></path></g></g></g></g></svg></span></a></div></div></div></div><hr class="MuiDivider-root MuiDivider-fullWidth css-49wwe3-MuiDivider-root-Footer-divider"/><style data-emotion="css a02v07-Footer-introContent">.css-a02v07-Footer-introContent{color:#FFFFFF;}.css-a02v07-Footer-introContent [class$=Text-body]>*{opacity:0.65;color:#FFFFFF;}.css-a02v07-Footer-introContent [class$=Collection-itemsWrapper]{height:100%;}.css-a02v07-Footer-introContent [class$=Collection-itemsWrapper] [class$=Collection-itemsContainer]{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center!important;-ms-flex-pack:center!important;-webkit-justify-content:center!important;justify-content:center!important;-webkit-align-items:center!important;-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important;height:100%;gap:28px;max-width:100%;}@media (max-width:1199.95px){.css-a02v07-Footer-introContent [class$=Collection-itemsWrapper] [class$=Collection-itemsContainer]{-webkit-box-flex-wrap:wrap;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;}}.css-a02v07-Footer-introContent [class$=Collection-itemsWrapper] [class$=Collection-itemsContainer] [class$=MuiCard-root-Card-root]{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;}.css-a02v07-Footer-introContent [class$=Collection-itemsWrapper] [class$=Collection-itemsContainer] [class$=MuiCard-root-Card-root] [class$=Card-cardMedia]{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:50px!important;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;}.css-a02v07-Footer-introContent [class$=Collection-itemsWrapper] [class$=Collection-itemsContainer] [class$=MuiCard-root-Card-root] [class$=Card-cardMedia]>img{height:100%!important;width:-webkit-fit-content!important;width:-moz-fit-content!important;width:fit-content!important;objectfit:contain!important;}</style><style data-emotion="css lrv75p-Footer-introContent">.css-lrv75p-Footer-introContent{color:#FFFFFF;}.css-lrv75p-Footer-introContent [class$=Text-body]>*{opacity:0.65;color:#FFFFFF;}.css-lrv75p-Footer-introContent [class$=Collection-itemsWrapper]{height:100%;}.css-lrv75p-Footer-introContent [class$=Collection-itemsWrapper] [class$=Collection-itemsContainer]{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center!important;-ms-flex-pack:center!important;-webkit-justify-content:center!important;justify-content:center!important;-webkit-align-items:center!important;-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important;height:100%;gap:28px;max-width:100%;}@media (max-width:1199.95px){.css-lrv75p-Footer-introContent [class$=Collection-itemsWrapper] [class$=Collection-itemsContainer]{-webkit-box-flex-wrap:wrap;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;}}.css-lrv75p-Footer-introContent [class$=Collection-itemsWrapper] [class$=Collection-itemsContainer] [class$=MuiCard-root-Card-root]{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;}.css-lrv75p-Footer-introContent [class$=Collection-itemsWrapper] [class$=Collection-itemsContainer] [class$=MuiCard-root-Card-root] [class$=Card-cardMedia]{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:50px!important;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;}.css-lrv75p-Footer-introContent [class$=Collection-itemsWrapper] [class$=Collection-itemsContainer] [class$=MuiCard-root-Card-root] [class$=Card-cardMedia]>img{height:100%!important;width:-webkit-fit-content!important;width:-moz-fit-content!important;width:fit-content!important;objectfit:contain!important;}</style><div class="MuiBox-root css-lrv75p-Footer-introContent"><style data-emotion="css wdwhdj-Collection-root">.css-wdwhdj-Collection-root [class$=Collection-container]{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;}.css-wdwhdj-Collection-root [class$=Collection-itemsContainer]{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;max-width:700px;}.css-wdwhdj-Collection-root [class$=Collection-itemsContainer] >div{width:100%;}@media (max-width:899.95px){.css-wdwhdj-Collection-root [class$=Collection-itemsContainer]{-webkit-box-flex-wrap:wrap;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:space-evenly;-ms-flex-pack:space-evenly;-webkit-justify-content:space-evenly;justify-content:space-evenly;gap:0;}.css-wdwhdj-Collection-root [class$=Collection-itemsContainer]>div{width:50%;}}</style><style data-emotion="css mj4r0-Collection-root">.css-mj4r0-Collection-root{padding-top:0px;padding-bottom:0px;background-color:transparent;}.css-mj4r0-Collection-root [class$=Collection-container]{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;}.css-mj4r0-Collection-root [class$=Collection-itemsContainer]{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;max-width:700px;}.css-mj4r0-Collection-root [class$=Collection-itemsContainer] >div{width:100%;}@media (max-width:899.95px){.css-mj4r0-Collection-root [class$=Collection-itemsContainer]{-webkit-box-flex-wrap:wrap;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:space-evenly;-ms-flex-pack:space-evenly;-webkit-justify-content:space-evenly;justify-content:space-evenly;gap:0;}.css-mj4r0-Collection-root [class$=Collection-itemsContainer]>div{width:50%;}}</style><div class="MuiBox-root css-mj4r0-Collection-root" colorscheme="default" data-testid="Collection" ownerState="[object Object]" data-csk-entry-id="6QTri83FYts9OhymZ8drab" data-csk-entry-type="collection" data-csk-entry-display-text="Collection"><style data-emotion="css ybfzeu-Collection-container">.css-ybfzeu-Collection-container{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;border-radius:10px;padding-top:0px;padding-bottom:0px;}</style><style data-emotion="css 1da0xz3-MuiContainer-root-Collection-container">.css-1da0xz3-MuiContainer-root-Collection-container{width:100%;margin-left:auto;box-sizing:border-box;margin-right:auto;display:block;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;border-radius:10px;padding-top:0px;padding-bottom:0px;}@media (min-width:1200px){.css-1da0xz3-MuiContainer-root-Collection-container{max-width:1200px;}}</style><div class="MuiContainer-root MuiContainer-maxWidthLg MuiContainer-disableGutters css-1da0xz3-MuiContainer-root-Collection-container" data-testid="Collection-container"><div class="MuiBox-root css-11g1c8u-Collection-itemsWrapper"><style data-emotion="css r9d7d7-Collection-itemsContainer">.css-r9d7d7-Collection-itemsContainer{display:grid;grid-template-columns:repeat(1, 1fr);gap:40px;width:100%;-webkit-align-content:flex-start;-ms-flex-line-pack:flex-start;align-content:flex-start;}</style><style data-emotion="css 1bv9lfe-Collection-itemsContainer">.css-1bv9lfe-Collection-itemsContainer{display:grid;grid-template-columns:repeat(1, 1fr);gap:40px;width:100%;-webkit-align-content:flex-start;-ms-flex-line-pack:flex-start;align-content:flex-start;}</style><div class="MuiBox-root css-1bv9lfe-Collection-itemsContainer" data-testid="Collection-itemsContainer"><style data-emotion="css w9k40-Card-root">.css-w9k40-Card-root{position:relative;border-radius:0;background-color:transparent;cursor:initial;-webkit-text-decoration:none;text-decoration:none;overflow:initial;background-color:transparent;}.css-w9k40-Card-root [class$=MuiCardMedia-root] img{max-width:100px;width:100%;}@media (max-width:899.95px){.css-w9k40-Card-root [class$=root-Card-cardMedia] img{max-width:100px;width:100%;height:auto;}}</style><style data-emotion="css mbkp0e-MuiCard-root-Card-root">.css-mbkp0e-MuiCard-root-Card-root{overflow:hidden;background-color:transparent;position:relative;border-radius:0;background-color:transparent;cursor:initial;-webkit-text-decoration:none;text-decoration:none;overflow:initial;background-color:transparent;}.css-mbkp0e-MuiCard-root-Card-root [class$=MuiCardMedia-root] img{max-width:100px;width:100%;}@media (max-width:899.95px){.css-mbkp0e-MuiCard-root-Card-root [class$=root-Card-cardMedia] img{max-width:100px;width:100%;height:auto;}}</style><style data-emotion="css 7upy6o-MuiPaper-root-MuiCard-root-Card-root">.css-7upy6o-MuiPaper-root-MuiCard-root-Card-root{background-color:#FFFFFF;color:#6B6B6A;-webkit-transition:box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;transition:box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;border-radius:10px;box-shadow:none;overflow:hidden;background-color:transparent;position:relative;border-radius:0;background-color:transparent;cursor:initial;-webkit-text-decoration:none;text-decoration:none;overflow:initial;background-color:transparent;}.css-7upy6o-MuiPaper-root-MuiCard-root-Card-root [class$=MuiCardMedia-root] img{max-width:100px;width:100%;}@media (max-width:899.95px){.css-7upy6o-MuiPaper-root-MuiCard-root-Card-root [class$=root-Card-cardMedia] img{max-width:100px;width:100%;height:auto;}}</style><div class="MuiPaper-root MuiPaper-elevation MuiPaper-rounded MuiPaper-elevation0 MuiCard-root css-7upy6o-MuiPaper-root-MuiCard-root-Card-root" data-testid="Card" data-csk-entry-id="1xKDKbuseuwaEUWh021Ou2" data-csk-entry-type="card" data-csk-entry-display-text="Card" id="1xKDKbuseuwaEUWh021Ou2" textSpacing="6" eyebrowColor="bodyCopy" position="0"><div class="MuiCardMedia-root css-ihp4d8-MuiCardMedia-root-Card-cardMedia"><img src="https://images.ctfassets.net/o2pgk9gufvga/3kckPj3wo25wCDNR976JNp/ecb7a1d4d234b9c8b22e849040a12f6e/arch.svg" data-testid="Card-media" class="css-182ql0r-Media-root" loading="lazy" height="60" width="139" alt="Footer Logo > Arch" __typename="Asset" url="https://images.ctfassets.net/o2pgk9gufvga/3kckPj3wo25wCDNR976JNp/ecb7a1d4d234b9c8b22e849040a12f6e/arch.svg" id="3kckPj3wo25wCDNR976JNp" sizes="100vw"/><div class="MuiBox-root css-1flgmxw-Card-mediaDecorator"><svg class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-1lnxrd9-MuiSvgIcon-root-Card-downloadIcon" focusable="false" aria-hidden="true" viewBox="0 0 26 34" width="26" height="34" fill="none"><path d="M0.667969 32.3287H25.4208M23.3915 14.0982L12.571 24.9186L1.75204 14.0996M12.4943 24.7528V0" stroke="white" stroke-width="2" stroke-miterlimit="10"></path></svg><svg class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-1y847rn-MuiSvgIcon-root-Card-playIcon" focusable="false" aria-hidden="true" viewBox="0 0 25 32" width="25" height="32" fill="none"><path d="M0.558594 0.799927V31.3454L24.5586 16.0727L0.558594 0.799927Z" fill="white"></path></svg></div></div></div><div class="MuiPaper-root MuiPaper-elevation MuiPaper-rounded MuiPaper-elevation0 MuiCard-root css-7upy6o-MuiPaper-root-MuiCard-root-Card-root" data-testid="Card" data-csk-entry-id="2eG64H8smZUx8uwpW2YYGT" data-csk-entry-type="card" data-csk-entry-display-text="Card" id="2eG64H8smZUx8uwpW2YYGT" textSpacing="6" eyebrowColor="bodyCopy" position="1"><div class="MuiCardMedia-root css-ihp4d8-MuiCardMedia-root-Card-cardMedia"><img src="https://images.ctfassets.net/o2pgk9gufvga/4WHOvpAxb5UsY9xgdxVeAT/20e98e4a2274e6152ba0b416112f5916/lloyds.svg" data-testid="Card-media" class="css-182ql0r-Media-root" loading="lazy" height="60" width="237" alt="Footer Logo > Lloyds" __typename="Asset" url="https://images.ctfassets.net/o2pgk9gufvga/4WHOvpAxb5UsY9xgdxVeAT/20e98e4a2274e6152ba0b416112f5916/lloyds.svg" id="4WHOvpAxb5UsY9xgdxVeAT" sizes="100vw"/><div class="MuiBox-root css-1flgmxw-Card-mediaDecorator"><svg class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-1lnxrd9-MuiSvgIcon-root-Card-downloadIcon" focusable="false" aria-hidden="true" viewBox="0 0 26 34" width="26" height="34" fill="none"><path d="M0.667969 32.3287H25.4208M23.3915 14.0982L12.571 24.9186L1.75204 14.0996M12.4943 24.7528V0" stroke="white" stroke-width="2" stroke-miterlimit="10"></path></svg><svg class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-1y847rn-MuiSvgIcon-root-Card-playIcon" focusable="false" aria-hidden="true" viewBox="0 0 25 32" width="25" height="32" fill="none"><path d="M0.558594 0.799927V31.3454L24.5586 16.0727L0.558594 0.799927Z" fill="white"></path></svg></div></div></div><div class="MuiPaper-root MuiPaper-elevation MuiPaper-rounded MuiPaper-elevation0 MuiCard-root css-7upy6o-MuiPaper-root-MuiCard-root-Card-root" data-testid="Card" data-csk-entry-id="1fyaKizevkOJasEsJX0rYk" data-csk-entry-type="card" data-csk-entry-display-text="Card" id="1fyaKizevkOJasEsJX0rYk" textSpacing="6" eyebrowColor="bodyCopy" position="2"><div class="MuiCardMedia-root css-ihp4d8-MuiCardMedia-root-Card-cardMedia"><img src="https://images.ctfassets.net/o2pgk9gufvga/4FQjtRLKbAl1rpPAFtxJpo/415c39733381a1baa0f47b60d08aa1c8/hdi.svg" data-testid="Card-media" class="css-182ql0r-Media-root" loading="lazy" height="60" width="74" alt="Footer Logo > HDI" __typename="Asset" url="https://images.ctfassets.net/o2pgk9gufvga/4FQjtRLKbAl1rpPAFtxJpo/415c39733381a1baa0f47b60d08aa1c8/hdi.svg" id="4FQjtRLKbAl1rpPAFtxJpo" sizes="100vw"/><div class="MuiBox-root css-1flgmxw-Card-mediaDecorator"><svg class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-1lnxrd9-MuiSvgIcon-root-Card-downloadIcon" focusable="false" aria-hidden="true" viewBox="0 0 26 34" width="26" height="34" fill="none"><path d="M0.667969 32.3287H25.4208M23.3915 14.0982L12.571 24.9186L1.75204 14.0996M12.4943 24.7528V0" stroke="white" stroke-width="2" stroke-miterlimit="10"></path></svg><svg class="MuiSvgIcon-root MuiSvgIcon-fontSizeMedium css-1y847rn-MuiSvgIcon-root-Card-playIcon" focusable="false" aria-hidden="true" viewBox="0 0 25 32" width="25" height="32" fill="none"><path d="M0.558594 0.799927V31.3454L24.5586 16.0727L0.558594 0.799927Z" fill="white"></path></svg></div></div></div></div></div></div></div></div><hr class="MuiDivider-root MuiDivider-fullWidth css-49wwe3-MuiDivider-root-Footer-divider"/><style data-emotion="css oeo6vb-Footer-disclaimerWrapper">.css-oeo6vb-Footer-disclaimerWrapper [class$=Text-root]{text-align:left;width:100%;padding-bottom:40px;}.css-oeo6vb-Footer-disclaimerWrapper [class$=Text-body]>*{color:#FFFFFF;}.css-oeo6vb-Footer-disclaimerWrapper [class$=Text-body]>*>a{color:#FFFFFF;font-weight:900;-webkit-text-decoration:underline;text-decoration:underline;text-underline-offset:2px;}.css-oeo6vb-Footer-disclaimerWrapper [class$=Text-body]>*>a>*{color:#FFFFFF;}.css-oeo6vb-Footer-disclaimerWrapper [class$=Text-body]>*>a:hover,.css-oeo6vb-Footer-disclaimerWrapper [class$=Text-body]>*>a:hover>*{color:#FFBB3C;text-decoration-color:#FFBB3C;}</style><style data-emotion="css 1pbm9yk-Footer-disclaimerWrapper">.css-1pbm9yk-Footer-disclaimerWrapper [class$=Text-root]{text-align:left;width:100%;padding-bottom:40px;}.css-1pbm9yk-Footer-disclaimerWrapper [class$=Text-body]>*{color:#FFFFFF;}.css-1pbm9yk-Footer-disclaimerWrapper [class$=Text-body]>*>a{color:#FFFFFF;font-weight:900;-webkit-text-decoration:underline;text-decoration:underline;text-underline-offset:2px;}.css-1pbm9yk-Footer-disclaimerWrapper [class$=Text-body]>*>a>*{color:#FFFFFF;}.css-1pbm9yk-Footer-disclaimerWrapper [class$=Text-body]>*>a:hover,.css-1pbm9yk-Footer-disclaimerWrapper [class$=Text-body]>*>a:hover>*{color:#FFBB3C;text-decoration-color:#FFBB3C;}</style><div class="MuiBox-root css-1pbm9yk-Footer-disclaimerWrapper"><style data-emotion="css 6spthe-Text-root">.css-6spthe-Text-root{white-space:pre-wrap;}.css-6spthe-Text-root ol,.css-6spthe-Text-root ul,.css-6spthe-Text-root li{padding:revert;}.css-6spthe-Text-root ol,.css-6spthe-Text-root ul{padding-left:16px;}.css-6spthe-Text-root ol ol{list-style-type:upper-alpha;}.css-6spthe-Text-root ol ol ol{list-style-type:revert;}.css-6spthe-Text-root ol ol ol ol{list-style-type:upper-alpha;}.css-6spthe-Text-root ol ol ol ol ol{list-style-type:revert;}.css-6spthe-Text-root [class$=MuiIcon-root-Text-checkIcon]{font-size:0.875rem;}</style><style data-emotion="css 14b4dj-Text-root">.css-14b4dj-Text-root{white-space:pre-wrap;}.css-14b4dj-Text-root ol,.css-14b4dj-Text-root ul,.css-14b4dj-Text-root li{padding:revert;}.css-14b4dj-Text-root ol,.css-14b4dj-Text-root ul{padding-left:16px;}.css-14b4dj-Text-root ol ol{list-style-type:upper-alpha;}.css-14b4dj-Text-root ol ol ol{list-style-type:revert;}.css-14b4dj-Text-root ol ol ol ol{list-style-type:upper-alpha;}.css-14b4dj-Text-root ol ol ol ol ol{list-style-type:revert;}.css-14b4dj-Text-root [class$=MuiIcon-root-Text-checkIcon]{font-size:0.875rem;}</style><div class="MuiBox-root css-14b4dj-Text-root" data-testid="Text-root" __typename="Text"><div class="MuiBox-root css-11xyynr-Text-contentContainer"><div class="MuiBox-root css-81f2gx-Text-body"><p class="MuiTypography-root MuiTypography-body1 css-bsjzx4-MuiTypography-root">Insurance products are offered in Canada by Coalition Insurance Solutions Canada Inc. (“CIS Canada”), a licensed insurance producer in all Canadian provinces, with a principal place of business in Vancouver, British Columbia (Canada) license #LIC-2020-0020925-R01 acting on behalf of a number of unaffiliated insurance companies. Insurance products offered through CIS Canada may not be available in all provinces. <!-- -->See<b> </b><style data-emotion="css v88tdu-Link-root-MuiTypography-root-MuiLink-root-Link-root">.css-v88tdu-Link-root-MuiTypography-root-MuiLink-root-Link-root{margin:0;font:inherit;color:#2773e0;-webkit-text-decoration:underline;text-decoration:underline;text-decoration-color:rgba(39, 115, 224, 0.4);}.css-v88tdu-Link-root-MuiTypography-root-MuiLink-root-Link-root .subText{-webkit-text-decoration:underline;text-decoration:underline;margin-left:4px;}.css-v88tdu-Link-root-MuiTypography-root-MuiLink-root-Link-root[data-large-text=true]{display:inline-block;text-wrap:wrap;text-align:left;}.css-v88tdu-Link-root-MuiTypography-root-MuiLink-root-Link-root:hover{text-decoration-color:inherit;}.css-v88tdu-Link-root-MuiTypography-root-MuiLink-root-Link-root .subText{-webkit-text-decoration:underline;text-decoration:underline;margin-left:4px;}.css-v88tdu-Link-root-MuiTypography-root-MuiLink-root-Link-root[data-large-text=true]{display:inline-block;text-wrap:wrap;text-align:left;}</style><a class="MuiTypography-root MuiTypography-inherit MuiLink-root MuiLink-underlineAlways css-v88tdu-Link-root-MuiTypography-root-MuiLink-root-Link-root" colorscheme="Parchment" data-testid="Texts-entry-hyperlink" target="_self" data-csk-entry-id="43oalBmJlQAhUbegHVeYfr" data-csk-entry-type="page" data-csk-entry-display-text="Page" aria-label="licenses" data-large-text="false" href="/en-ca/legal/licenses">licenses</a><b> </b>and <a class="MuiTypography-root MuiTypography-inherit MuiLink-root MuiLink-underlineAlways css-v88tdu-Link-root-MuiTypography-root-MuiLink-root-Link-root" colorscheme="Parchment" data-testid="Texts-entry-hyperlink" target="_self" data-csk-entry-id="4ow7f0GYuLMvGm6stveEjt" data-csk-entry-type="page" data-csk-entry-display-text="Page" aria-label="disclaimers" data-large-text="false" href="/en-ca/legal/disclaimer">disclaimers</a>.<!-- --> CIS Canada receives commission from insurers listed on each policy in connection with the sale of insurance to the policyholder. Security products and services are provided by Coalition Incident Response Inc. or its affiliates, including Coalition Incident Response Canada, Inc., dba Coalition Security. Coalition Security does not provide insurance products. The purchase of a Coalition insurance policy is not required to purchase any Coalition Security product or service. Non-insurance products and services may be provided by independent third parties. Coalition is the marketing name for the global operations of affiliates of Coalition, Inc. Copyright © 2025. All rights reserved. Coalition, Coalition Control and the Coalition logo are trademarks of Coalition, Inc.</p></div></div></div></div></div></footer></div><style data-emotion="css r78pgu-Modal-root">.css-r78pgu-Modal-root{background-color:rgba(#2F3233, 0.5);}.css-r78pgu-Modal-root:has([class$=IframeEmbed-root]){background-color:rgba(85, 85, 85, 0.95);}.css-r78pgu-Modal-root .MuiDialog-paper{overflow:visible;max-height:auto;max-width:100%;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}</style><style data-emotion="css okolrr-MuiDialog-root-Modal-root">.css-okolrr-MuiDialog-root-Modal-root{background-color:rgba(#2F3233, 0.5);}@media print{.css-okolrr-MuiDialog-root-Modal-root{position:absolute!important;}}.css-okolrr-MuiDialog-root-Modal-root:has([class$=IframeEmbed-root]){background-color:rgba(85, 85, 85, 0.95);}.css-okolrr-MuiDialog-root-Modal-root .MuiDialog-paper{overflow:visible;max-height:auto;max-width:100%;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}</style></div><script id="__NEXT_DATA__" type="application/json">{"props":{"pageProps":{"pageData":{"pageV2":{"id":"5PihTH8zJdmKUyLrLzTasj","__typename":"Blog","sidekickLookup":{"categoryLink":{"fieldName":"categoryPage"},"contentId":"5PihTH8zJdmKUyLrLzTasj","contentTypeId":"blog"},"seo":{"title":{"name":"title","value":"Thinking about “context” for web assets: Automating attack surface tagging and classification for scale"},"description":{"name":"description","value":"Not all web assets pose equal risks to an organization's cybersecurity. Here at Coalition, we are thinking about how to categorize web assets at scale. Thoughtfully ‘contextualizing’ web assets helps our clients better understand their cyber risk."},"robots":{"name":"robots","value":"index,follow"}},"slug":"thinking-about-context-for-web-assets","title":"Thinking about “context” for web assets: Automating attack surface tagging and classification for scale","body":{"__typename":"RichText","json":{"data":{},"content":[{"data":{},"content":[{"data":{},"marks":[{"type":"bold"},{"type":"italic"}],"value":"This research and article was written by Colin Flaherty as part of a summer internship with assistance from some of the team at Coalition: Beatriz Lacerda (Data Scientist), Florentino Bexiga (EM Data Collections) and Tiago Henriques (GM Customer Security).","nodeType":"text"}],"nodeType":"paragraph"},{"data":{},"content":[{"data":{},"marks":[{"type":"bold"}],"value":"\nIntroduction to the problem","nodeType":"text"}],"nodeType":"heading-2"},{"data":{},"content":[{"data":{},"marks":[],"value":"Assets can either be identified as domains or IP addresses. A single domain can point to multiple IP addresses, and multiple domains can point to a single IP address. Assets are assigned vulnerability scores through a slew of heuristic methods, discussion of which is beyond the scope of this article. If multiple assets have the same vulnerability score, how can one prioritize which of these assets to examine first?","nodeType":"text"}],"nodeType":"paragraph"},{"data":{},"content":[{"data":{},"marks":[],"value":"For example, a login page without SSL is probably more important to address than a static blog post without SSL. One way to prioritize assets that have the same or similar vulnerability scores is by assigning them comparable “contexts” that encapsulate information about how sensitive or otherwise important they might be. One attempt to tackle this problem is “Eyeballer,\" an ","nodeType":"text"},{"data":{"uri":"https://github.com/BishopFox/eyeballer/"},"content":[{"data":{},"marks":[],"value":"open-source machine learning project","nodeType":"text"}],"nodeType":"hyperlink"},{"data":{},"marks":[],"value":" that uses a convolutional neural network to assign tags to webpage screenshots such as “homepage,” “custom 404,” “login,” and “old-looking.”","nodeType":"text"}],"nodeType":"paragraph"},{"data":{},"content":[{"data":{},"marks":[],"value":"For the purposes of this article, I focus on contextualizing HTTP/HTTPS assets, i.e. web pages.","nodeType":"text"}],"nodeType":"paragraph"},{"data":{},"content":[{"data":{},"marks":[{"type":"bold"}],"value":"High-level approach","nodeType":"text"}],"nodeType":"heading-2"},{"data":{},"content":[{"data":{},"marks":[],"value":"Contexts should be comparable because they will be used to compare assets. Therefore, structured contexts should be favored over free-form contexts. For example, it would be easier to compare two assets if each of their contexts consists of a subset of a lexicon of “context tags” than if each asset’s context consists of a paragraph of free-form text. Similarly, as size of this context tag lexicon increases, comparing contexts becomes more cumbersome. If every web asset is tagged with its top five most frequent words, then the total context tag set across all web assets could quickly become unmanageable as the number of web assets being tagged grows.","nodeType":"text"}],"nodeType":"paragraph"},{"data":{},"content":[{"data":{},"marks":[],"value":"In order to create a set of context tags that could be used to contextualize web assets, web assets may be examined from several perspectives: spatio-visually (layout, colors, design) as a screenshot, as structured code (HTML, CSS), and as a document consisting of written language. A convolutional neural network like Eyeballer can be used to generate tags for a webpage based solely on screenshots of its fully-rendered state. This approach is useful for tags that represent complex categories that nevertheless possess distinctive visual elements, such as the category of “blog” web pages or the category of “old-looking” web pages.","nodeType":"text"}],"nodeType":"paragraph"},{"data":{},"content":[{"data":{},"marks":[],"value":"However, it requires significant amounts of labeled data to be precise enough for production, and existing publicly available datasets are not sufficiently large.","nodeType":"text"}],"nodeType":"paragraph"},{"data":{},"content":[{"data":{},"marks":[],"value":"An example of code-based context tag generation would be examining a web page’s HTML for an \u0026lt;input\u0026gt; tag with type “password” in order to determine if the page has a login feature. Finally, for text-based tags, natural language processing techniques such as bag-of-words frequency analysis can be applied.","nodeType":"text"}],"nodeType":"paragraph"},{"data":{},"content":[{"data":{},"marks":[],"value":"For web asset contexts, one area to explore further is ","nodeType":"text"},{"data":{},"marks":[{"type":"bold"},{"type":"italic"}],"value":"combining","nodeType":"text"},{"data":{},"marks":[],"value":" spatio-visual information and semantic information to generate tags. A simple bag-of-words frequency analysis may not be very effective on web pages because word frequencies on web pages exhibit sparsity. While important words may show up with high-frequency in traditional text (books, articles, etc.), important words might show up only once or twice on a web page if much of their importance is conveyed via positioning or styling. For example, an “About” page for a company might only display the word “About” once, but “About” would probably appear in large size font at the top of the page, possibly with extra embellishments and separated from other text.","nodeType":"text"}],"nodeType":"paragraph"},{"data":{},"content":[{"data":{},"marks":[{"type":"bold"}],"value":"Eyeballer","nodeType":"text"}],"nodeType":"heading-2"},{"data":{},"content":[{"data":{},"marks":[],"value":"One proposed approach to providing context for web assets is Eyeballer, which uses a convolutional neural network to categorize web page screenshots. It is open-sourced, and its creators (“BishopFox”) have trained and tested it on a set of ~13,000 webpage screenshots. Its architecture consists of a MobileNet layer pre-trained on the popular ImageNet dataset and then a fine-tuning layer consisting of global average pooling and ","nodeType":"text"},{"data":{"uri":"https://arxiv.org/abs/1704.04861"},"content":[{"data":{},"marks":[],"value":"dense neural network layers","nodeType":"text"}],"nodeType":"hyperlink"},{"data":{},"marks":[],"value":" for classification.","nodeType":"text"}],"nodeType":"paragraph"},{"data":{},"content":[{"data":{},"marks":[],"value":"It uses MobileNet as opposed to other image models built for transfer learning because MobileNet is lightweight relative to its peers. It is pre-trained to determine if a web page can be identified with a subset of the following tags: “homepage,” “custom 404,” “login,” and “old-looking.” On a set of approximately 2,000 images (manually labeled by BishopFox), the network exhibits an all-or-nothing accuracy of 73.77%. For specific labels, the following precision and recall percentages were observed.","nodeType":"text"}],"nodeType":"paragraph"},{"data":{},"content":[{"data":{},"marks":[],"value":"LabelCustom404LoginHomepageOld-lookingPrecision95.38%82.04%76.61%86.82%Recall66.19%89.89%94.16%66.32%","nodeType":"text"}],"nodeType":"paragraph"},{"data":{},"content":[{"data":{},"marks":[],"value":"The convolutional neural network approach should be well-suited towards identifying high-level visual context such as whether a page is a blog or a homepage. However, in its current state Eyeballer may not be accurate enough for context generation in production.","nodeType":"text"}],"nodeType":"paragraph"},{"data":{},"content":[{"data":{},"marks":[],"value":"Since it is unclear how complex categories such as that of a “homepage” could be identified from a code or text-based perspective, I turn to how Eyeballer could be improved.","nodeType":"text"}],"nodeType":"paragraph"},{"data":{},"content":[{"data":{},"marks":[],"value":"In particular, there are four avenues for improvement: increased data, hyperparameter tuning, improving the model’s ability to extract features specific to web pages, and more precise label choice. Firstly, the most obvious way to improve this model would be to increase the training data set. However, this can be expensive. The default threshold at which a confidence score is interpreted as predicting a label is 50%. Raising this threshold to 90% improved precision for the “old-looking” label to 94.21% but lowered its recall to 39.58%. In general, adjusting this threshold means trading recall for precision.","nodeType":"text"}],"nodeType":"paragraph"},{"data":{},"content":[{"data":{},"marks":[],"value":"Secondly, the specific architecture of Eyeballer could possibly be improved in future versions to better learn to extract web page features. The current training paradigm begins with a neural network pretrained on ImageNet (a large corpus of labeled images of objects) and then trains a fine-tuning layer on top of it. The underlying pre-trained neural network is not trained, however, to extract different features of a webpage (such as navigation bars or input fields) but is rather trained to identify more general lines and shapes. Due to Eyeballer’s global average pooling layer, which is immediately applied to the output of MobileNet, Eyeballer does not have a layer of convolutions that learn to extract features specific to web pages such as navigation bars or comment sections.","nodeType":"text"}],"nodeType":"paragraph"},{"data":{},"content":[{"data":{},"marks":[],"value":"Exploring additional convolutional feature extraction layers (in conjunction with additional training data) could engender nontrivial improvements. In addition to training these additional layers with the existing dataset provided by BishopFox, transfer learning could also be applied. By temporarily replacing the Eyeballer classification layer with another classification layer that outputs whether a webpage contains common web page elements such as a navigation bar or comment section, and training this modified neural network on a dataset of web screenshots annotated with whether they include each of these web page elements, the intermediary convolution layers might learn to extract these web page elements.","nodeType":"text"}],"nodeType":"paragraph"},{"data":{},"content":[{"data":{},"marks":[],"value":"Finally, label choice might help to improve the model. For example, it might be the case that the model is struggling to achieve a \u003e90% precision for homepage classification because the visual particulars of homepages are so varied. 8,000 training screenshots may not be enough to capture this diversity sufficiently. However, note that homepages are of interest primarily because they typically link to many other pages, which may themselves possess sensitive assets, and then note that these links usually appear in some form of a navigation bar. Therefore, it might be just as useful to label web assets by whether or not they have a navigation bar as it is to label them by whether or not they are a homepage. Since navigation bars are less varied in form than homepages (they usually are at the tops of pages, display rows of words or phrases, etc.) a convolutional neural network may be able to learn to identify them more easily than they could learn to identify homepages in general.","nodeType":"text"}],"nodeType":"paragraph"},{"data":{},"content":[{"data":{},"marks":[{"type":"bold"}],"value":"HTML and CSS-informed keyword extraction","nodeType":"text"}],"nodeType":"heading-2"},{"data":{},"content":[{"data":{},"marks":[],"value":"A bag-of-words approach can be applied to a webpage pretty simply. Firstly, the domain in question is visited. Then, the response’s HTML is parsed for all words that are not HTML tags or arguments. This will yield a multiset of words that can be cleaned with standard natural language processing techniques such as tokenization, removing stop words, removing punctuation, only preserving adjectives and nouns, generating n-grams, and lemmatization. This cleaning can be achieved easily with a programming package such as NLTK (see ","nodeType":"text"},{"data":{"uri":"https://colab.research.google.com/drive/14W8b6KTQxTFu69IQGenMAK3qX2Oehcnb?usp=sharing"},"content":[{"data":{},"marks":[],"value":"this demo code","nodeType":"text"}],"nodeType":"hyperlink"},{"data":{},"marks":[],"value":").","nodeType":"text"}],"nodeType":"paragraph"},{"data":{},"content":[{"data":{},"marks":[],"value":"Finally, the resultant cleaned set of words forms a multiset, or “bag of words,” that can be further filtered for keyword extraction.","nodeType":"text"}],"nodeType":"paragraph"},{"data":{},"content":[{"data":{},"marks":[],"value":"While the bag-of-words approach is useful for keyword extraction in general, the simplest way of determining word importance (frequency analysis) is not particularly well-suited for web page analysis. On a web page, the most important words may only appear infrequently, and visual layout and design is an important means through which information is conveyed. To circumvent this limitation, words can be tagged with features that signify their importance beyond frequency, and this expanded feature set can be used to determine relative word importance.","nodeType":"text"}],"nodeType":"paragraph"},{"data":{},"content":[{"data":{},"marks":[],"value":"Firstly, words can be analyzed for spatial-visual importance. One heuristic that could be explored is the number of words that exist within a circle around a particular instance of a word. For example, suppose the word “About” appears on a web page twice. Then, an algorithm can be employed to take as input a screenshot of the webpage in question and annotate each instance of a word with a dot at its center. For each instance of the word “About,” a second algorithm can count the number of words (represented by dots) within a circle of X radius. If there are very few neighboring words for one of the instances of “About,” it could be concluded that this instance of “About” is a title and that furthermore this web page is an “About” page.","nodeType":"text"}],"nodeType":"paragraph"},{"data":{},"content":[{"data":{},"marks":[],"value":"Practically, this approach is limited by the fact that not all “About” pages will display the word “About” as a title. They might instead display the words “Our Story” or “Meet the Owners.” While this approach can look for these synonym titles as well, it will not exhaustively identify all possible titles for an “About” page. In other words, the precision would be high (if a page has “About” or “Our Story” as a title, then it most likely is an “About” page) but recall might be lower (if an “About” page has a different title, then it might not be properly identified).","nodeType":"text"}],"nodeType":"paragraph"},{"data":{"target":{"sys":{"id":"myvB6hMHK7BHb25GYvWvT","type":"Link","linkType":"Asset"}}},"content":[],"nodeType":"embedded-asset-block"},{"data":{},"content":[{"data":{},"marks":[],"value":"Secondly, words can be analyzed via a web page’s HTML. For example, a word is probably more important if it is included within the \u0026lt;title\u0026gt; in a web page’s \u0026lt;head\u0026gt;. On the “About” page for Coalition, there is no generic title within the body of the page that strongly indicates that the page is ","nodeType":"text"},{"data":{"uri":"https://www.coalitioninc.com/origin"},"content":[{"data":{},"marks":[],"value":"an “About” page.","nodeType":"text"}],"nodeType":"hyperlink"},{"data":{},"marks":[],"value":"","nodeType":"text"}],"nodeType":"paragraph"},{"data":{},"content":[{"data":{},"marks":[],"value":"However, the \u0026lt;title\u0026gt; (top-left) includes “Our Story,” and the selected navbar element (top-middle) includes “About.” An initial list of tags to mark as signifying higher importance could be: \u0026lt;h1\u0026gt; through \u0026lt;h6\u0026gt;, \u0026lt;title\u0026gt;, \u0026lt;strong\u0026gt;, \u0026lt;summary\u0026gt;, \u0026lt;th\u0026gt;, \u0026lt;button\u0026gt;, and \u0026lt;a\u0026gt;.","nodeType":"text"}],"nodeType":"paragraph"},{"data":{"target":{"sys":{"id":"yn9rv6cvwN5HMJTpvBJdi","type":"Link","linkType":"Asset"}}},"content":[],"nodeType":"embedded-asset-block"},{"data":{},"content":[{"data":{},"marks":[],"value":"Thirdly, words can be analyzed via their styling in CSS. If the size of a word according to its styling is in the upper quartile of word sizes on a web page, then this word is more likely to be important on that page. Similarly, bold font, italics, underlining, and a font that differs from that of most words on the page all indicate that a word might be of particular importance.","nodeType":"text"}],"nodeType":"paragraph"},{"data":{},"content":[{"data":{},"marks":[],"value":"Finally, words can be analyzed to determine whether or not they are displayed in navigation bars or side bars. A convolutional neural network can be used to identify and annotate sidebars and navigation bars in a screenshot of a webpage. A second neural network can be used to annotate words in a screenshot of a webpage. These two annotation sets can be intersected to determine if a particular word is displayed in a sidebar or navigation bar. To handle the situation where sidebars or navigation bars are dropdowns, or otherwise only appear on hover or click of a particular button, the screenshotting algorithm can take a screenshot after hovering and clicking on every \u0026lt;button\u0026gt; and \u0026lt;a\u0026gt; that does not have an “href” or “form” parameter.","nodeType":"text"}],"nodeType":"paragraph"},{"data":{},"content":[{"data":{},"marks":[],"value":"These analyses will enable more robust weighting of word importance on web pages. Once these features are collected, then they can be used to extract key words. Initially, a heuristic could be applied to generate a single “word importance” from these features. Eventually, a statistical model such as a logistic regression could be trained to predict if a word is important based on these features. If all “important” words are labeled as keywords for a web page, however, a dimensionality issue could arise: If web pages’ keywords are too diverse, it will be hard to compare them. One fix to this problem would be to only extract key words that are also contained in some external lexicon. To make this fix less brittle, synonyms and close linguistic cousins of words in this external lexicon could also be extracted as keywords. For example, if the most important word on a web page is “money” but only “financial” exists in the lexicon, then there would still be a match, and “money” would be annotated with a note that it was matched because it is a close linguistic cousin of “financial.”","nodeType":"text"}],"nodeType":"paragraph"},{"data":{},"content":[{"data":{},"marks":[{"type":"bold"}],"value":"HTML analysis","nodeType":"text"}],"nodeType":"heading-2"},{"data":{},"content":[{"data":{},"marks":[],"value":"Tags can be generated by traditional HTML analysis as well. For example, a login feature on a web page probably contains an \u0026lt;input\u0026gt; with a type or placeholder that includes “username,” “email,” “password,” or “pin.” If a web asset points to a homepage, then the login feature might be hidden on a web page that can be navigated to via a link on the homepage. An algorithm can load and analyze the homepage, visit all of its links, and then analyze all of the HTML returned from those links of the same domain or subdomain, in order to find the login feature if it exists (see ","nodeType":"text"},{"data":{"uri":"https://colab.research.google.com/drive/1U8Id0ElcrIuuGyurbKtUNJGY2CZXXjtN?usp=sharing"},"content":[{"data":{},"marks":[],"value":"this demo code","nodeType":"text"}],"nodeType":"hyperlink"},{"data":{},"marks":[],"value":")","nodeType":"text"}],"nodeType":"paragraph"},{"data":{},"content":[{"data":{},"marks":[],"value":"There are really two approaches to creating context tags for web pages: analysis (i.e. HTML parsing) and machine learning. Simpler tasks such as determining if a page has a login feature should be handled with an analytical approach, as this provides stronger performance guarantees. However, more complex tasks such as determining if a page is a homepage practically require a machine learning approach. Complex tasks like this can involve machine learning applied to either screenshots or HTML. While the former seems simpler, the latter actually sometimes makes more sense. HTML is an encoding of the visual aspects of a webpage, and so by training models on HTML, these models can largely avoid the task of having to create internal representations of websites from screenshots. Instead, they start with structured representation of screenshots, reducing the complexity of the learning task.","nodeType":"text"}],"nodeType":"paragraph"},{"data":{},"content":[{"data":{},"marks":[],"value":"By creating a set of context tags through a variety of means including screenshot analysis with deep learning, text analysis with natural language processing, and code analysis, structured representations of websites can be constructed that enable their categorization and comparison. Since context tags will largely be qualitative in nature (i.e. nouns such as “blog” or adjectives such as “old-looking”), they will have to be given a heuristic ordering by a domain expert.","nodeType":"text"}],"nodeType":"paragraph"},{"data":{},"content":[{"data":{},"content":[{"data":{},"marks":[],"value":"Coalition recently launched Coalition Control — an integrated platform that allows organizations to take control of their cyber risk. Sign up with just your email address today and start controlling your risk.","nodeType":"text"}],"nodeType":"paragraph"}],"nodeType":"blockquote"},{"data":{},"content":[{"data":{},"marks":[],"value":"\n","nodeType":"text"}],"nodeType":"paragraph"}],"nodeType":"document"},"links":{"assets":[{"__typename":"Media","id":"myvB6hMHK7BHb25GYvWvT","title":"heuristic","variant":"image","file":{"__typename":"Asset","url":"https://images.ctfassets.net/o2pgk9gufvga/myvB6hMHK7BHb25GYvWvT/7952e8f654affbd38f288cce023cc0f8/heuristic.png","fileName":"heuristic.png","width":"720","height":"618"}},{"__typename":"Media","id":"yn9rv6cvwN5HMJTpvBJdi","title":"image","variant":"image","file":{"__typename":"Asset","url":"https://images.ctfassets.net/o2pgk9gufvga/yn9rv6cvwN5HMJTpvBJdi/d4d07d64e8d4e594159601e53506540c/image.png","fileName":"image.png","width":"574","height":"376"}}]}},"author":{"name":"Colin Flaherty","jobTitle":"Author","slug":"/blog/author/colin-flaherty","image":{"__typename":"Media","id":"5xARKFhiEHVSLVMZRmX88N","title":"Person \u003e Colin Flaherty","variant":"image","file":{"__typename":"Asset","url":"https://images.ctfassets.net/o2pgk9gufvga/5xARKFhiEHVSLVMZRmX88N/945e96ebdecdefb268c33c6121df97fc/test.jpg","fileName":"test.jpg","width":"400","height":"400"}}},"featuredMedia":{"__typename":"Media","id":"2LqmoYajQQWLZ2qRQ2hVvR","title":"Featured Image for Thinking about “context” for web assets: Automating attack surface tagging and classification for scale","variant":"image","file":{"__typename":"Asset","url":"https://images.ctfassets.net/o2pgk9gufvga/2LqmoYajQQWLZ2qRQ2hVvR/1ddd63a41ecb8e9c5e2888e6f8120845/test.jpg","fileName":"test.jpg","width":"1200","height":"628"}},"pubDate":"May 20, 2021","header":{"id":"2Z0zVBXwv3mRNaVBhPEQrI","__typename":"Header","sidekickLookup":{"loginOptions":{"fieldName":"loginOptions"},"contentId":"2Z0zVBXwv3mRNaVBhPEQrI","contentTypeId":"header"},"variant":"legacy","colorscheme":"default","logo":{"__typename":"Media","id":"3q8TgCFAc4D2nCKYiGJwtN","title":"Logo \u003e Coalition black","variant":"image","file":{"__typename":"Asset","url":"https://images.ctfassets.net/o2pgk9gufvga/3q8TgCFAc4D2nCKYiGJwtN/7d58502e38ce4ee36c8e0488fdcd5c49/Coalition_Logo.svg","fileName":"Coalition Logo.svg","width":"480","height":"123"}},"logoReverse":{"__typename":"Media","id":"4FsCKS3AtT1XrYg66OOkor","title":"Logo \u003e Coalition in white with transparent background ","variant":"image","file":{"__typename":"Asset","url":"https://images.ctfassets.net/o2pgk9gufvga/4FsCKS3AtT1XrYg66OOkor/88e55df16c8b77f057ccecdb678a133f/Coalition_Logo_Reverse.svg","fileName":"Coalition Logo Reverse.svg","width":"192","height":"49"}},"logoUrl":"/","logoWidth":160,"navigationItems":[{"id":"4KL5BCxh1pHqSkw01vHF5N","__typename":"NavigationTopLevel","sidekickLookup":{"contentId":"4KL5BCxh1pHqSkw01vHF5N","contentTypeId":"navigationTopLevel"},"title":"Insurance","featuredItem":{"id":"16abRMtlc6g4rj5VXjW5KX","__typename":"NavigationItem","sidekickLookup":{"contentId":"16abRMtlc6g4rj5VXjW5KX","contentTypeId":"navigationItem"},"variant":"featuredItem","title":"What is Active Insurance?","summary":"The first insurance to help actively assess, prevent, and respond to cyber risk with security tech and broad coverage.","href":"/active-insurance","numWrap":2,"image":{"__typename":"Media","id":"cyPxTQy7wDKcW7WVA56tZ","title":"Icon \u003e Standard \u003e Active Insurance","variant":"image","file":{"__typename":"Asset","url":"https://images.ctfassets.net/o2pgk9gufvga/cyPxTQy7wDKcW7WVA56tZ/2d0f8eff5395d8d391802fe6996f8a61/active-insurance.svg","fileName":"active-insurance.svg","width":"72","height":"72"}},"subNavigation":[{"__typename":"Link","id":"1BMDWrfuIPSkyWaRCDvQnt","sidekickLookup":{"subtitle":{"fieldName":"subtitle"},"contentId":"1BMDWrfuIPSkyWaRCDvQnt","contentTypeId":"link"},"text":"Learn More","href":"/active-insurance","variant":"link-secondary","icon":"chevron-right","iconPosition":"Right","colorscheme":"blue","size":"medium","isModal":false}]},"subNavigationLinks":[{"id":"4NTD6UsSvi2iVqH6wcRUJ0","__typename":"NavigationItem","sidekickLookup":{"contentId":"4NTD6UsSvi2iVqH6wcRUJ0","contentTypeId":"navigationItem"},"variant":"groupLabel","href":"#","numWrap":2,"subNavigation":[{"__typename":"NavigationItem","id":"7fE9XIOI4m7JQmjZMUF5UF","sidekickLookup":{"contentId":"7fE9XIOI4m7JQmjZMUF5UF","contentTypeId":"navigationItem"},"variant":"regular","title":"Cyber Insurance","summary":"Insurance coverage designed for threats like ransomware, email compromise, and more.","href":"/cyber-insurance"},{"__typename":"NavigationItem","id":"xLrmKg6qGUqNdFeqT5Jrq","sidekickLookup":{"contentId":"xLrmKg6qGUqNdFeqT5Jrq","contentTypeId":"navigationItem"},"variant":"regular","title":"Tech Errors \u0026 Omissions","summary":"Comprehensive errors and omissions coverage for technology businesses.","href":"/technology-errors-and-omissions-insurance","numWrap":2}]}]},{"id":"6UbwMldJ1zNi4aPqXKUDwQ","__typename":"NavigationTopLevel","sidekickLookup":{"contentId":"6UbwMldJ1zNi4aPqXKUDwQ","contentTypeId":"navigationTopLevel"},"title":"Security","featuredItem":{"id":"1i72RufTROCO0vyZlIuGY6","__typename":"NavigationItem","sidekickLookup":{"contentId":"1i72RufTROCO0vyZlIuGY6","contentTypeId":"navigationItem"},"variant":"featuredItem","title":"Coalition Security","summary":"See how cyber experts invested in your security deliver additional protection at a price made for small business.","href":"/security","numWrap":2,"image":{"__typename":"Media","id":"7wCPDQqPYIbTAt7eYell8r","title":"Icon \u003e Default \u003e Shield Security","variant":"image","file":{"__typename":"Asset","url":"https://images.ctfassets.net/o2pgk9gufvga/7wCPDQqPYIbTAt7eYell8r/aa163a077b5e30440c78ca277dab1475/security.svg","fileName":"security.svg","width":"40","height":"41"}},"subNavigation":[{"__typename":"Link","id":"3z9vEAKgkF72SSAJuuOy3G","sidekickLookup":{"subtitle":{"fieldName":"subtitle"},"contentId":"3z9vEAKgkF72SSAJuuOy3G","contentTypeId":"link"},"text":"Learn More","href":"/security","variant":"link-secondary","icon":"chevron-left","iconPosition":"Right","colorscheme":"blue","size":"medium","isModal":false}]},"subNavigationLinks":[{"id":"3RB46nU3Kj7duMzaGTtj1R","__typename":"NavigationItem","sidekickLookup":{"contentId":"3RB46nU3Kj7duMzaGTtj1R","contentTypeId":"navigationItem"},"variant":"groupLabel","href":"#","numWrap":2,"subNavigation":[{"__typename":"NavigationItem","id":"2sKKkPfML1dXRqWXy7lbWf","sidekickLookup":{"contentId":"2sKKkPfML1dXRqWXy7lbWf","contentTypeId":"navigationItem"},"variant":"regular","title":"Coalition Control®","summary":"The cyber risk platform with alerts to help policyholders improve security.","href":"/control"},{"__typename":"NavigationItem","id":"4QFttW4pqtGwx2RwPIxZTL","sidekickLookup":{"contentId":"4QFttW4pqtGwx2RwPIxZTL","contentTypeId":"navigationItem"},"variant":"regular","title":"Managed Detection \u0026 Response (MDR)","summary":"Identify, contain, and mitigate threats across endpoints with 24/7 MDR protection.","href":"/security/managed-detection-response","numWrap":2}]},{"id":"44QzRkpOvEqg7jrnOcoFhn","__typename":"NavigationItem","sidekickLookup":{"contentId":"44QzRkpOvEqg7jrnOcoFhn","contentTypeId":"navigationItem"},"variant":"groupLabel","href":"#","numWrap":2,"subNavigation":[{"__typename":"NavigationItem","id":"5K1eLCqVKp6bev3aSLr7Ja","sidekickLookup":{"contentId":"5K1eLCqVKp6bev3aSLr7Ja","contentTypeId":"navigationItem"},"variant":"default","title":"Coalition Incident Response (CIR)","summary":"Our premier, on-call affiliate with digital forensics and incident response expertise.","href":"/incident-response","numWrap":2},{"__typename":"NavigationItem","id":"64iV5eloo1uhIcQWuPWMGv","sidekickLookup":{"contentId":"64iV5eloo1uhIcQWuPWMGv","contentTypeId":"navigationItem"},"variant":"regular","title":"Coalition Security Awareness Training (SAT)","summary":"Engaging, cost-effective security training for every employee.","href":"/security/security-awareness-training","numWrap":2}]}]},{"id":"wLSKszuDctmwdwzf1csSt","__typename":"NavigationTopLevel","sidekickLookup":{"contentId":"wLSKszuDctmwdwzf1csSt","contentTypeId":"navigationTopLevel"},"title":"Why Us","featuredItem":{"id":"683pwIyZlqG1T6qX2DAXHc","__typename":"NavigationItem","sidekickLookup":{"contentId":"683pwIyZlqG1T6qX2DAXHc","contentTypeId":"navigationItem"},"variant":"featuredItem","title":"Claims Experience","summary":"Our in-house experts help recover stolen funds, respond to threats, process claims fast, and get you back to business.","href":"/claims-experience","subNavigation":[{"__typename":"Link","id":"GG4Aj4tmmNpRkpjo84XHY","sidekickLookup":{"subtitle":{"fieldName":"subtitle"},"contentId":"GG4Aj4tmmNpRkpjo84XHY","contentTypeId":"link"},"text":"Learn More","href":"/claims-experience","variant":"button-contained","icon":"chevron-right","iconPosition":"Right","colorscheme":"blue","size":"medium","isModal":false}]},"subNavigationLinks":[{"id":"4aRT8dHH8liDqs6e1JKTVY","__typename":"NavigationItem","sidekickLookup":{"contentId":"4aRT8dHH8liDqs6e1JKTVY","contentTypeId":"navigationItem"},"variant":"groupLabel","title":"Who We Help","href":"#","numWrap":3,"subNavigation":[{"__typename":"NavigationItem","id":"1nZSBnDNZENeCWhzEIBrxp","sidekickLookup":{"contentId":"1nZSBnDNZENeCWhzEIBrxp","contentTypeId":"navigationItem"},"variant":"regular","title":"For Brokers","summary":"Build your cyber expertise. Grow your book of business with the Active Insurance leader.","text":"For Brokers","href":"/brokers","numWrap":2},{"__typename":"NavigationItem","id":"2o49WAJOXP6V2KYlYDSRQQ","sidekickLookup":{"contentId":"2o49WAJOXP6V2KYlYDSRQQ","contentTypeId":"navigationItem"},"variant":"regular","title":"For Businesses","summary":"Find out how we actively protect you from ransomware, digital theft, and more.","text":"For Businesses","href":"/business"},{"__typename":"NavigationItem","id":"3ItJQUJJMD2KVGQC45eaT4","sidekickLookup":{"contentId":"3ItJQUJJMD2KVGQC45eaT4","contentTypeId":"navigationItem"},"variant":"regular","title":"For Security Teams","summary":"Innovative security tools and services; expert guidance and insights on cyber threats.","text":"For Security Teams","href":"/security/teams"}]},{"id":"3VxnuemqOSSIY4z3kj8kPO","__typename":"NavigationItem","sidekickLookup":{"contentId":"3VxnuemqOSSIY4z3kj8kPO","contentTypeId":"navigationItem"},"variant":"groupLabel","title":"Technology \u0026 Innovation","href":"#","numWrap":3,"subNavigation":[{"__typename":"NavigationItem","id":"4lyfdkbFHxHKNhdGd5U1YO","sidekickLookup":{"contentId":"4lyfdkbFHxHKNhdGd5U1YO","contentTypeId":"navigationItem"},"variant":"regular","title":"Active Data Graph","summary":"Our purpose-built data collection \u0026 analysis engine powers everything we do.","href":"/data-graph","numWrap":2}]}]},{"id":"4LpRbUdaaZpAMgMRRKcyhf","__typename":"NavigationTopLevel","sidekickLookup":{"contentId":"4LpRbUdaaZpAMgMRRKcyhf","contentTypeId":"navigationTopLevel"},"title":"Resources","featuredItem":{"id":"2VBCw2JnynpNLA5NSREhhZ","__typename":"NavigationItem","sidekickLookup":{"contentId":"2VBCw2JnynpNLA5NSREhhZ","contentTypeId":"navigationItem"},"variant":"featuredGroup","title":"Blog","summary":"Get the latest on new digital threats, tech innovations, security trends, and cyber insurance.","href":"/blog/all","subNavigation":[{"__typename":"Link","id":"4w6vOb5gwMZEZDBtRTIJTv","sidekickLookup":{"subtitle":{"fieldName":"subtitle"},"contentId":"4w6vOb5gwMZEZDBtRTIJTv","contentTypeId":"link"},"text":"Cyber Insurance","href":"/blog/cyber-insurance","variant":"link","iconPosition":"Right","colorscheme":"blue","size":"medium","isModal":false},{"__typename":"Link","id":"3OGfc6q0QLkITUEjdNehio","sidekickLookup":{"subtitle":{"fieldName":"subtitle"},"contentId":"3OGfc6q0QLkITUEjdNehio","contentTypeId":"link"},"text":"Broker Education","href":"/blog/broker-education","variant":"link","iconPosition":"Right","colorscheme":"blue","size":"medium","isModal":false},{"__typename":"Link","id":"3PNxQ8gNEebuYwcWW20NFt","sidekickLookup":{"subtitle":{"fieldName":"subtitle"},"contentId":"3PNxQ8gNEebuYwcWW20NFt","contentTypeId":"link"},"text":"Security","href":"/blog/security-labs","variant":"link","icon":"chevron-right","iconPosition":"Right","colorscheme":"blue","size":"medium","isModal":false},{"__typename":"Link","id":"4aADzP6EiZoetKyYbmhHXz","sidekickLookup":{"subtitle":{"fieldName":"subtitle"},"contentId":"4aADzP6EiZoetKyYbmhHXz","contentTypeId":"link"},"text":"All Blog Posts","href":"https://www.coalitioninc.com/en-ca/blog","variant":"link","icon":"chevron-right","iconPosition":"Right","colorscheme":"blue","size":"medium","isModal":false,"openInNewWindow":false}]},"subNavigationLinks":[{"id":"4h1VUZYKlC8uMQVqgiHfBS","__typename":"NavigationItem","sidekickLookup":{"contentId":"4h1VUZYKlC8uMQVqgiHfBS","contentTypeId":"navigationItem"},"variant":"groupLabel","title":"INSURANCE","href":"#","numWrap":2,"subNavigation":[{"__typename":"NavigationItem","id":"4n7tRXtrFSZnbEG6n8k2k","sidekickLookup":{"contentId":"4n7tRXtrFSZnbEG6n8k2k","contentTypeId":"navigationItem"},"variant":"regular","title":"Case Studies","summary":"Read how we helped protect assets, fight threats, and claw money back for busineses.","href":"/case-studies","numWrap":2},{"__typename":"NavigationItem","id":"529ujfBCcvBJrCALlhGHhj","sidekickLookup":{"contentId":"529ujfBCcvBJrCALlhGHhj","contentTypeId":"navigationItem"},"variant":"default","title":"Industries","summary":"Cyber risk is everywhere. Learn how we protect the unprotected across industries.","href":"/industry","numWrap":2}]},{"id":"1NfItKvqrh74x8PoPcMhRl","__typename":"NavigationItem","sidekickLookup":{"contentId":"1NfItKvqrh74x8PoPcMhRl","contentTypeId":"navigationItem"},"variant":"groupLabel","title":"SECURITY TOOLS \u0026 RESOURCES","href":"#","numWrap":2,"subNavigation":[{"__typename":"NavigationItem","id":"4pjjc2eUpNeMOJe2prHCxO","sidekickLookup":{"contentId":"4pjjc2eUpNeMOJe2prHCxO","contentTypeId":"navigationItem"},"variant":"regular","title":"Exploit Scoring System","summary":"Search 200,000+ CVEs for vulnerabilities and prioritize what to address first.","href":"https://ess.coalitioninc.com/","numWrap":2},{"__typename":"NavigationItem","id":"7AXSjaDD0yO65g6JWrcPLa","sidekickLookup":{"contentId":"7AXSjaDD0yO65g6JWrcPLa","contentTypeId":"navigationItem"},"variant":"regular","title":"MSPs: Become A Partner","summary":"Help clients close security gaps, become insurable, and protect against cyber risks.","href":"/serviceproviders","numWrap":2}]}],"promoLinks":[{"id":"6ne6aV0J3LaW8jCDdjiDYL","__typename":"NavigationItem","sidekickLookup":{"contentId":"6ne6aV0J3LaW8jCDdjiDYL","contentTypeId":"navigationItem"},"variant":"default","title":"Claims Report","summary":"See the latest trends in cyber insurance.","text":"Claims Report","href":"https://web.coalitioninc.com/download-2025-cyber-claims-report.html","isModal":false,"image":{"__typename":"Media","id":"l3ol9Dn5bNcxTXGLZDjkN","title":"Icon \u003e Download","variant":"image","file":{"__typename":"Asset","url":"https://images.ctfassets.net/o2pgk9gufvga/l3ol9Dn5bNcxTXGLZDjkN/1836f3a00d90babfa6a2b07f0d626a15/Group_1675.svg","fileName":"Group 1675.svg","width":"24","height":"28"}}},{"id":"25duGXReAD9dXNqrthpXtj","__typename":"NavigationItem","sidekickLookup":{"contentId":"25duGXReAD9dXNqrthpXtj","contentTypeId":"navigationItem"},"variant":"default","title":"Cyber Threat Index 2025","summary":"Get the report on emerging security challenges.","href":"https://web.coalitioninc.com/DLC-Cyber-Threat-Index-2025.html","numWrap":2,"image":{"__typename":"Media","id":"l3ol9Dn5bNcxTXGLZDjkN","title":"Icon \u003e Download","variant":"image","file":{"__typename":"Asset","url":"https://images.ctfassets.net/o2pgk9gufvga/l3ol9Dn5bNcxTXGLZDjkN/1836f3a00d90babfa6a2b07f0d626a15/Group_1675.svg","fileName":"Group 1675.svg","width":"24","height":"28"}}}]},{"id":"7clQlPYx1yELsFuz5RAyE3","__typename":"NavigationTopLevel","sidekickLookup":{"contentId":"7clQlPYx1yELsFuz5RAyE3","contentTypeId":"navigationTopLevel"},"title":"Company","featuredItem":{"id":"1i93sRsa1mwuDxXJFwqTTY","__typename":"NavigationItem","sidekickLookup":{"contentId":"1i93sRsa1mwuDxXJFwqTTY","contentTypeId":"navigationItem"},"variant":"featuredItem","title":"Careers","summary":"Build your skills and career and help us redefine insurance for the digital age.","href":"https://www.coalitioninc.com/careers","numWrap":2,"subNavigation":[{"__typename":"Link","id":"1dZ4KhsDmro89Zje4aJwNJ","sidekickLookup":{"subtitle":{"fieldName":"subtitle"},"contentId":"1dZ4KhsDmro89Zje4aJwNJ","contentTypeId":"link"},"text":"Meet The Team","href":"https://www.coalitioninc.com/teams","variant":"button-contained","icon":"caret-right","iconPosition":"Right","colorscheme":"blue","size":"medium","isModal":false},{"__typename":"Link","id":"7x856anfpQvWsayYTCIWiu","sidekickLookup":{"subtitle":{"fieldName":"subtitle"},"contentId":"7x856anfpQvWsayYTCIWiu","contentTypeId":"link"},"text":"Life At Coalition","href":"https://www.coalitioninc.com/life-at-coalition","variant":"button-contained","icon":"caret-right","iconPosition":"Right","colorscheme":"blue","size":"medium","isModal":false},{"__typename":"Link","id":"5HOhwMbn4rWeafy4Oyc06G","sidekickLookup":{"subtitle":{"fieldName":"subtitle"},"contentId":"5HOhwMbn4rWeafy4Oyc06G","contentTypeId":"link"},"text":"Open Roles","href":"https://www.coalitioninc.com/jobs","variant":"button-contained","icon":"caret-right","iconPosition":"Right","colorscheme":"blue","size":"medium","isModal":false}]},"subNavigationLinks":[{"id":"4a8HCnV57boYWDkFkOukcj","__typename":"NavigationItem","sidekickLookup":{"contentId":"4a8HCnV57boYWDkFkOukcj","contentTypeId":"navigationItem"},"variant":"groupLabel","href":"#","numWrap":2,"subNavigation":[{"__typename":"NavigationItem","id":"2i5oJWlxkIkKYTxe4equ3z","sidekickLookup":{"contentId":"2i5oJWlxkIkKYTxe4equ3z","contentTypeId":"navigationItem"},"variant":"regular","title":"About Us","summary":"Learn about our game-changing vision for insurance to actively protect the unprotected.","href":"/about","numWrap":2},{"__typename":"NavigationItem","id":"3bdMhLqyLCvSY2guiavhP4","sidekickLookup":{"contentId":"3bdMhLqyLCvSY2guiavhP4","contentTypeId":"navigationItem"},"variant":"regular","title":"Newsroom","summary":"Get the scoop on press releases, announcements, launches, and more.","href":"/newsroom"},{"__typename":"NavigationItem","id":"4QJtlqazcWstu5SZnFDx2i","sidekickLookup":{"contentId":"4QJtlqazcWstu5SZnFDx2i","contentTypeId":"navigationItem"},"variant":"regular","title":"Contact Us","summary":"Questions about policies, quotes, or more? Get answers — whether you’re a broker or a policyholder.","href":"/contact","numWrap":2}]}]}],"desktopActions":[{"id":"4n40ILWlIYT1MmlTvudu4V","__typename":"Text","sidekickLookup":{"richEyebrow":{"fieldName":"eyebrow"},"richTitle":{"fieldName":"title"},"richSubtitle":{"fieldName":"subtitle"},"contentId":"4n40ILWlIYT1MmlTvudu4V","contentTypeId":"text"},"variant":"default","align":"left","alignContent":"flex-start","colorscheme":"inherit","backgroundColor":"transparent","contentSize":"fullBleed","highlightColor":"yellow","eyebrowColor":"default","titleColor":"default","subtitleColor":"default","body":{"__typename":"RichText","json":{"data":{},"content":[{"data":{},"content":[{"data":{},"marks":[],"value":"Cyber Incident? ","nodeType":"text"},{"data":{"target":{"sys":{"id":"3AbJMa84YQOXJsSyYAkCQ8","type":"Link","linkType":"Entry"}}},"content":[],"nodeType":"embedded-entry-inline"},{"data":{},"marks":[{"type":"underline"}],"value":"","nodeType":"text"}],"nodeType":"heading-5"}],"nodeType":"document"},"links":{"entries":[{"id":"3AbJMa84YQOXJsSyYAkCQ8","__typename":"Link","sidekickLookup":{"subtitle":{"fieldName":"subtitle"},"contentId":"3AbJMa84YQOXJsSyYAkCQ8","contentTypeId":"link"},"text":"Get Help","href":"/report-a-claim","variant":"link","iconPosition":"Right","colorscheme":"blue","size":"medium"}]}}}],"mobileActions":[{"id":"uC6dz1Iko0E1KXtmfnCGm","__typename":"Link","sidekickLookup":{"subtitle":{"fieldName":"subtitle"},"contentId":"uC6dz1Iko0E1KXtmfnCGm","contentTypeId":"link"},"text":"Log in","href":"https://platform.coalitioninc.com/login","variant":"button-text","icon":"chevron-right","iconPosition":"Right","colorscheme":"blue","size":"medium"},{"id":"7bIkUPdMfOJtP0Y4AIo42k","__typename":"NavigationItem","sidekickLookup":{"contentId":"7bIkUPdMfOJtP0Y4AIo42k","contentTypeId":"navigationItem"},"variant":"localeGroupLabel","href":"#","subNavigation":[{"__typename":"NavigationItem","id":"4jJGsTDvfhgJp5OaspaXYS","sidekickLookup":{"contentId":"4jJGsTDvfhgJp5OaspaXYS","contentTypeId":"navigationItem"},"variant":"regular","text":"USA","href":"/en-us"},{"__typename":"NavigationItem","id":"5qmSyuaSB9obAj0e6nFUH0","sidekickLookup":{"contentId":"5qmSyuaSB9obAj0e6nFUH0","contentTypeId":"navigationItem"},"variant":"regular","text":"Canada","href":"/en-ca"},{"__typename":"NavigationItem","id":"1hA7G30aA1t70xnsZESdiV","sidekickLookup":{"contentId":"1hA7G30aA1t70xnsZESdiV","contentTypeId":"navigationItem"},"variant":"regular","text":"UK","href":"/en-gb","numWrap":2},{"__typename":"NavigationItem","id":"ZzfwZbldIjBncuFi1xhOr","sidekickLookup":{"contentId":"ZzfwZbldIjBncuFi1xhOr","contentTypeId":"navigationItem"},"variant":"regular","text":"Canada (French)","href":"/fr-ca","numWrap":2},{"__typename":"NavigationItem","id":"1ijCvWBWKk3jMI5NckghTk","sidekickLookup":{"contentId":"1ijCvWBWKk3jMI5NckghTk","contentTypeId":"navigationItem"},"variant":"regular","text":"Australia","href":"/au","numWrap":2},{"__typename":"NavigationItem","id":"2skcIDUChBxCF76QBHx3jI","sidekickLookup":{"contentId":"2skcIDUChBxCF76QBHx3jI","contentTypeId":"navigationItem"},"variant":"regular","text":"Deutschland","href":"/de","numWrap":2},{"__typename":"NavigationItem","id":"yMuTYvGQ6eGCghmAltJPp","sidekickLookup":{"contentId":"yMuTYvGQ6eGCghmAltJPp","contentTypeId":"navigationItem"},"variant":"regular","text":"Nordics","href":"/nordics","numWrap":2},{"__typename":"NavigationItem","id":"5H7PdIdhMxJlyKLNoJV0B6","sidekickLookup":{"contentId":"5H7PdIdhMxJlyKLNoJV0B6","contentTypeId":"navigationItem"},"variant":"regular","text":"France","href":"/fr","numWrap":2}]}],"desktopBannerActions":[{"id":"4n40ILWlIYT1MmlTvudu4V","__typename":"Text","sidekickLookup":{"richEyebrow":{"fieldName":"eyebrow"},"richTitle":{"fieldName":"title"},"richSubtitle":{"fieldName":"subtitle"},"contentId":"4n40ILWlIYT1MmlTvudu4V","contentTypeId":"text"},"variant":"default","align":"left","alignContent":"flex-start","colorscheme":"inherit","backgroundColor":"transparent","contentSize":"fullBleed","highlightColor":"yellow","eyebrowColor":"default","titleColor":"default","subtitleColor":"default","body":{"__typename":"RichText","json":{"data":{},"content":[{"data":{},"content":[{"data":{},"marks":[],"value":"Cyber Incident? ","nodeType":"text"},{"data":{"target":{"sys":{"id":"3AbJMa84YQOXJsSyYAkCQ8","type":"Link","linkType":"Entry"}}},"content":[],"nodeType":"embedded-entry-inline"},{"data":{},"marks":[{"type":"underline"}],"value":"","nodeType":"text"}],"nodeType":"heading-5"}],"nodeType":"document"},"links":{"entries":[{"id":"3AbJMa84YQOXJsSyYAkCQ8","__typename":"Link","sidekickLookup":{"subtitle":{"fieldName":"subtitle"},"contentId":"3AbJMa84YQOXJsSyYAkCQ8","contentTypeId":"link"},"text":"Get Help","href":"/report-a-claim","variant":"link","iconPosition":"Right","colorscheme":"blue","size":"medium"}]}}},{"id":"7bIkUPdMfOJtP0Y4AIo42k","__typename":"NavigationItem","sidekickLookup":{"contentId":"7bIkUPdMfOJtP0Y4AIo42k","contentTypeId":"navigationItem"},"variant":"localeGroupLabel","href":"#","subNavigation":[{"__typename":"NavigationItem","id":"4jJGsTDvfhgJp5OaspaXYS","sidekickLookup":{"contentId":"4jJGsTDvfhgJp5OaspaXYS","contentTypeId":"navigationItem"},"variant":"regular","text":"USA","href":"/en-us"},{"__typename":"NavigationItem","id":"5qmSyuaSB9obAj0e6nFUH0","sidekickLookup":{"contentId":"5qmSyuaSB9obAj0e6nFUH0","contentTypeId":"navigationItem"},"variant":"regular","text":"Canada","href":"/en-ca"},{"__typename":"NavigationItem","id":"1hA7G30aA1t70xnsZESdiV","sidekickLookup":{"contentId":"1hA7G30aA1t70xnsZESdiV","contentTypeId":"navigationItem"},"variant":"regular","text":"UK","href":"/en-gb","numWrap":2},{"__typename":"NavigationItem","id":"ZzfwZbldIjBncuFi1xhOr","sidekickLookup":{"contentId":"ZzfwZbldIjBncuFi1xhOr","contentTypeId":"navigationItem"},"variant":"regular","text":"Canada (French)","href":"/fr-ca","numWrap":2},{"__typename":"NavigationItem","id":"1ijCvWBWKk3jMI5NckghTk","sidekickLookup":{"contentId":"1ijCvWBWKk3jMI5NckghTk","contentTypeId":"navigationItem"},"variant":"regular","text":"Australia","href":"/au","numWrap":2},{"__typename":"NavigationItem","id":"2skcIDUChBxCF76QBHx3jI","sidekickLookup":{"contentId":"2skcIDUChBxCF76QBHx3jI","contentTypeId":"navigationItem"},"variant":"regular","text":"Deutschland","href":"/de","numWrap":2},{"__typename":"NavigationItem","id":"yMuTYvGQ6eGCghmAltJPp","sidekickLookup":{"contentId":"yMuTYvGQ6eGCghmAltJPp","contentTypeId":"navigationItem"},"variant":"regular","text":"Nordics","href":"/nordics","numWrap":2},{"__typename":"NavigationItem","id":"5H7PdIdhMxJlyKLNoJV0B6","sidekickLookup":{"contentId":"5H7PdIdhMxJlyKLNoJV0B6","contentTypeId":"navigationItem"},"variant":"regular","text":"France","href":"/fr","numWrap":2}]}],"mobileBannerActions":[{"id":"4n40ILWlIYT1MmlTvudu4V","__typename":"Text","sidekickLookup":{"richEyebrow":{"fieldName":"eyebrow"},"richTitle":{"fieldName":"title"},"richSubtitle":{"fieldName":"subtitle"},"contentId":"4n40ILWlIYT1MmlTvudu4V","contentTypeId":"text"},"variant":"default","align":"left","alignContent":"flex-start","colorscheme":"inherit","backgroundColor":"transparent","contentSize":"fullBleed","highlightColor":"yellow","eyebrowColor":"default","titleColor":"default","subtitleColor":"default","body":{"__typename":"RichText","json":{"data":{},"content":[{"data":{},"content":[{"data":{},"marks":[],"value":"Cyber Incident? ","nodeType":"text"},{"data":{"target":{"sys":{"id":"3AbJMa84YQOXJsSyYAkCQ8","type":"Link","linkType":"Entry"}}},"content":[],"nodeType":"embedded-entry-inline"},{"data":{},"marks":[{"type":"underline"}],"value":"","nodeType":"text"}],"nodeType":"heading-5"}],"nodeType":"document"},"links":{"entries":[{"id":"3AbJMa84YQOXJsSyYAkCQ8","__typename":"Link","sidekickLookup":{"subtitle":{"fieldName":"subtitle"},"contentId":"3AbJMa84YQOXJsSyYAkCQ8","contentTypeId":"link"},"text":"Get Help","href":"/report-a-claim","variant":"link","iconPosition":"Right","colorscheme":"blue","size":"medium"}]}}}],"search":{"id":"4b8uR5Im36zeDY48gRAXrO","__typename":"AlgoliaAutocomplete","sidekickLookup":{"filterTopics":{"fieldName":"filterTopics"},"filters":{"fieldName":"filters"},"contentId":"4b8uR5Im36zeDY48gRAXrO","contentTypeId":"algoliaAutocomplete"},"index":"global","variant":"header","placeholder":"Search"},"loginOptions":[{"id":"p9b39kPZBwH72syWsoeqn","__typename":"Link","sidekickLookup":{"subtitle":{"fieldName":"subtitle"},"contentId":"p9b39kPZBwH72syWsoeqn","contentTypeId":"link"},"text":"Broker Login","href":"https://platform.coalitioninc.com/login","variant":"link","icon":"chevron-right","iconPosition":"Right","colorscheme":"blue","size":"medium","openInNewWindow":true},{"id":"1mvjqMzgoj2ljOK7Hhmo6N","__typename":"Link","sidekickLookup":{"subtitle":{"fieldName":"subtitle"},"contentId":"1mvjqMzgoj2ljOK7Hhmo6N","contentTypeId":"link"},"text":"Coalition Control","href":"https://control.coalitioninc.com/","variant":"link","icon":"chevron-right","iconPosition":"Right","colorscheme":"blue","size":"medium","isModal":false}]},"footer":{"id":"Scz8R8HKPL65x5R3TDlEU","__typename":"Footer","sidekickLookup":{"localeSelector":{"fieldName":"localeSelector"},"action":{"fieldName":"action"},"contentId":"Scz8R8HKPL65x5R3TDlEU","contentTypeId":"footer"},"introContent":[{"id":"6QTri83FYts9OhymZ8drab","__typename":"Collection","sidekickLookup":{"richEyebrow":{"fieldName":"eyebrow"},"richTitle":{"fieldName":"title"},"richSubtitle":{"fieldName":"subtitle"},"contentId":"6QTri83FYts9OhymZ8drab","contentTypeId":"collection"},"colorscheme":"default","variant":"flexWrap","itemsVariant":"logo","itemsSpacing":0,"itemsGap":"5","itemsTextSpacing":6,"containerPy":0,"contentPy":0,"contentAlign":"center","backgroundSize":"fullBleed","backgroundColor":"transparent","cols":10,"highlightColor":"yellow","eyebrowColor":"bodyCopy","titleColor":"black","items":[{"id":"1xKDKbuseuwaEUWh021Ou2","__typename":"Card","sidekickLookup":{"richEyebrow":{"fieldName":"eyebrow"},"richTitle":{"fieldName":"title"},"richSubtitle":{"fieldName":"subtitle"},"category":{"fieldName":"category"},"contentId":"1xKDKbuseuwaEUWh021Ou2","contentTypeId":"card"},"colorscheme":"default","variant":"logo","textSpacing":6,"media":[{"__typename":"Media","id":"3kckPj3wo25wCDNR976JNp","title":"Footer Logo \u003e Arch","variant":"image","file":{"__typename":"Asset","url":"https://images.ctfassets.net/o2pgk9gufvga/3kckPj3wo25wCDNR976JNp/ecb7a1d4d234b9c8b22e849040a12f6e/arch.svg","fileName":"arch.svg","width":"139","height":"60"}}],"backgroundColor":"transparent","highlightColor":"yellow","titleColor":"black","subtitleColor":"bodyCopy","eyebrowColor":"bodyCopy"},{"id":"2eG64H8smZUx8uwpW2YYGT","__typename":"Card","sidekickLookup":{"richEyebrow":{"fieldName":"eyebrow"},"richTitle":{"fieldName":"title"},"richSubtitle":{"fieldName":"subtitle"},"category":{"fieldName":"category"},"contentId":"2eG64H8smZUx8uwpW2YYGT","contentTypeId":"card"},"colorscheme":"default","variant":"logo","textSpacing":6,"media":[{"__typename":"Media","id":"4WHOvpAxb5UsY9xgdxVeAT","title":"Footer Logo \u003e Lloyds","variant":"image","file":{"__typename":"Asset","url":"https://images.ctfassets.net/o2pgk9gufvga/4WHOvpAxb5UsY9xgdxVeAT/20e98e4a2274e6152ba0b416112f5916/lloyds.svg","fileName":"lloyds.svg","width":"237","height":"60"}}],"backgroundColor":"transparent","highlightColor":"yellow","titleColor":"black","subtitleColor":"bodyCopy","eyebrowColor":"bodyCopy"},{"id":"1fyaKizevkOJasEsJX0rYk","__typename":"Card","sidekickLookup":{"richEyebrow":{"fieldName":"eyebrow"},"richTitle":{"fieldName":"title"},"richSubtitle":{"fieldName":"subtitle"},"category":{"fieldName":"category"},"contentId":"1fyaKizevkOJasEsJX0rYk","contentTypeId":"card"},"colorscheme":"default","variant":"logo","textSpacing":6,"media":[{"__typename":"Media","id":"4FQjtRLKbAl1rpPAFtxJpo","title":"Footer Logo \u003e HDI","variant":"image","file":{"__typename":"Asset","url":"https://images.ctfassets.net/o2pgk9gufvga/4FQjtRLKbAl1rpPAFtxJpo/415c39733381a1baa0f47b60d08aa1c8/hdi.svg","fileName":"hdi.svg","width":"74","height":"60"}}],"backgroundColor":"transparent","highlightColor":"yellow","titleColor":"black","subtitleColor":"bodyCopy","eyebrowColor":"bodyCopy"}]}],"navigationItems":[{"id":"6L2kGLuhYHODIoffw2HRWZ","__typename":"NavigationItem","sidekickLookup":{"contentId":"6L2kGLuhYHODIoffw2HRWZ","contentTypeId":"navigationItem"},"variant":"default","text":"Insurance","href":"#","numWrap":2,"subNavigation":[{"__typename":"NavigationItem","id":"6Ytzz0MvDJ9oBiVVIrqdja","sidekickLookup":{"contentId":"6Ytzz0MvDJ9oBiVVIrqdja","contentTypeId":"navigationItem"},"variant":"regular","text":"Cyber Insurance","href":"/cyber-insurance","numWrap":2},{"__typename":"NavigationItem","id":"1yXMvR3aCcOsBxeMihWPgI","sidekickLookup":{"contentId":"1yXMvR3aCcOsBxeMihWPgI","contentTypeId":"navigationItem"},"variant":"regular","text":"Technology Errors \u0026 Omissions","href":"/technology-errors-and-omissions-insurance","numWrap":2}]},{"id":"6VwlFE4lJSBzfqcUkq5XW1","__typename":"NavigationItem","sidekickLookup":{"contentId":"6VwlFE4lJSBzfqcUkq5XW1","contentTypeId":"navigationItem"},"variant":"default","text":"Cybersecurity","href":"#","numWrap":2,"subNavigation":[{"__typename":"NavigationItem","id":"47qtogO5JtCGgH8pZ60kqG","sidekickLookup":{"contentId":"47qtogO5JtCGgH8pZ60kqG","contentTypeId":"navigationItem"},"variant":"regular","text":"Coalition Control","href":"/control","numWrap":2},{"__typename":"NavigationItem","id":"7fEXdCLixkzuNgf2LZavWt","sidekickLookup":{"contentId":"7fEXdCLixkzuNgf2LZavWt","contentTypeId":"navigationItem"},"variant":"regular","text":"Managed Detection \u0026 Response","href":"/security/managed-detection-response","numWrap":2},{"__typename":"NavigationItem","id":"6Gse7Qb88zblntSUAZDfPe","sidekickLookup":{"contentId":"6Gse7Qb88zblntSUAZDfPe","contentTypeId":"navigationItem"},"variant":"regular","text":"Coalition Incident Response","href":"/incident-response","numWrap":2},{"__typename":"NavigationItem","id":"5vfs1EZhFSh8ZnLeQZnzh","sidekickLookup":{"contentId":"5vfs1EZhFSh8ZnLeQZnzh","contentTypeId":"navigationItem"},"variant":"regular","text":"Security Awareness Training","href":"/security/security-awareness-training","numWrap":2}]},{"id":"2lPw6iN1hD9EG75BpZAlR","__typename":"NavigationItem","sidekickLookup":{"contentId":"2lPw6iN1hD9EG75BpZAlR","contentTypeId":"navigationItem"},"variant":"default","text":"Resources","href":"#","numWrap":2,"subNavigation":[{"__typename":"NavigationItem","id":"5zFXUJ7YuMcBbviGuLygls","sidekickLookup":{"contentId":"5zFXUJ7YuMcBbviGuLygls","contentTypeId":"navigationItem"},"variant":"regular","text":"Help Center","href":"https://help.coalitioninc.com/hc/en-us","numWrap":2},{"__typename":"NavigationItem","id":"5lLh054YHoef8OVyjzsOB7","sidekickLookup":{"contentId":"5lLh054YHoef8OVyjzsOB7","contentTypeId":"navigationItem"},"variant":"regular","text":"Case Studies","href":"/case-studies","numWrap":2},{"__typename":"NavigationItem","id":"76Pt0yB7SdoGMLEPuyoR1U","sidekickLookup":{"contentId":"76Pt0yB7SdoGMLEPuyoR1U","contentTypeId":"navigationItem"},"variant":"regular","text":"Industry Guides","href":"/industry","numWrap":2},{"__typename":"NavigationItem","id":"685GfvbVCbNfXJfWyZF7sr","sidekickLookup":{"contentId":"685GfvbVCbNfXJfWyZF7sr","contentTypeId":"navigationItem"},"variant":"regular","text":"Webinars","href":"https://www.coalitioninc.com/knowledge-center?filter=Webinars","numWrap":2},{"__typename":"NavigationItem","id":"26SIvanQEH2OhXtQBaEmzy","sidekickLookup":{"contentId":"26SIvanQEH2OhXtQBaEmzy","contentTypeId":"navigationItem"},"variant":"regular","text":"Activate Conference","href":"/activate","numWrap":2}]},{"id":"6lyjQXakPhqIfAFyMrWJeh","__typename":"NavigationItem","sidekickLookup":{"contentId":"6lyjQXakPhqIfAFyMrWJeh","contentTypeId":"navigationItem"},"variant":"default","text":"Company","href":"#","numWrap":2,"subNavigation":[{"__typename":"NavigationItem","id":"4wG0ZM2EbdY62JF0VfnaOP","sidekickLookup":{"contentId":"4wG0ZM2EbdY62JF0VfnaOP","contentTypeId":"navigationItem"},"variant":"regular","text":"About","href":"/about","numWrap":2},{"__typename":"NavigationItem","id":"3u0tt8UIBhb0vJEP5DY8BF","sidekickLookup":{"contentId":"3u0tt8UIBhb0vJEP5DY8BF","contentTypeId":"navigationItem"},"variant":"regular","text":"Careers","href":"https://www.coalitioninc.com/careers","numWrap":2},{"__typename":"NavigationItem","id":"52uVykuqsFs1A0amryUQOg","sidekickLookup":{"contentId":"52uVykuqsFs1A0amryUQOg","contentTypeId":"navigationItem"},"variant":"regular","text":"Newsroom","href":"/newsroom","numWrap":2},{"__typename":"NavigationItem","id":"7tgv3OYIK3C3tfhW8dtTNm","sidekickLookup":{"contentId":"7tgv3OYIK3C3tfhW8dtTNm","contentTypeId":"navigationItem"},"variant":"regular","text":"Blog","href":"/blog","numWrap":2},{"__typename":"NavigationItem","id":"3UZ80lxZPH2znulTs1na8L","sidekickLookup":{"contentId":"3UZ80lxZPH2znulTs1na8L","contentTypeId":"navigationItem"},"variant":"regular","text":"Licenses","href":"/legal/licenses","numWrap":2},{"__typename":"NavigationItem","id":"5ySnKuwfxN76mh8kdP9E3q","sidekickLookup":{"contentId":"5ySnKuwfxN76mh8kdP9E3q","contentTypeId":"navigationItem"},"variant":"default","text":"Contact","href":"/contact","numWrap":2,"subNavigation":[{"__typename":"NavigationItem","id":"7DcsCZYqrbcS9yTJd0I7tq","sidekickLookup":{"contentId":"7DcsCZYqrbcS9yTJd0I7tq","contentTypeId":"navigationItem"},"variant":"regular","text":"Report a Claim: +1 (833) 866-1337","href":"/tel:18338661337","numWrap":2},{"__typename":"NavigationItem","id":"59zXJrPP3caienlNXTmY0m","sidekickLookup":{"contentId":"59zXJrPP3caienlNXTmY0m","contentTypeId":"navigationItem"},"variant":"regular","text":"Email Support: help@coalitioninc.com","href":"/mailto:help@coalitioninc.com","numWrap":2}]}]}],"termsNavigationItems":[{"id":"1QguMub2cTzBWrqel8J04Z","__typename":"NavigationItem","sidekickLookup":{"contentId":"1QguMub2cTzBWrqel8J04Z","contentTypeId":"navigationItem"},"variant":"default","href":"#","numWrap":2,"subNavigation":[{"__typename":"NavigationItem","id":"6BAN8wuQgft5aDxOfJwbr3","sidekickLookup":{"contentId":"6BAN8wuQgft5aDxOfJwbr3","contentTypeId":"navigationItem"},"variant":"regular","text":"Sitemap","href":"/sitemap","numWrap":2},{"__typename":"NavigationItem","id":"5k7ita0xot4uGQXmamUq10","sidekickLookup":{"contentId":"5k7ita0xot4uGQXmamUq10","contentTypeId":"navigationItem"},"variant":"regular","text":"Legal","href":"/legal/terms"},{"__typename":"NavigationItem","id":"6vxiK30KGFqRApMIsspUMN","sidekickLookup":{"contentId":"6vxiK30KGFqRApMIsspUMN","contentTypeId":"navigationItem"},"variant":"regular","text":"Privacy","href":"/legal/privacy"},{"__typename":"NavigationItem","id":"3TCsiARgqWpdPriKuXIQwD","sidekickLookup":{"contentId":"3TCsiARgqWpdPriKuXIQwD","contentTypeId":"navigationItem"},"variant":"regular","text":"Disclaimers","href":"/legal/disclaimer","numWrap":2},{"__typename":"NavigationItem","id":"6YqybpglWJ297A778M307a","sidekickLookup":{"contentId":"6YqybpglWJ297A778M307a","contentTypeId":"navigationItem"},"variant":"regular","text":"Complaints Procedure","href":"/legal/complaints-procedure","numWrap":2},{"__typename":"Link","id":"1KXzspS0VlbzrjUs1T2Dw6","sidekickLookup":{"subtitle":{"fieldName":"subtitle"},"contentId":"1KXzspS0VlbzrjUs1T2Dw6","contentTypeId":"link"},"text":"Your Privacy Choices","href":"#!","variant":"link","iconPosition":"Right","colorscheme":"blue","size":"medium","isModal":false,"customAction":"openOneTrust","openInNewWindow":false}]}],"socialLinks":[{"id":"4kcrElXi9qWEcY7TROWkKe","__typename":"Link","sidekickLookup":{"subtitle":{"fieldName":"subtitle"},"contentId":"4kcrElXi9qWEcY7TROWkKe","contentTypeId":"link"},"href":"https://www.linkedin.com/company/coalitioninc/","variant":"button-contained","icon":"linkedin","iconPosition":"Right","colorscheme":"blue","size":"medium"},{"id":"7IHFADo6oThB85I2BixXSs","__typename":"Link","sidekickLookup":{"subtitle":{"fieldName":"subtitle"},"contentId":"7IHFADo6oThB85I2BixXSs","contentTypeId":"link"},"href":"https://x.com/SolveCyberRisk/","variant":"button-contained","icon":"twitter","iconPosition":"Right","colorscheme":"blue","size":"medium"},{"id":"2DZMgQ77RGsI2666RQr0y2","__typename":"Link","sidekickLookup":{"subtitle":{"fieldName":"subtitle"},"contentId":"2DZMgQ77RGsI2666RQr0y2","contentTypeId":"link"},"href":"https://www.youtube.com/channel/UCoc7ed_HZrl-Ln4ZCnDsuZA","variant":"button-contained","icon":"youtube","iconPosition":"Right","colorscheme":"blue","size":"medium"},{"id":"1akdmjWOlwCYq7rJVIt3xQ","__typename":"Link","sidekickLookup":{"subtitle":{"fieldName":"subtitle"},"contentId":"1akdmjWOlwCYq7rJVIt3xQ","contentTypeId":"link"},"href":"https://www.instagram.com/coalitioninc/","variant":"button-contained","icon":"instagram","iconPosition":"Right","colorscheme":"blue","size":"medium"},{"id":"4XKCJBjvEQTA2yVfAaHPtp","__typename":"Link","sidekickLookup":{"subtitle":{"fieldName":"subtitle"},"contentId":"4XKCJBjvEQTA2yVfAaHPtp","contentTypeId":"link"},"href":"https://www.facebook.com/coalitioninc/","variant":"button-contained","icon":"facebook","iconPosition":"Right","colorscheme":"blue","size":"medium"}],"logo":{"__typename":"Media","id":"4FsCKS3AtT1XrYg66OOkor","title":"Logo \u003e Coalition in white with transparent background ","variant":"image","file":{"__typename":"Asset","url":"https://images.ctfassets.net/o2pgk9gufvga/4FsCKS3AtT1XrYg66OOkor/88e55df16c8b77f057ccecdb678a133f/Coalition_Logo_Reverse.svg","fileName":"Coalition Logo Reverse.svg","width":"192","height":"49"}},"disclaimerText":{"__typename":"RichText","json":{"data":{},"content":[{"data":{},"content":[{"data":{},"marks":[],"value":"Insurance products are offered in Canada by Coalition Insurance Solutions Canada Inc. (“CIS Canada”), a licensed insurance producer in all Canadian provinces, with a principal place of business in Vancouver, British Columbia (Canada) license #LIC-2020-0020925-R01 acting on behalf of a number of unaffiliated insurance companies. Insurance products offered through CIS Canada may not be available in all provinces. ","nodeType":"text"},{"data":{},"marks":[],"value":"See","nodeType":"text"},{"data":{},"marks":[{"type":"bold"}],"value":" ","nodeType":"text"},{"data":{"target":{"sys":{"id":"43oalBmJlQAhUbegHVeYfr","type":"Link","linkType":"Entry"}}},"content":[{"data":{},"marks":[],"value":"licenses","nodeType":"text"}],"nodeType":"entry-hyperlink"},{"data":{},"marks":[{"type":"bold"}],"value":" ","nodeType":"text"},{"data":{},"marks":[],"value":"and ","nodeType":"text"},{"data":{"target":{"sys":{"id":"4ow7f0GYuLMvGm6stveEjt","type":"Link","linkType":"Entry"}}},"content":[{"data":{},"marks":[],"value":"disclaimers","nodeType":"text"}],"nodeType":"entry-hyperlink"},{"data":{},"marks":[],"value":".","nodeType":"text"},{"data":{},"marks":[],"value":" CIS Canada receives commission from insurers listed on each policy in connection with the sale of insurance to the policyholder. \n\nSecurity products and services are provided by Coalition Incident Response Inc. or its affiliates, including Coalition Incident Response Canada, Inc., dba Coalition Security. Coalition Security does not provide insurance products. The purchase of a Coalition insurance policy is not required to purchase any Coalition Security product or service. Non-insurance products and services may be provided by independent third parties. Coalition is the marketing name for the global operations of affiliates of Coalition, Inc.\n\nCopyright © 2025. All rights reserved. Coalition, Coalition Control and the Coalition logo are trademarks of Coalition, Inc.","nodeType":"text"}],"nodeType":"paragraph"}],"nodeType":"document"},"links":{"entries":[{"id":"43oalBmJlQAhUbegHVeYfr","__typename":"Link","sidekickLookup":{"href":{"fieldName":"slug"},"text":{"fieldName":"title"},"contentId":"43oalBmJlQAhUbegHVeYfr","contentTypeId":"page"},"text":"Licenses","href":"legal/licenses","colorscheme":"Parchment"},{"id":"4ow7f0GYuLMvGm6stveEjt","__typename":"Link","sidekickLookup":{"href":{"fieldName":"slug"},"text":{"fieldName":"title"},"contentId":"4ow7f0GYuLMvGm6stveEjt","contentTypeId":"page"},"text":"Disclaimer","href":"legal/disclaimer","colorscheme":"Parchment"}]}},"localeSelector":{"id":"7bIkUPdMfOJtP0Y4AIo42k","__typename":"NavigationItem","sidekickLookup":{"contentId":"7bIkUPdMfOJtP0Y4AIo42k","contentTypeId":"navigationItem"},"variant":"localeGroupLabel","href":"#","subNavigation":[{"__typename":"NavigationItem","id":"4jJGsTDvfhgJp5OaspaXYS","sidekickLookup":{"contentId":"4jJGsTDvfhgJp5OaspaXYS","contentTypeId":"navigationItem"},"variant":"regular","text":"USA","href":"/en-us"},{"__typename":"NavigationItem","id":"5qmSyuaSB9obAj0e6nFUH0","sidekickLookup":{"contentId":"5qmSyuaSB9obAj0e6nFUH0","contentTypeId":"navigationItem"},"variant":"regular","text":"Canada","href":"/en-ca"},{"__typename":"NavigationItem","id":"1hA7G30aA1t70xnsZESdiV","sidekickLookup":{"contentId":"1hA7G30aA1t70xnsZESdiV","contentTypeId":"navigationItem"},"variant":"regular","text":"UK","href":"/en-gb","numWrap":2},{"__typename":"NavigationItem","id":"ZzfwZbldIjBncuFi1xhOr","sidekickLookup":{"contentId":"ZzfwZbldIjBncuFi1xhOr","contentTypeId":"navigationItem"},"variant":"regular","text":"Canada (French)","href":"/fr-ca","numWrap":2},{"__typename":"NavigationItem","id":"1ijCvWBWKk3jMI5NckghTk","sidekickLookup":{"contentId":"1ijCvWBWKk3jMI5NckghTk","contentTypeId":"navigationItem"},"variant":"regular","text":"Australia","href":"/au","numWrap":2},{"__typename":"NavigationItem","id":"2skcIDUChBxCF76QBHx3jI","sidekickLookup":{"contentId":"2skcIDUChBxCF76QBHx3jI","contentTypeId":"navigationItem"},"variant":"regular","text":"Deutschland","href":"/de","numWrap":2},{"__typename":"NavigationItem","id":"yMuTYvGQ6eGCghmAltJPp","sidekickLookup":{"contentId":"yMuTYvGQ6eGCghmAltJPp","contentTypeId":"navigationItem"},"variant":"regular","text":"Nordics","href":"/nordics","numWrap":2},{"__typename":"NavigationItem","id":"5H7PdIdhMxJlyKLNoJV0B6","sidekickLookup":{"contentId":"5H7PdIdhMxJlyKLNoJV0B6","contentTypeId":"navigationItem"},"variant":"regular","text":"France","href":"/fr","numWrap":2}]}},"search":{"id":"2jEbsyd0pIanIHf28jWAke","__typename":"AlgoliaAutocomplete","sidekickLookup":{"filterTopics":{"fieldName":"filterTopics"},"filters":{"fieldName":"filters"},"contentId":"2jEbsyd0pIanIHf28jWAke","contentTypeId":"algoliaAutocomplete"},"index":"global","variant":"knowledgeCenter","placeholder":"Search blogs","contentModels":["blog","author"]},"blogHeader":{"id":"1Msp3tbzRsOCGMWzeNl5PH","__typename":"Header","sidekickLookup":{"loginOptions":{"fieldName":"loginOptions"},"contentId":"1Msp3tbzRsOCGMWzeNl5PH","contentTypeId":"header"},"variant":"default","colorscheme":"default","logoWidth":160,"navigationItems":[{"id":"1Z6JWRTczrfYh3zC8Y3Ipk","__typename":"NavigationItem","sidekickLookup":{"contentId":"1Z6JWRTczrfYh3zC8Y3Ipk","contentTypeId":"navigationItem"},"variant":"default","text":"Blog home","href":"/blog","numWrap":2},{"id":"6yhUWGuuHgkrejX2NyNKAF","__typename":"NavigationItem","sidekickLookup":{"text":{"fieldName":"title"},"contentId":"6yhUWGuuHgkrejX2NyNKAF","contentTypeId":"categoryBlogMainPage"},"title":"Cyber Insurance","text":"Cyber Insurance","href":"/blog/cyber-insurance"},{"id":"1oQLPz8KYXnHaP9XpxRJXF","__typename":"NavigationItem","sidekickLookup":{"text":{"fieldName":"title"},"contentId":"1oQLPz8KYXnHaP9XpxRJXF","contentTypeId":"categoryBlogMainPage"},"title":"Security","text":"Security","href":"/blog/security-labs"},{"id":"1IyhuivtoOB4VXGLL6npvv","__typename":"NavigationItem","sidekickLookup":{"text":{"fieldName":"title"},"contentId":"1IyhuivtoOB4VXGLL6npvv","contentTypeId":"categoryBlogMainPage"},"title":"Executive Risks","text":"Executive Risks","href":"/blog/executive-risks"},{"id":"5o3zOVGsrG43XvtFaIp74r","__typename":"NavigationItem","sidekickLookup":{"text":{"fieldName":"title"},"contentId":"5o3zOVGsrG43XvtFaIp74r","contentTypeId":"categoryBlogMainPage"},"title":"Broker Education","text":"Broker Education","href":"/blog/broker-education"},{"id":"2GdsuFHclJ7ueinzfMAQVN","__typename":"NavigationItem","sidekickLookup":{"text":{"fieldName":"title"},"contentId":"2GdsuFHclJ7ueinzfMAQVN","contentTypeId":"categoryBlogMainPage"},"title":"Life at Coalition","text":"Life at Coalition","href":"/blog/life-at-coalition"}],"search":{"id":"5QH87CNnVcUQUo4ifB1zse","__typename":"AlgoliaAutocomplete","sidekickLookup":{"filterTopics":{"fieldName":"filterTopics"},"filters":{"fieldName":"filters"},"contentId":"5QH87CNnVcUQUo4ifB1zse","contentTypeId":"algoliaAutocomplete"},"index":"resources","variant":"blogHeader","placeholder":"Search our blog","contentModels":["blog"]}},"categoryLink":{"id":"1oQLPz8KYXnHaP9XpxRJXF","__typename":"Link","sidekickLookup":{"text":{"fieldName":"title"},"contentId":"1oQLPz8KYXnHaP9XpxRJXF","contentTypeId":"categoryBlogMainPage"},"text":"Security","href":"/blog/security-labs"},"relatedBlogPosts":{"__typename":"Collection","sidekickLookup":{"richEyebrow":{"fieldName":"eyebrow"},"richTitle":{"fieldName":"title"},"richSubtitle":{"fieldName":"subtitle"},"contentTypeId":"Collection"},"colorscheme":"default","variant":"threePerRow","itemsVariant":"blogCompact","itemsSpacing":0,"itemsGap":"3","itemsTextSpacing":6,"containerPy":0,"contentPy":0,"contentAlign":"flex-start","backgroundSize":"fullBleed","backgroundColor":"transparent","viewMoreLink":{"__typename":"Link","sidekickLookup":{"subtitle":{"fieldName":"subtitle"},"contentTypeId":"Link"},"text":"See all articles","href":"/blog/security-labs","variant":"link","colorscheme":"default","size":"medium"},"cols":10,"highlightColor":"yellow","eyebrowColor":"default","titleColor":"default","richTitle":{"__typename":"RichText","json":{"nodeType":"document","data":{},"content":[{"nodeType":"heading-4","data":{},"content":[{"nodeType":"text","value":"Related blog posts","marks":[],"data":{}}]}]}},"items":[{"__typename":"AlgoliaHits","sidekickLookup":{"contentTypeId":"AlgoliaHits"},"index":"resources","hitsPerPage":3,"filters":"contentType:blog AND categorySlug:security-labs AND NOT objectID:5PihTH8zJdmKUyLrLzTasj_en-CA_prod","showPagination":false,"prePopulate":true,"items":[{"id":"3VpmFsPwFQTOjOnuqvG8ur","__typename":"Card","sidekickLookup":{"richEyebrow":{"fieldName":"eyebrow"},"richTitle":{"fieldName":"title"},"richSubtitle":{"fieldName":"subtitle"},"category":{"fieldName":"category"},"contentId":"3VpmFsPwFQTOjOnuqvG8ur","contentTypeId":"Card"},"colorscheme":"default","variant":"default","textSpacing":6,"media":[{"__typename":"Media","variant":"image","file":{"__typename":"Asset","url":"https://images.ctfassets.net/o2pgk9gufvga/WmSCBlgChRPMGvvZBport/1bed2c9fe409cc0e65426c6550daf3c0/Coalition_Security_Alert-React2Shell.png","fileName":"Coalition Security Alert-React2Shell.png","width":"2400","height":"1256"}}],"actions":[{"id":"3VpmFsPwFQTOjOnuqvG8ur","__typename":"Link","sidekickLookup":{"subtitle":{"fieldName":"subtitle"},"contentId":"3VpmFsPwFQTOjOnuqvG8ur","contentTypeId":"Link"},"text":"Read Now","href":"/blog/security-labs/security-alert-critical-react2shell-vulnerability","variant":"link","icon":"chevron-right","iconPosition":"right","colorscheme":"default","size":"medium","openInNewWindow":true}],"link":{"id":"3VpmFsPwFQTOjOnuqvG8ur","__typename":"Link","sidekickLookup":{"subtitle":{"fieldName":"subtitle"},"contentId":"3VpmFsPwFQTOjOnuqvG8ur","contentTypeId":"Link"},"href":"/blog/security-labs/security-alert-critical-react2shell-vulnerability","variant":"link","colorscheme":"default","size":"medium","openInNewWindow":true},"backgroundColor":"transparent","category":{"href":"/blog/security-labs","title":"Security","slug":"security-labs"},"highlightColor":"yellow","titleColor":"default","subtitleColor":"default","eyebrowColor":"default","richEyebrow":{"__typename":"RichText","json":{"nodeType":"document","data":{},"content":[{"nodeType":"heading-3","data":{},"content":[{"nodeType":"text","value":"Blog","marks":[{"type":"bold"}],"data":{}}]}]}},"richSubtitle":{"__typename":"RichText","json":{"nodeType":"document","data":{},"content":[{"nodeType":"heading-3","data":{},"content":[{"nodeType":"text","value":"Patch Immediately: Critical Vulnerability Dubbed 'React2Shell'","marks":[{"type":"bold"}],"data":{}}]}]}},"body":{"__typename":"RichText","json":{"nodeType":"document","data":{},"content":[{"nodeType":"heading-5","data":{},"content":[{"nodeType":"text","value":"Coalition notified policyholders about a new critical vulnerability impacting React and Next.js applications that allows RCE without authentication.","marks":[],"data":{}}]},{"nodeType":"embedded-entry-block","data":{"target":{"sys":{"id":"2iJvTB81De4R9uz3UhXWrj","linkType":"Entry","type":"Link"}}},"content":[]}]},"links":{"entries":[{"id":"2iJvTB81De4R9uz3UhXWrj","__typename":"BlogAuthor","image":{"__typename":"Media","variant":"image","file":{"__typename":"Asset","url":"https://images.ctfassets.net/o2pgk9gufvga/5pZaD7pX3ttyPWcIgWkgE6/0fd7940657b4c50b391a3e730537be3a/Joe_Toomey_-_2019.png","fileName":"Joe Toomey - 2019.png","width":"560","height":"560"}},"name":"Joe Toomey","pubDate":"December 05, 2025","slug":"/blog/author/joe-toomey"}]}}},{"id":"6VVv0Y2sNhq7b9RGSLMKjn","__typename":"Card","sidekickLookup":{"richEyebrow":{"fieldName":"eyebrow"},"richTitle":{"fieldName":"title"},"richSubtitle":{"fieldName":"subtitle"},"category":{"fieldName":"category"},"contentId":"6VVv0Y2sNhq7b9RGSLMKjn","contentTypeId":"Card"},"colorscheme":"default","variant":"default","textSpacing":6,"media":[{"__typename":"Media","variant":"image","file":{"__typename":"Asset","url":"https://images.ctfassets.net/o2pgk9gufvga/5TOIHJ2y11iqj1otSLLoYn/29bd949eaadbd55db68e58ba049f46ee/Blog_Shades_of_Gray__The_Risk_of_Doing_Business_with_Hackers.png","fileName":"Blog_Shades of Gray_ \u2028The Risk of Doing Business with Hackers.png","width":"2400","height":"1256"}}],"actions":[{"id":"6VVv0Y2sNhq7b9RGSLMKjn","__typename":"Link","sidekickLookup":{"subtitle":{"fieldName":"subtitle"},"contentId":"6VVv0Y2sNhq7b9RGSLMKjn","contentTypeId":"Link"},"text":"Read Now","href":"/blog/security-labs/gray-hat-hackers","variant":"link","icon":"chevron-right","iconPosition":"right","colorscheme":"default","size":"medium","openInNewWindow":true}],"link":{"id":"6VVv0Y2sNhq7b9RGSLMKjn","__typename":"Link","sidekickLookup":{"subtitle":{"fieldName":"subtitle"},"contentId":"6VVv0Y2sNhq7b9RGSLMKjn","contentTypeId":"Link"},"href":"/blog/security-labs/gray-hat-hackers","variant":"link","colorscheme":"default","size":"medium","openInNewWindow":true},"backgroundColor":"transparent","category":{"href":"/blog/security-labs","title":"Security","slug":"security-labs"},"highlightColor":"yellow","titleColor":"default","subtitleColor":"default","eyebrowColor":"default","richEyebrow":{"__typename":"RichText","json":{"nodeType":"document","data":{},"content":[{"nodeType":"heading-3","data":{},"content":[{"nodeType":"text","value":"Blog","marks":[{"type":"bold"}],"data":{}}]}]}},"richSubtitle":{"__typename":"RichText","json":{"nodeType":"document","data":{},"content":[{"nodeType":"heading-3","data":{},"content":[{"nodeType":"text","value":"Shades of Gray: The Risk of Doing Business with Hackers","marks":[{"type":"bold"}],"data":{}}]}]}},"body":{"__typename":"RichText","json":{"nodeType":"document","data":{},"content":[{"nodeType":"heading-5","data":{},"content":[{"nodeType":"text","value":"Gray hat hackers may appear altruistic, but attitudes can turn quickly when money is involved. How should businesses decide who to trust?","marks":[],"data":{}}]},{"nodeType":"embedded-entry-block","data":{"target":{"sys":{"id":"5g5OzzveULcxIon1xadouA","linkType":"Entry","type":"Link"}}},"content":[]}]},"links":{"entries":[{"id":"5g5OzzveULcxIon1xadouA","__typename":"BlogAuthor","image":{"__typename":"Media","variant":"image","file":{"__typename":"Asset","url":"https://images.ctfassets.net/o2pgk9gufvga/5hfTpeydczKNnZcBFADgTf/51c09fdc599498d1019a0f95f3f18db5/JessicaS.jpeg","fileName":"JessicaS.jpeg","width":"800","height":"800"}},"name":"Jessica Stainer","pubDate":"November 24, 2025","slug":"/blog/author/jessica-stainer"}]}}},{"id":"2ZeEt4tJAMko1ZPGCBxhbL","__typename":"Card","sidekickLookup":{"richEyebrow":{"fieldName":"eyebrow"},"richTitle":{"fieldName":"title"},"richSubtitle":{"fieldName":"subtitle"},"category":{"fieldName":"category"},"contentId":"2ZeEt4tJAMko1ZPGCBxhbL","contentTypeId":"Card"},"colorscheme":"default","variant":"default","textSpacing":6,"media":[{"__typename":"Media","variant":"image","file":{"__typename":"Asset","url":"https://images.ctfassets.net/o2pgk9gufvga/7j6hi1rNvYhcuiqIFnbqYd/2c71c1471ee689d13b7ba3f5dc2afd6a/Blog_Risky_Tech_Ranking-Q3.png","fileName":"Blog_Risky Tech Ranking-Q3.png","width":"2400","height":"1256"}}],"actions":[{"id":"2ZeEt4tJAMko1ZPGCBxhbL","__typename":"Link","sidekickLookup":{"subtitle":{"fieldName":"subtitle"},"contentId":"2ZeEt4tJAMko1ZPGCBxhbL","contentTypeId":"Link"},"text":"Read Now","href":"/blog/security-labs/risky-tech-ranking-q3-2025-updates","variant":"link","icon":"chevron-right","iconPosition":"right","colorscheme":"default","size":"medium","openInNewWindow":true}],"link":{"id":"2ZeEt4tJAMko1ZPGCBxhbL","__typename":"Link","sidekickLookup":{"subtitle":{"fieldName":"subtitle"},"contentId":"2ZeEt4tJAMko1ZPGCBxhbL","contentTypeId":"Link"},"href":"/blog/security-labs/risky-tech-ranking-q3-2025-updates","variant":"link","colorscheme":"default","size":"medium","openInNewWindow":true},"backgroundColor":"transparent","category":{"href":"/blog/security-labs","title":"Security","slug":"security-labs"},"highlightColor":"yellow","titleColor":"default","subtitleColor":"default","eyebrowColor":"default","richEyebrow":{"__typename":"RichText","json":{"nodeType":"document","data":{},"content":[{"nodeType":"heading-3","data":{},"content":[{"nodeType":"text","value":"Blog","marks":[{"type":"bold"}],"data":{}}]}]}},"richSubtitle":{"__typename":"RichText","json":{"nodeType":"document","data":{},"content":[{"nodeType":"heading-3","data":{},"content":[{"nodeType":"text","value":"Risky Tech Ranking: Q3 2025 Updates","marks":[{"type":"bold"}],"data":{}}]}]}},"body":{"__typename":"RichText","json":{"nodeType":"document","data":{},"content":[{"nodeType":"heading-5","data":{},"content":[{"nodeType":"text","value":"See how Coalition’s Risky Tech Ranking evolved in Q3 2025 with updates on the number of vendors scored, contributing vulnerabilities, Vendor Scores, and more.","marks":[],"data":{}}]},{"nodeType":"embedded-entry-block","data":{"target":{"sys":{"id":"ma9OEoCYNjlsCrkn75i3Q","linkType":"Entry","type":"Link"}}},"content":[]}]},"links":{"entries":[{"id":"ma9OEoCYNjlsCrkn75i3Q","__typename":"BlogAuthor","image":{"__typename":"Media","variant":"image","file":{"__typename":"Asset","url":"https://images.ctfassets.net/o2pgk9gufvga/3otDD1dYfEIsrBRIAF5cju/f2107e236ae0bd5088f12f2d064244a1/Lucio_Fernandez-Arjona.jpg","fileName":"Lucio_Fernandez-Arjona.jpg","width":"1608","height":"1608"}},"name":"Lucio Fernandez-Arjona","pubDate":"November 07, 2025","slug":"/blog/author/lucio-fernandez-arjona"}]}}}]}]},"excludedLocales":["en-GB"],"includedLocales":["en-US","en-CA","fr-CA"],"showBanner":true,"bannerTitle":"Join our next Boost Your Cybersecurity IQ Skills Session: Top 5 Security Exposures Driving Claims.","bannerBackgroundColor":"active.blue","bannerLink":{"id":"1HXajiBOw8lTkT4I40vfhi","__typename":"Link","sidekickLookup":{"subtitle":{"fieldName":"subtitle"},"contentId":"1HXajiBOw8lTkT4I40vfhi","contentTypeId":"link"},"text":"Read More","href":"https://www.coalitioninc.com/blog/security-labs/why-we-acquired-wirespeed","variant":"button-text","icon":"chevron-right","iconPosition":"Right","colorscheme":"turquoise","size":"small","isModal":false,"openInNewWindow":true},"bannerSidekickLookup":{"contentId":"3p4OFmbUQN0ObvYgONl7D5","contentTypeId":"site"},"categoryPageSlug":"security-labs"}},"localizationLookup":[{"id":"2SCXcXU7gufG2Ha20STOIo","__typename":"CommonResource","sidekickLookup":{"contentId":"2SCXcXU7gufG2Ha20STOIo","contentTypeId":"commonResource"},"key":"job.filters.departments.label","reference":null,"shortText":"Departments"},{"id":"2cMuHHUePd9YUhKw1XQjxX","__typename":"CommonResource","sidekickLookup":{"contentId":"2cMuHHUePd9YUhKw1XQjxX","contentTypeId":"commonResource"},"key":"control.signup.success.notYourEmail.text","reference":null,"shortText":"Not your email?"},{"id":"3YuAx9VGanbAmTOfsHG3rb","__typename":"CommonResource","sidekickLookup":{"contentId":"3YuAx9VGanbAmTOfsHG3rb","contentTypeId":"commonResource"},"key":"control.signup.login.text","reference":{"id":"6sPtrceMyxlLJUtoLROay9","__typename":"Text","sidekickLookup":{"richEyebrow":{"fieldName":"eyebrow"},"richTitle":{"fieldName":"title"},"richSubtitle":{"fieldName":"subtitle"},"contentId":"6sPtrceMyxlLJUtoLROay9","contentTypeId":"text"},"variant":"default","align":"left","alignContent":"flex-start","styles":null,"colorscheme":"inherit","backgroundColor":"transparent","contentSize":"fullBleed","highlightColor":"yellow","eyebrowColor":"bodyCopy","titleColor":"black","subtitleColor":"bodyCopy","tableVariant":"default","anchorId":null,"richEyebrow":null,"richTitle":null,"richSubtitle":null,"body":{"id":null,"__typename":"RichText","json":{"data":{},"content":[{"data":{},"content":[{"data":{},"marks":[],"value":"Already have a Control account? ","nodeType":"text"},{"data":{"target":{"sys":{"id":"72TtoMFsGRgyLwQoz4Omxa","type":"Link","linkType":"Entry"}}},"content":[],"nodeType":"embedded-entry-inline"},{"data":{},"marks":[],"value":"","nodeType":"text"}],"nodeType":"heading-4"}],"nodeType":"document"},"links":{"entries":[{"id":"72TtoMFsGRgyLwQoz4Omxa","__typename":"Link","sidekickLookup":{"subtitle":{"fieldName":"subtitle"},"contentId":"72TtoMFsGRgyLwQoz4Omxa","contentTypeId":"link"},"text":"Log In","subText":null,"href":"https://control.coalitioninc.com/","variant":"link","icon":"chevron-right","iconPosition":"Right","colorscheme":"white","size":"medium","isModal":false,"customAction":null,"linkedContent":null,"gatedForm":null,"openInNewWindow":true,"subtitle":null}],"assets":[]}}},"shortText":"Control Signup \u003e Login Text"},{"id":"3cygw8BLdCGVAWEZ6YbzRK","__typename":"CommonResource","sidekickLookup":{"contentId":"3cygw8BLdCGVAWEZ6YbzRK","contentTypeId":"commonResource"},"key":"control.signup.companyName.error.empty","reference":null,"shortText":"Please provide your company name."},{"id":"3uubiI5VuTsO8TrwU45xxo","__typename":"CommonResource","sidekickLookup":{"contentId":"3uubiI5VuTsO8TrwU45xxo","contentTypeId":"commonResource"},"key":"brokers.signup.submit.text","reference":null,"shortText":"Continue"},{"id":"6K0ND7AdzRBBgPydZ4LbVy","__typename":"CommonResource","sidekickLookup":{"contentId":"6K0ND7AdzRBBgPydZ4LbVy","contentTypeId":"commonResource"},"key":"brokers.signup.last_name.placeholder","reference":null,"shortText":"Last Name"},{"id":"7GSaRPWnwMLr5FdSDn1gDd","__typename":"CommonResource","sidekickLookup":{"contentId":"7GSaRPWnwMLr5FdSDn1gDd","contentTypeId":"commonResource"},"key":"control.signup.firstName.placeholder","reference":null,"shortText":"First Name"},{"id":"2W4LN0RfI22FXRmMa0YHpG","__typename":"CommonResource","sidekickLookup":{"contentId":"2W4LN0RfI22FXRmMa0YHpG","contentTypeId":"commonResource"},"key":"brokers.signup.agree.error","reference":null,"shortText":"Please accept our terms and privacy conditions before proceeding."},{"id":"5lcMXXFyJ2xtDnBO4rlazU","__typename":"CommonResource","sidekickLookup":{"contentId":"5lcMXXFyJ2xtDnBO4rlazU","contentTypeId":"commonResource"},"key":"control.signup.success.verifyText","reference":null,"shortText":"We've sent a verification link to "},{"id":"6kQUKHhOr3GRcICDLHGBli","__typename":"CommonResource","sidekickLookup":{"contentId":"6kQUKHhOr3GRcICDLHGBli","contentTypeId":"commonResource"},"key":"control.signup.lastName.error.empty","reference":null,"shortText":"Please provide your last name."},{"id":"6y3FhgiYwcanKDHQVkSuRO","__typename":"CommonResource","sidekickLookup":{"contentId":"6y3FhgiYwcanKDHQVkSuRO","contentTypeId":"commonResource"},"key":"brokers.signup.agency.label","reference":null,"shortText":"Is your agency a wholesale or retail agency?"},{"id":"1cT4VD6vvzdOYhzn1hMiM1","__typename":"CommonResource","sidekickLookup":{"contentId":"1cT4VD6vvzdOYhzn1hMiM1","contentTypeId":"commonResource"},"key":"control.signup.privacy.label","reference":null,"shortText":"Control Signup \u003e Privacy Terms Label"},{"id":"3uSzq5e0VmzEP6sZNk6GTE","__typename":"CommonResource","sidekickLookup":{"contentId":"3uSzq5e0VmzEP6sZNk6GTE","contentTypeId":"commonResource"},"key":"control.signup.email.error.invalid","reference":null,"shortText":"Please provide valid email address."},{"id":"4RW32EMw1OncBOvUnZNYcQ","__typename":"CommonResource","sidekickLookup":{"contentId":"4RW32EMw1OncBOvUnZNYcQ","contentTypeId":"commonResource"},"key":"brokers.signup.first_name.placeholder","reference":null,"shortText":"First Name"},{"id":"5hbKpHthJoQoN3CtRE59QU","__typename":"CommonResource","sidekickLookup":{"contentId":"5hbKpHthJoQoN3CtRE59QU","contentTypeId":"commonResource"},"key":"brokers.signup.email.placeholder","reference":null,"shortText":"Work Email"},{"id":"748ObR7DvoMYrTVE5U4f52","__typename":"CommonResource","sidekickLookup":{"contentId":"748ObR7DvoMYrTVE5U4f52","contentTypeId":"commonResource"},"key":"control.signup.agree.error","reference":null,"shortText":"Please accept our terms and privacy conditions before proceeding."},{"id":"789MFpwENpHRpC5efk8a4k","__typename":"CommonResource","sidekickLookup":{"contentId":"789MFpwENpHRpC5efk8a4k","contentTypeId":"commonResource"},"key":"control.signup.email.error.empty","reference":null,"shortText":"Please provide your business email address."},{"id":"7u4BxowbMcXPqaHZxXbZBv","__typename":"CommonResource","sidekickLookup":{"contentId":"7u4BxowbMcXPqaHZxXbZBv","contentTypeId":"commonResource"},"key":"job.stats.openings.label","reference":null,"shortText":"openings"},{"id":"CprclQOmcNQD3J6Z0iAet","__typename":"CommonResource","sidekickLookup":{"contentId":"CprclQOmcNQD3J6Z0iAet","contentTypeId":"commonResource"},"key":"brokers.signup.phone.placeholder","reference":null,"shortText":"Phone"},{"id":"24WptWGXdefK4ZoC9POu4a","__typename":"CommonResource","sidekickLookup":{"contentId":"24WptWGXdefK4ZoC9POu4a","contentTypeId":"commonResource"},"key":"job.stats.teams.label","reference":null,"shortText":"offices"},{"id":"2HPmm64EJ4Wy9SgE9wH2x4","__typename":"CommonResource","sidekickLookup":{"contentId":"2HPmm64EJ4Wy9SgE9wH2x4","contentTypeId":"commonResource"},"key":"blog.details.relatedPosts.title","reference":null,"shortText":"Related blog posts"},{"id":"3pFGQVHFIm6yxABlQ7c39x","__typename":"CommonResource","sidekickLookup":{"contentId":"3pFGQVHFIm6yxABlQ7c39x","contentTypeId":"commonResource"},"key":"blog.details.relatedPosts.seeAll","reference":null,"shortText":"See all articles"},{"id":"4x4FA1zzZNl0RLjhX4JwJm","__typename":"CommonResource","sidekickLookup":{"contentId":"4x4FA1zzZNl0RLjhX4JwJm","contentTypeId":"commonResource"},"key":"job.filters.locations.label","reference":null,"shortText":"Locations"},{"id":"75BtFbvWsPeCs9urB1L23W","__typename":"CommonResource","sidekickLookup":{"contentId":"75BtFbvWsPeCs9urB1L23W","contentTypeId":"commonResource"},"key":"control.signup.lastName.placeholder","reference":null,"shortText":"Last Name"},{"id":"5YencFQQT6InEfLjDnIBWZ","__typename":"CommonResource","sidekickLookup":{"contentId":"5YencFQQT6InEfLjDnIBWZ","contentTypeId":"commonResource"},"key":"job.filters.teams.label","reference":null,"shortText":"Offices"},{"id":"nsHNuKMWhRjC9RGzYlIby","__typename":"CommonResource","sidekickLookup":{"contentId":"nsHNuKMWhRjC9RGzYlIby","contentTypeId":"commonResource"},"key":"algolia.announcements.newsCoverage.label","reference":null,"shortText":"News Coverage"},{"id":"37eiNqSTlCKETu27IZO9Be","__typename":"CommonResource","sidekickLookup":{"contentId":"37eiNqSTlCKETu27IZO9Be","contentTypeId":"commonResource"},"key":"job.stats.across.label","reference":null,"shortText":"across"},{"id":"8dfO98HXJAcUhhvWlTzsr","__typename":"CommonResource","sidekickLookup":{"contentId":"8dfO98HXJAcUhhvWlTzsr","contentTypeId":"commonResource"},"key":"algolia.announcements.pressReleases.label","reference":null,"shortText":"Press Releases"},{"id":"tbDHdOLW2jFl5l5mse1qq","__typename":"CommonResource","sidekickLookup":{"contentId":"tbDHdOLW2jFl5l5mse1qq","contentTypeId":"commonResource"},"key":"control.signup.agree.terms","reference":{"id":"6AjbISYaykNxcLc2i3pRpi","__typename":"Text","sidekickLookup":{"richEyebrow":{"fieldName":"eyebrow"},"richTitle":{"fieldName":"title"},"richSubtitle":{"fieldName":"subtitle"},"contentId":"6AjbISYaykNxcLc2i3pRpi","contentTypeId":"text"},"variant":"default","align":"left","alignContent":"flex-start","styles":null,"colorscheme":"inherit","backgroundColor":"active.black","contentSize":"fullBleed","highlightColor":"yellow","eyebrowColor":"bodyCopy","titleColor":"black","subtitleColor":"bodyCopy","tableVariant":"default","anchorId":null,"richEyebrow":null,"richTitle":null,"richSubtitle":null,"body":{"id":null,"__typename":"RichText","json":{"data":{},"content":[{"data":{},"content":[{"data":{},"marks":[],"value":"I agree and consent to my email being stored and used to receive from Coalition, Coalition Insurance Solutions GmbH and Coalition Incident Response newsletters, which includes promotions, webinars, surveys and events, about Coalition cyber insurance and cybersecurity products and services available in Germany via email. I can revoke my consent at any time with effect for the future. I will find an unsubscribe link in every email or can write an email to: (email to be provided).","nodeType":"text"}],"nodeType":"paragraph"}],"nodeType":"document"},"links":{"entries":[],"assets":[]}}},"shortText":"Control Signup \u003e Marketing Consent"},{"id":"1cPouweijyYPdjHz90ThJi","__typename":"CommonResource","sidekickLookup":{"contentId":"1cPouweijyYPdjHz90ThJi","contentTypeId":"commonResource"},"key":"control.signup.agree.label","reference":{"id":"szttfIQ5oQ0xDf2QCQHO5","__typename":"Text","sidekickLookup":{"richEyebrow":{"fieldName":"eyebrow"},"richTitle":{"fieldName":"title"},"richSubtitle":{"fieldName":"subtitle"},"contentId":"szttfIQ5oQ0xDf2QCQHO5","contentTypeId":"text"},"variant":"default","align":"left","alignContent":"flex-start","styles":null,"colorscheme":"inherit","backgroundColor":"active.black","contentSize":"fullBleed","highlightColor":"yellow","eyebrowColor":"bodyCopy","titleColor":"black","subtitleColor":"bodyCopy","tableVariant":"default","anchorId":null,"richEyebrow":null,"richTitle":null,"richSubtitle":null,"body":{"id":null,"__typename":"RichText","json":{"data":{},"content":[{"data":{},"content":[{"data":{},"marks":[],"value":"By checking this box, you have read and agree to Coalition’s ","nodeType":"text"},{"data":{"target":{"sys":{"id":"5cIyfaYLoBfum8cdIcFLrJ","type":"Link","linkType":"Entry"}}},"content":[],"nodeType":"embedded-entry-inline"},{"data":{},"marks":[],"value":". Please read our ","nodeType":"text"},{"data":{"target":{"sys":{"id":"3yXsLW71HZcXk1rKBiGF2D","type":"Link","linkType":"Entry"}}},"content":[],"nodeType":"embedded-entry-inline"},{"data":{},"marks":[],"value":" explaining how Coalition processes personal information.","nodeType":"text"}],"nodeType":"paragraph"}],"nodeType":"document"},"links":{"entries":[{"id":"5cIyfaYLoBfum8cdIcFLrJ","__typename":"Link","sidekickLookup":{"subtitle":{"fieldName":"subtitle"},"contentId":"5cIyfaYLoBfum8cdIcFLrJ","contentTypeId":"link"},"text":"Terms of Service","subText":null,"href":"/control/legal/terms","variant":"link","icon":null,"iconPosition":"Right","colorscheme":"blue","size":"medium","isModal":false,"customAction":null,"linkedContent":{},"gatedForm":null,"openInNewWindow":true,"subtitle":null},{"id":"3yXsLW71HZcXk1rKBiGF2D","__typename":"Link","sidekickLookup":{"subtitle":{"fieldName":"subtitle"},"contentId":"3yXsLW71HZcXk1rKBiGF2D","contentTypeId":"link"},"text":"Privacy Policy","subText":null,"href":"/legal/privacy","variant":"link","icon":null,"iconPosition":"Right","colorscheme":"white","size":"medium","isModal":false,"customAction":null,"linkedContent":{},"gatedForm":null,"openInNewWindow":true,"subtitle":null}],"assets":[]}}},"shortText":"Control Signup \u003e Agree Terms"},{"id":"1uqPLVa2hCm3oijUGGJYX8","__typename":"CommonResource","sidekickLookup":{"contentId":"1uqPLVa2hCm3oijUGGJYX8","contentTypeId":"commonResource"},"key":"resources.imagePlaceholder","reference":null,"shortText":null},{"id":"50763MQ9SuOVXvpTS40vcT","__typename":"CommonResource","sidekickLookup":{"contentId":"50763MQ9SuOVXvpTS40vcT","contentTypeId":"commonResource"},"key":"brokers.signup.privacy.label","reference":{"id":"3OLM5XeBsWbKaJuJ3uQscE","__typename":"Text","sidekickLookup":{"richEyebrow":{"fieldName":"eyebrow"},"richTitle":{"fieldName":"title"},"richSubtitle":{"fieldName":"subtitle"},"contentId":"3OLM5XeBsWbKaJuJ3uQscE","contentTypeId":"text"},"variant":"default","align":"left","alignContent":"flex-start","styles":null,"colorscheme":"inherit","backgroundColor":"transparent","contentSize":"fullBleed","highlightColor":"yellow","eyebrowColor":"bodyCopy","titleColor":"black","subtitleColor":"bodyCopy","tableVariant":"default","anchorId":null,"richEyebrow":null,"richTitle":null,"richSubtitle":null,"body":{"id":null,"__typename":"RichText","json":{"nodeType":"document","data":{},"content":[{"nodeType":"paragraph","data":{},"content":[{"nodeType":"text","value":"Please read our ","marks":[],"data":{}},{"nodeType":"embedded-entry-inline","data":{"target":{"sys":{"id":"3yXsLW71HZcXk1rKBiGF2D","type":"Link","linkType":"Entry"}}},"content":[]},{"nodeType":"text","value":" explaining how Coalition processes personal information.","marks":[],"data":{}}]}]},"links":{"entries":[{"id":"3yXsLW71HZcXk1rKBiGF2D","__typename":"Link","sidekickLookup":{"subtitle":{"fieldName":"subtitle"},"contentId":"3yXsLW71HZcXk1rKBiGF2D","contentTypeId":"link"},"text":"Privacy Policy","subText":null,"href":"/legal/privacy","variant":"link","icon":null,"iconPosition":"Right","colorscheme":"white","size":"medium","isModal":false,"customAction":null,"linkedContent":{},"gatedForm":null,"openInNewWindow":true,"subtitle":null}],"assets":[]}}},"shortText":null},{"id":"6LrSAOiX0SUunGfIa85gbG","__typename":"CommonResource","sidekickLookup":{"contentId":"6LrSAOiX0SUunGfIa85gbG","contentTypeId":"commonResource"},"key":"job.clearAll.label","reference":null,"shortText":"Clear all"},{"id":"7sV7pvMtHQefLwzwkGkpvz","__typename":"CommonResource","sidekickLookup":{"contentId":"7sV7pvMtHQefLwzwkGkpvz","contentTypeId":"commonResource"},"key":"control.signup.email.error.business","reference":null,"shortText":"Provided email is not a valid business email"},{"id":"5grTfiC0ikcaNZpoZDwQgl","__typename":"CommonResource","sidekickLookup":{"contentId":"5grTfiC0ikcaNZpoZDwQgl","contentTypeId":"commonResource"},"key":"control.signup.firstName.error.empty","reference":null,"shortText":"Please provide your first name."},{"id":"1T0hR3FTpnRtDMbYVqGtY7","__typename":"CommonResource","sidekickLookup":{"contentId":"1T0hR3FTpnRtDMbYVqGtY7","contentTypeId":"commonResource"},"key":"control.signup.success.header","reference":{"id":"1wHx8UQJk7Xa6qFXlav0oc","__typename":"Text","sidekickLookup":{"richEyebrow":{"fieldName":"eyebrow"},"richTitle":{"fieldName":"title"},"richSubtitle":{"fieldName":"subtitle"},"contentId":"1wHx8UQJk7Xa6qFXlav0oc","contentTypeId":"text"},"variant":"default","align":"left","alignContent":"flex-start","styles":null,"colorscheme":"inherit","backgroundColor":"transparent","contentSize":"fullBleed","highlightColor":"yellow","eyebrowColor":"bodyCopy","titleColor":"black","subtitleColor":"bodyCopy","tableVariant":"default","anchorId":null,"richEyebrow":null,"richTitle":{"id":null,"__typename":"RichText","json":{"data":{},"content":[{"data":{},"content":[{"data":{},"marks":[],"value":"Check your email.","nodeType":"text"}],"nodeType":"heading-2"}],"nodeType":"document"}},"richSubtitle":null,"body":null},"shortText":"Control Signup \u003e Success Header"},{"id":"1dUrvgMVmEUsbNYoiYnEwt","__typename":"CommonResource","sidekickLookup":{"contentId":"1dUrvgMVmEUsbNYoiYnEwt","contentTypeId":"commonResource"},"key":"brokers.signup.agree.label","reference":{"id":"5IGFT3ppIixn6NobeCCxW3","__typename":"Text","sidekickLookup":{"richEyebrow":{"fieldName":"eyebrow"},"richTitle":{"fieldName":"title"},"richSubtitle":{"fieldName":"subtitle"},"contentId":"5IGFT3ppIixn6NobeCCxW3","contentTypeId":"text"},"variant":"default","align":"left","alignContent":"flex-start","styles":null,"colorscheme":"inherit","backgroundColor":"transparent","contentSize":"fullBleed","highlightColor":"yellow","eyebrowColor":"bodyCopy","titleColor":"black","subtitleColor":"bodyCopy","tableVariant":"default","anchorId":null,"richEyebrow":null,"richTitle":null,"richSubtitle":null,"body":{"id":null,"__typename":"RichText","json":{"nodeType":"document","data":{},"content":[{"nodeType":"paragraph","data":{},"content":[{"nodeType":"text","value":"By clicking below, you have read and agree to Coalition’s ","marks":[],"data":{}},{"nodeType":"embedded-entry-inline","data":{"target":{"sys":{"id":"6gUu3WwpB13zC5u7KxUxv5","type":"Link","linkType":"Entry"}}},"content":[]},{"nodeType":"text","value":".","marks":[],"data":{}}]}]},"links":{"entries":[{"id":"6gUu3WwpB13zC5u7KxUxv5","__typename":"Link","sidekickLookup":{"subtitle":{"fieldName":"subtitle"},"contentId":"6gUu3WwpB13zC5u7KxUxv5","contentTypeId":"link"},"text":"Terms of Use","subText":null,"href":"/legal/terms","variant":"link","icon":null,"iconPosition":"Right","colorscheme":"blue","size":"medium","isModal":false,"customAction":null,"linkedContent":{},"gatedForm":null,"openInNewWindow":true,"subtitle":null}],"assets":[]}}},"shortText":null},{"id":"3MHahuiAu0iBmSgbhICK5Y","__typename":"CommonResource","sidekickLookup":{"contentId":"3MHahuiAu0iBmSgbhICK5Y","contentTypeId":"commonResource"},"key":"control.signup.email.placeholder","reference":{"id":"719pLyAKs6h3x6FIbftFVX","__typename":"Text","sidekickLookup":{"richEyebrow":{"fieldName":"eyebrow"},"richTitle":{"fieldName":"title"},"richSubtitle":{"fieldName":"subtitle"},"contentId":"719pLyAKs6h3x6FIbftFVX","contentTypeId":"text"},"variant":"default","align":"left","alignContent":"flex-start","styles":null,"colorscheme":"inherit","backgroundColor":"active.black","contentSize":"fullBleed","highlightColor":"yellow","eyebrowColor":"bodyCopy","titleColor":"black","subtitleColor":"bodyCopy","tableVariant":"default","anchorId":null,"richEyebrow":null,"richTitle":null,"richSubtitle":null,"body":{"id":null,"__typename":"RichText","json":{"data":{},"content":[{"data":{},"content":[{"data":{},"marks":[],"value":"Email Address","nodeType":"text"}],"nodeType":"paragraph"}],"nodeType":"document"},"links":{"entries":[],"assets":[]}}},"shortText":"Email Address"},{"id":"5MprskfRnMR73CMVBTNIg5","__typename":"CommonResource","sidekickLookup":{"contentId":"5MprskfRnMR73CMVBTNIg5","contentTypeId":"commonResource"},"key":"control.signup.companyName.placeholder","reference":null,"shortText":"Company Name"},{"id":"CXWe5GFf5jajPixTei6O2","__typename":"CommonResource","sidekickLookup":{"contentId":"CXWe5GFf5jajPixTei6O2","contentTypeId":"commonResource"},"key":"blog.details.nextBlogPost","reference":null,"shortText":"Read next blog post"},{"id":"sEsHmiPmvHU3e9b4ItM8t","__typename":"CommonResource","sidekickLookup":{"contentId":"sEsHmiPmvHU3e9b4ItM8t","contentTypeId":"commonResource"},"key":"job.filters.search.label","reference":null,"shortText":"Search"}]},"__N_SSG":true},"page":"/[[...slug]]","query":{"slug":["blog","security-labs","thinking-about-context-for-web-assets"]},"buildId":"LY-T1O2o2CIOmtT013TDb","isFallback":false,"isExperimentalCompile":false,"dynamicIds":[26499,89860,30842,83535,44523,40075,6240,36605,12784,22577,7699,87845,49714,83832,39385,51082,25993,51244,92391],"gsp":true,"locale":"en-ca","locales":["en-us","en-ca","en-gb","fr-ca","au","de","nordics","fr"],"defaultLocale":"en-us","scriptLoader":[]}</script></body></html>