
Research
Security News
The Landscape of Malicious Open Source Packages: 2025 Mid‑Year Threat Report
A look at the top trends in how threat actors are weaponizing open source packages to deliver malware and persist across the software supply chain.
@advanced-rest-client/cc-authorization-method
Advanced tools
An element to render an UI for client certificate authorization method
A web component that extends @advanced-rest-client/authorization-method
to allow to select a client certificate as an authorization method.
The component mixes in @advanced-rest-client/client-certificates-consumer-mixin
that communicates with the application by using DOM events.
The application has to handle the following events for this element to work:
Note that -insert
and -delete
events are not dispatched by this element but are defined in the mixin interface.
Default storage interface is provided with @advanced-rest-client/arc-models/client-certificate-model.js
see implementation.
An UI to manage installed certificates is provided by @advanced-rest-client/client-certificates-panel
.
npm install --save @advanced-rest-client/cc-authorization-method
<html>
<head>
<script type="module">
import '@advanced-rest-client/cc-authorization-method/cc-authorization-method.js';
import '@advanced-rest-client/arc-models/client-certificate-model.js';
</script>
</head>
<body>
<client-certificate-model></client-certificate-model>
<cc-authorization-method></cc-authorization-method>
</body>
</html>
import { LitElement, html } from 'lit-element';
import '@advanced-rest-client/cc-authorization-method/cc-authorization-method.js';
class SampleElement extends LitElement {
render() {
const { amfModel, security } = this;
return html`
<cc-authorization-method
type="client certificate"
@change="${this._securityChangeHandler}"></cc-authorization-method>
`;
}
_securityChangeHandler(e) {
console.log('current authorization settings', e.target.serialize());
}
}
customElements.define('sample-element', SampleElement);
git clone https://github.com/advanced-rest-client/cc-authorization-method
cd cc-authorization-method
npm install
npm start
npm test
This components is a part of API components ecosystem
0.1.3 (2019-12-31)
importButton
option 1b64287 by Pawel Psztyc:host
css definition 3081be1 by PawelFAQs
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
A look at the top trends in how threat actors are weaponizing open source packages to deliver malware and persist across the software supply chain.
Security News
ESLint now supports HTML linting with 48 new rules, expanding its language plugin system to cover more of the modern web development stack.
Security News
CISA is discontinuing official RSS support for KEV and cybersecurity alerts, shifting updates to email and social media, disrupting automation workflows.