
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.
connectwise-control-api
Advanced tools
Programmatically manage your resources in ConnectWise Control, a.k.a ScreenConnect.
Note: This library is in no way affiliated with ConnectWise.
This module is intended to help manage ConnectWise Control resources programmatically. Since there is no official API, this essentially interfaces with the front-end web interface to login, get a cookie and run commands that appear to be run in the web browser. The original intent of this library was to be able to create an interface to automatically create and update session groups based on companies in ConnectWise Manage, but it can be used for anything.
The goal is include all of the features available in the web interface such as running commands, downloading agents, etc.
This project uses async/await, so I'd recommend using NodeJS 8.11.2 (LTS).
In your project's folder, run npm i connectwise-control-api --save. Then, in your project, include the following:
const cc = require('connectwise-control-api')('https://yourinstance.screenconnect.com', 'user@domain.com', 'ReallyGoodPassword');
await cc.getSessionGroups();
[
{
"Name": "Fun Client",
"SessionFilter": "CustomProperty1='Fun Client'",
"SessionType": 2,
"SubgroupExpressions": ""
},
{
"Name": "Boring Client",
"SessionFilter": "CustomProperty1='Boring Client'",
"SessionType": 2,
"SubgroupExpressions": ""
},
{
"Name": "Doesn't Pay Their Bills Client",
"SessionFilter": "CustomProperty1='Doesn't Pay Their Bills Client'",
"SessionType": 2,
"SubgroupExpressions": ""
}
]
await cc.getSessions();
[
{
"ActiveConnections": [
{
"ConnectedTime": 123456,
"ConnectionID": "xxxxx-xxxxx-xxxxx-xxxxx-xxxxxxx",
"ParticipantName": "",
"ProcessType": 2
}
],
"Attributes": 1,
"Code": "",
"CustomPropertyValues": [
"Session Group Name",
"",
"",
"",
"",
"",
"",
""
],
"GuestClientVersion": "6.7.19388.6796",
"GuestIdleTime": 123,
"GuestLoggedOnUserDomain": "DOMAIN",
"GuestLoggedOnUserName": "user",
"GuestOperatingSystemName": "Windows 7 Professional",
"GuestOperatingSystemVersion": "6.1.7601",
"Host": "",
"IsPublic": false,
"LastAlteredVersion": 12341234,
"LastConnectedEventTime": 1234,
"LastInitiatedJoinEventTime": -1,
"Name": "COMPUTER1",
"Notes": "",
"Permissions": 129019,
"QueuedEvents": [],
"SessionID": "xxxxx-xxxxx-xxxxx-xxxxx-xxxxxxx",
"SessionType": 2,
"UnacknowledgedEvents": []
}
]
await cc.sortSessionGroups();
await cc.createSessionGroup('Your New Group')
await cc.renameSessionGroup('Old Session Name', 'New Session Name');
No response.
await cc.getAgentDownload(organizationname);
This function returns of a buffer of the agent's MSI download. You could pass this to NodeJS's fs module for downloading like this:
const fs = require('fs');
var buffer = await cc.getAgentDownload('Your Organization');
fs.writeFileSync('Your Organization.msi', buffer);
FAQs
Programmatically manage your resources in ConnectWise Control, a.k.a ScreenConnect.
We found that connectwise-control-api 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.