Configuring Information Security & PII
- 04 Aug 2022
- 1 Minute zum Lesen
- Drucken
- DunkelLicht
- pdf
Configuring Information Security & PII
- Aktualisiert am 04 Aug 2022
- 1 Minute zum Lesen
- Drucken
- DunkelLicht
- pdf
The content is currently unavailable in German. You are viewing the default English version.
Artikel-Zusammenfassung
Fanden Sie diese Zusammenfassung hilfreich?
Vielen Dank für Ihr Feedback
Any input or element on a page which contains sensitive information which should not be shared with the cobrowsing agent the following html attribute or class should be added.
<input type="string" id="credit-card-number" data-cb-mask="true" /> <div id="accountnumber" data-cb-mask="true">23434645631234523</div>
or
<input type="string" id="credit-card-number" class="cb-mask" /> <div id="accountnumber" class="cb-mask">23434645631234523</div>
Fields or elements with these designations will not be sent to the ScreenMeet’s server and any input or changes to these elements AND child elements will also not be sent. There will be an overlay added to confidential elements to let the clients know that those elements are not shared with the agent.
If sensitive elements in the page already marked with a class or an attribute Cobrowse can be configured to exclude them as well. Here is an example.
window.Cobrowse = window.Cobrowse || {};
window.Cobrowse.modal = window.Cobrowse.modal || {
commandQueue: [],
confidentialMasks: ['pii', 'data-pii']
};
The specification of the customizable masks(using TypeScript interface and type declarations):
interface Window {
Cobrowse: {
modal: {
confidentialMasks: string[]
...
}
}
}
War dieser Artikel hilfreich?