
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
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 14 weekly downloads. As such, react-keycloak-provider popularity was classified as not popular.
We found that react-keycloak-provider demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.