
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.
Node.js module for using the sicepat API
var sicepat = new Sicepat({
apikey: config.api.apikey,
devmode: config.api.devmode
})
var referenceNo = 'TEST-REFERENCE_NO'
var pickup = new Sicepat.Pickup({
name: 'merchant name',
phone: 'merchant phone',
email: 'cs@merchant.com',
date: '2019-09-17 16:00',
address: 'pickup addresss',
city: 'Jakarta Selatan'
})
var parcel = new Sicepat.Parcel({
origin: 'JKT',
type: 'REG',
category: 'normal',
content: 'Cosmetic',
qty: 1,
price: 2000000,
weight: 1,
shipper_name: 'merchant name',
shipper_address: 'shipper address',
shipper_province: 'DKI Jakarta',
shipper_city: 'Jakarta Selatan',
shipper_district: 'Pasar Minggu',
shipper_zip: '12560',
shipper_phone: 'shipper phone',
recipient_title: 'Mr/Ms/Mrs',
recipient_name: 'receipt_name',
recipient_address: 'receipt_address',
recipient_province: 'receipt_province',
recipient_city: 'receipt_city',
recipient_district: 'receipt_district',
recipient_zip: 'receipt_zip',
recipient_phone: 'receipt_phone',
recipient_email: 'receipt_email', // optional
destination_code: 'CGK10000'
})
sicepat.requestPickup(referenceNo, pickup, parcel, function (err, res) {
if (err) {
// ...
}
console.log(res)
// { status: '200',
// error_message: null,
// request_number: '1909180011270005',
// receipt_datetime: '2019-09-18 17:25',
// message: null,
// datas: [ { cust_package_id: null, receipt_number: '653851825686' } ] }
sicepat.cancelPickup(res.datas[0].receipt_number, function (err, res) {
console.log(res)
// { status: '200',
// error_message: null,
// request_number: '1909180011270005',
// message: 'request_number: 1909180011270005 sudah di cancel.' }
})
})
FAQs
Node.js module for using the sicepat API
We found that sicepat 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.