
Research
Supply Chain Attack on Axios Pulls Malicious Dependency from npm
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.
@docuseal/vue
Advanced tools
DocuSeal Vue components to integrate documents signing process into apps. ✍️
This package provides a convenient way to embed DocuSeal into Vue apps. Sign documents and create document forms directly in your apps.
npm install @docuseal/vue
For detailed documentation, please click here.
Copy public DocuSeal form URL from https://docuseal.com and use it in the src component prop:
<template>
// ...
<DocusealForm
:src="'https://docuseal.com/d/LEVGR9rhZYf86M'"
:email="'signer@example.com'"
/>
// ...
</template>
<script>
// ...
import { DocusealForm } from '@docuseal/vue'
export default {
name: 'App',
components: {
DocusealForm
},
// ...
}
</script>
<template>
// ...
<DocusealBuilder
v-if="token"
:token="token"
/>
// ...
</template>
<script>
// ...
import { DocusealBuilder } from '@docuseal/vue'
export default {
name: 'App',
components: {
DocusealBuilder
},
mounted () {
this.loadToken()
},
methods: {
loadToken () {
fetch('/api/docuseal/builder_token', {
method: 'POST'
}).then(async (resp) => {
const data = await resp.json()
this.token = data.token
})
}
}
// ...
}
</script>
To protect the template builder from unathorized access a secure token (JWT) should be generated on the back-end:
const express = require('express');
const jwt = require('jsonwebtoken');
const app = express();
const secretKey = process.env.DOCUSEAL_API_KEY;
app.post('/api/docuseal/builder_token', (req, res) => {
const token = jwt.sign({
user_email: 'your-docuseal-user-email@company.com',
integration_email: 'customer@example.com', // replace with current user email
name: 'Integration W-9 Test Form',
document_urls: ['https://www.irs.gov/pub/irs-pdf/fw9.pdf'],
}, secretKey);
res.json({ token });
});
app.listen(8080, () => {
console.log(`Server is running`);
});
Obtain secret API token (DOCUSEAL_API_KEY env variable) to sign JWT from https://console.docuseal.com/api.
MIT
FAQs
DocuSeal Vue components to integrate documents signing process into apps. ✍️
The npm package @docuseal/vue receives a total of 3,248 weekly downloads. As such, @docuseal/vue popularity was classified as popular.
We found that @docuseal/vue 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
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.

Security News
TeamPCP is partnering with ransomware group Vect to turn open source supply chain attacks on tools like Trivy and LiteLLM into large-scale ransomware operations.