
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
@praxent/praxent-crm
Advanced tools
This package is to assist in the sending of information to your specified CRM. Right now this package is only built out for HubSpot but future iterations could expand that scope.
You can use the package as follows:
const HubspotIntegration = require('@praxent/praxent-crm')
async exampleFunction() => {
try {
const hubspotIntegration = HubspotIntegration({ apiKey }) // appId required for webhooks
const response = await hubspotIntegration.fetch({ action: 'createContact', data })
return {
success: true,
data: response,
}
} catch(error) {
console.warn(error)
return {
success: false,
error,
}
}
}
The data variable is whatever data you want to send to HubSpot formatted for your specific project.
Actions Types:
createContact
{
properties: [
{
property: string,
value: any,
}
...
]
}
createDeal
{
associations: {
associatedVids: [int],
},
properties: [
{
name: string,
value: any,
}
...
]
}
searchContactByEmail
{
email: string,
}
viewSettings
{}
updateSettings
{
webhookUrl: string, // requires https
maxConcurrentRequests: int, // greater than 5
}
createSubscriptions
{
subscriptionDetails: {
subscriptionType: string,
propertyName: string,
},
enabled: bool,
}
getSubscriptions
{}
updateSubscriptions
{
subscriptionId: int,
data: {
enabled: bool,
}
}
deleteSubscriptions
{}
FAQs
CRM methods using Hubspot
We found that @praxent/praxent-crm demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.