Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
vue-wiguet-chatweb
Advanced tools
Paquete para el uso de CHAT CENTRAL mediante un widget chat,
Instalacion del paquete
npm i vue-wiguet-chatweb
VITE_BACKEND_URL=http://192.168.20.107:8500
VITE_BROKER_URL=ws://192.168.20.107:15674/ws
VITE_USERNAME=admin
VITE_PASSWORD=password
import widgetChatCentral from 'vue-wiguet-chatweb'
const app = createApp(App);
app.use(widgetChatCentral, {
VITE_BACKEND_URL:import.meta.env.VITE_BACKEND_URL;
VITE_BROKER_URL:import.meta.env.VITE_BROKER_URL;
VITE_USERNAME:import.meta.env.VITE_USERNAME;
VITE_PASSWORD:import.meta.env.VITE_PASSWORD;
});
app.mount('#app');
Configuracion de Paquete en el componente
<template>
<div>
<Widget titlePrincipal="titlePrincipal" :tokenAuth="token" :phoneUser="phone"/>
</div>
</template>
<script setup lang="ts">
import Widget from './components/Widget.vue';
const token = 'ciOi.....'
const phone = '76177719'
</script>
<style scoped>
@import url(/node_modules/vue-wiguet-chatweb/dist/style.css);
</style>
FAQs
Paquete para el uso de CHAT CENTRAL mediante un widget chat,
The npm package vue-wiguet-chatweb receives a total of 5 weekly downloads. As such, vue-wiguet-chatweb popularity was classified as not popular.
We found that vue-wiguet-chatweb demonstrated a healthy version release cadence and project activity because the last version was released less than 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’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.