
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.
pyldsdk
Advanced tools
PyLDSDK (Python Logix Designer SDK) is a simple wrapper for some of the features available in Rockwell Automation's Logix Designer SDK v1.01.00.
Use at your own risk.
To install from pip:
pip install pyldsdk
To upgrade from pip:
pip install pyldsdk --upgrade
Since I cannot redistribute the C# client packaged with the Logix Designer SDK, there is a second step required to get started. Copy all of the following files to a common directory (ex: C:\YourDllPath). Then when using pyldsdk, reference that path (and more specifically the *CSClient.dll) as shown in the Examples section.
There is probably a better way, but I found it easiest to compile any of the SDK's sample projects and copy these from the resulting Debug folder.
FtspAdapter.exe
Google.Protobuf.dll
Grpc.Core.Api.dll
Grpc.Net.Client.dll
Grpc.Net.Common.dll
Microsoft.Extensions.Logging.Abstractions.dll
Newtonsoft.Json.dll
RockwellAutomation.LogixDesigner.LogixProject.CSClient.dll
Use the download function to transfer an *.ACD file to the PLC:
from pyldsdk import LogixProject
proj = LogixProject('C:\\YourDllPath\\RockwellAutomation.LogixDesigner.LogixProject.CSClient.DLL')
proj.download('C:\\YourFolder\\YourProgram.ACD', 'YourDriver\\YourControllerIpAddress')
Use the upload function to transfer an *.ACD file from the PLC:
from pyldsdk import LogixProject
proj = LogixProject('C:\\YourDllPath\\RockwellAutomation.LogixDesigner.LogixProject.CSClient.DLL')
proj.upload_new('C:\\YourFolder\\YourProgram.ACD', 'YourDriver\\YourControllerIpAddress')
FAQs
Python Logix Designer SDK
We found that pyldsdk demonstrated a healthy version release cadence and project activity because the last version was released less than 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.