
Research
/Security News
Weaponizing Discord for Command and Control Across npm, PyPI, and RubyGems.org
Socket researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
@crossid/vue-wrapper
Advanced tools
npm install -g @vue/cli
vue create Choose vue3 as the base
vue add typescript
npm install @crossid/vue-wrapper
In main.ts:
import { create } from "@crossid/vue-wrapper";
const [AuthProvider, AuthCallback] = create({
issuer: "https://dev.local.crossid.io/oauth2/default/",
authorization_endpoint: "https://dev.local.crossid.io/oauth2/default/auth",
token_endpoint: "https://dev.local.crossid.io/oauth2/default/token",
client_id: "<client-id>",
refreshToken: true,
redirect_uri:
window.location.protocol + "//" + window.location.host + "/callback",
audience: ["<app-id>"],
scope: "openid offline_access profile email",
});
createApp(App)
.component("AuthProvider", AuthProvider)
.component("AuthCallback", AuthCallback)
.mount("#app");
(This is for non automatic redirects)
<template>
<AuthProvider
v-bind:disableAutoLogin="true"
v-slot="{ user, loginRedirect, isAuthenticated, getToken }"
>
<!-- user will be avaliable here if isAuthenticated === true -->
<!-- without "disableAutoLogin", the component will automatically redirect the user to the login page -->
<!-- getToken is an async function get the an access token -->
<div v-if="isAuthenticated">
<h1>Hello {{ user.name }}</h1>
<button v-on:click="getAccessToken(getToken)">Get Token</button>
Token: {{ token }}
</div>
<button
v-else
v-on:click="
loginRedirect('foo', 'openid offline_access profile email', returnTo)
"
>
Login!
</button>
</AuthProvider>
</template>
<script>
export default {
name: "Protected",
data() {
return { returnTo: window.location.href, token: "" };
},
methods: {
getAccessToken(getToken) {
getToken().then((tok) => (this.token = tok));
},
},
props: {
msg: String,
},
};
</script>
<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped>
h3 {
margin: 40px 0 0;
}
ul {
list-style-type: none;
padding: 0;
}
li {
display: inline-block;
margin: 0 10px;
}
a {
color: #42b983;
}
</style>
<template>
<img alt="Vue logo" src="./assets/logo.png" />
<div v-if="currentRoute == '/callback'">
<!-- we need @navigate="navigate() to respond to redirect events back to "main" page after callback-->
<AuthCallback @navigate="navigate()">callback...</AuthCallback>
</div>
<div v-else>
<Protected />
</div>
</template>
<script lang="ts">
// Our protected component
import Protected from "./components/Protected.vue";
export default {
name: "App",
// This is a basic routing / navigation setup
data() {
return { currentRoute: window.location.pathname };
},
components: {
Protected,
},
methods: {
// This is needed to respond to redirect event after callback
navigate() {
//@ts-ignore
this.currentRoute = window.location.pathname;
},
},
};
</script>
<style>
OAuthCallback #app {
font-family: Avenir, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
margin-top: 60px;
}
</style>
npm run serve
FAQs
A wrapper for the crossid oauth2 client for vue3
We found that @crossid/vue-wrapper demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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
Socket researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
Security News
Socket now integrates with Bun 1.3’s Security Scanner API to block risky packages at install time and enforce your organization’s policies in local dev and CI.
Research
The Socket Threat Research Team is tracking weekly intrusions into the npm registry that follow a repeatable adversarial playbook used by North Korean state-sponsored actors.