
Research
/Security News
Toptal’s GitHub Organization Hijacked: 10 Malicious Packages Published
Threat actors hijacked Toptal’s GitHub org, publishing npm packages with malicious payloads that steal tokens and attempt to wipe victim systems.
react-keycloak-provider
Advanced tools
[](https://github.com/kantorv/react-keycloak-provider/actions/workflows/tests.yml) [](https:/
Based on keycloak-js
package, wraps it with React Context Provider
// providing
import { KeycloakProvider } from 'react-keycloak-provider';
const root = ReactDOM.createRoot(
document.getElementById('root') as HTMLElement
);
root.render(
<React.StrictMode>
<KeycloakProvider
// config={window.location.origin + '/keycloak.json'}
// passed to constructor
// const keycloak = new Keycloak({ ... })
config={{
url: 'http://localhost:8282/',
realm: 'demo',
clientId: 'react-client'
}}
// passed to keycloak.init({ ... })
initOptions={{
// 'check-sso' or 'login-required'
onLoad: 'check-sso',
// if 'check-sso' copy 'silent-check-sso.html' to /public folder
silentCheckSsoRedirectUri: window.location.origin + '/silent-check-sso.html',
}}
>
<App />
</KeycloakProvider>
</React.StrictMode>
);
// consuming
import { useKeycloakContext } from 'react-keycloak-provider';
import Button from '@mui/material/Button';
const AppBar = ()=> {
const {keycloak, authenticated} = useKeycloakContext();
return (
<div>
{authenticated?
<Button onClick={keycloak.logout} label="Logout" /> :
<Button onClick={keycloak.login} label="Login" />
}
</div>
)
};
<!-- silent-check-sso.html -->
<html>
<body>
<script>
parent.postMessage(location.href, location.origin)
</script>
</body>
</html>
FAQs
[](https://github.com/kantorv/react-keycloak-provider/actions/workflows/tests.yml) [](https:/
The npm package react-keycloak-provider receives a total of 32 weekly downloads. As such, react-keycloak-provider popularity was classified as not popular.
We found that react-keycloak-provider demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
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
Threat actors hijacked Toptal’s GitHub org, publishing npm packages with malicious payloads that steal tokens and attempt to wipe victim systems.
Research
/Security News
Socket researchers investigate 4 malicious npm and PyPI packages with 56,000+ downloads that install surveillance malware.
Security News
The ongoing npm phishing campaign escalates as attackers hijack the popular 'is' package, embedding malware in multiple versions.