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.
@artonge/mobileconfig
Advanced tools
Create and sign iOS and mac mobileconfig configuration files.
This module has been bassed off of the previous work done by andris9/mobileconfig and converted to be an ES6 module and use classes for creating profiles with multiple configuration payloads.
Currently this module supports adding the following payloads to a profile:
and for any other payload or a custom payload you can use the RawPayload.
Profile signing is handled by jsrsasign allowing the profile to be signed on any platform that supports Node.JS.
This package can be both required and imported into your application by using the following:
const mobileconfig = require('@carboncollins/mobileconfig');
import mobileconfig from '@carboncollins/mobileconfig';
example for creating and generating a mobile profile with an airplay payload:
const profile = new mobileconfig.MobileConfigProfile({
displayName: 'Test Profile',
description: 'A test profile to see if it works',
identifier: 'com.mobileconfig.testprofile',
organization: 'mobileconfig',
durationUntilRemoval: 60
});
profile.addPayload(new mobileconfig.AirPlayPayload({
whitelist: [{ deviceId: 'xx:xx:xx:xx:xx:xx' }],
passwords:[{ deviceName: 'test airplay device', deviceId: 'xx:xx:xx:xx:xx:xx', password: 'testpassword' }],
displayName: 'airplay device'
}));
console.log(mobileconfig.generatePropertyList(profile))
for documentation on this module please checkout the API Docs
There is a known issue with signing profiles which is currently being looked into
MIT
FAQs
Create and sign iOS mobileconfig configuration files
We found that @artonge/mobileconfig 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.
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.