
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
Adobe Campaing Standard API Docs: https://docs.adobe.com/content/help/en/campaign-standard/using/working-with-apis/about-campaign-standard-apis/about-campaign-standard-apis.html
Example:
const { ACSHttpClient, JWTAuthorizer } = require("acs-sdk");
// authentication information https://www.adobe.io/authentication/auth-methods.html#!AdobeDocs/adobeio-auth/master/AuthenticationOverview/ServiceAccountIntegration.md
const authorizer = new JWTAuthorizer({
adobeOrgId: "EF2D363--------CA@AdobeOrg",
clientId: "bb11ebd6406a4f---------f705b26a",
clientSecret: "8EDD3561-------5CDB@techacct.adobe.com",
metascopes: ["ent_campaign_sdk"],
privateKey: "-----BEGIN RSA PRIVATE KEY-----\n...",
technicalAccountId: "8EDD3561-------5CDB@techacct.adobe.com"
});
// Organizational info: https://docs.adobe.com/content/help/en/campaign-standard/using/working-with-apis/about-campaign-standard-apis/setting-up-api-access.html
const client = new ACSHttpClient({ orgId: "acme", orgInstanceId: "acme-mkt-stage1" }, authorizer);
NOTE: In order to have the profiles api you must check the Add access authorization management fields in the Profile extension, more details here
sendTransactionalEvent Docs: https://docs.adobe.com/content/help/en/campaign-standard/using/working-with-apis/managing-transactional-messages.html
client.sendTransactionalEvent("EVTTest", "email@email.com", {
customData: "customValue"
});
getTransactionalEvent Docs: https://docs.adobe.com/content/help/en/campaign-standard/using/working-with-apis/managing-transactional-messages.html#response-to-the-post-request
client.getTransactionalEvent("EVTTest", "adobe-event-pkey");
sendTransactionalPushEvent Docs: https://docs.adobe.com/content/help/en/campaign-standard/using/communication-channels/transactional-messaging/transactional-push-notifications.html
client.sendTransactionalPushEvent(
"EVTPushTest",
{ customData: "customValue" },
{
pushPlatform: "apns",
application: "applicationName",
registrationToken: "token",
}
);
insertProfile Docs: https://docs.adobe.com/content/help/en/campaign-standard/using/working-with-apis/managing-profiles/creating-profiles.html
client.insertProfile({
email: "email@email.com",
customData: "customValue"
});
getProfilesByEmail Docs: https://docs.adobe.com/content/help/en/campaign-standard/using/working-with-apis/global-concepts/additional-operations/filtering.html
client.getProfilesByEmail("email@email.com");
updateProfile Docs: https://docs.adobe.com/content/help/en/campaign-standard/using/working-with-apis/managing-profiles/updating-profiles.html
client.updateProfile(profile.PKey, { firstName: "Hello", lastName: "World" });
Thanks goes to these wonderful people (emoji key):
Hudo Assenco 💻 📖 |
This project follows the all-contributors specification. Contributions of any kind welcome!
FAQs
Unofficial Adobe Campaign Standard API SDK
We found that acs-sdk demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.