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.
@signainfo/sconfirmationdialog
Advanced tools
npm i --save @signainfo/sconfirmationdialog
It can be installed globally using:
import Vue from 'vue'
import SConfirmationDialog from '@signainfo/sconfirmationdialog'
import '@signainfo/sconfirmationdialog/dist/sconfirmationdialog.css'
...
Vue.use(SConfirmationDialog)
...
or used on demand:
<script>
import SConfirmationDialog from '@signainfo/sconfirmationdialog'
export default {
name: 'App',
components: {
's-confirmation-dialog': SConfirmationDialog
},
data() {
...
}
}
</script>
and use inside the template tag:
<template>
...
<s-confirmation-dialog
:show="confirmDialog"
title="Titulo"
subtitle="Subititulo"
ok-text="confirm"
cancel-text="cancel"
:max-width="500"
@confirm="confirmDialog = false"
@cancel="confirmDialog = false"
></s-confirmation-dialog>
...
</template>
Props:
props: {
show: { type: Boolean, required: true, default: false },
title: { type: String, required: false, default: 'Confirmar' },
subtitle: { type: String, required: true, default: '' },
okText: { type: String, required: false, default: 'Confirmar' },
cancelText: { type: String, required: false, default: 'Cancelar' },
maxWidth: { type: Number, required: false, default: 290 }
}
npm start // start the test app
npm run build // builds the component and publish to npm
Before building the component you need to advance the version using npm semver:
npm version patch // to patch version
npm version minor // to minor version
npm version major // to major version
FAQs
### Installation
We found that @signainfo/sconfirmationdialog demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 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.