
Research
/Security News
Critical Vulnerability in NestJS Devtools: Localhost RCE via Sandbox Escape
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
Python class to talk to iDMS REST and Search API within Provincie Zuid-Holland.
The goal of the package is to have an easy interface to use the API in Python.
Mainly focussed to work with Content Server 21.4, see API docs.
pip install idms
pip install pandas
(optional - for easy data transformation)pip install openpyxl
(optional - to write to Excel file)import getpass
import idms.api.contentserver as cs
import pandas # optional
baseUrl = "idms-url"
idms_username = getpass.getpass(prompt='IDMS username:')
idms_password = getpass.getpass(prompt='IDMS password:')
idms = cs.crawler(baseUrl, idms_username, idms_password)
array = idms.search("overdevest prox[1,f] daniel)")
print(f"Found {len(array)} search results")
# optional load results in a data frame to export results.
df = pd.DataFrame(arr)
print(df)
# Export results to Excel
df.to_excel("searchresults.xlsx")
Package is hosted on GitHub. After each change increase version number and create a new Release on GitHub. The pipeline will trigger a release to PyPi (see status batch above).
Send a PR!
The developers of this package are not affiliated with OpenText.
FAQs
Python class to talk to idms REST and Search API, better known as iDMS.
We found that idms demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers 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
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
Product
Customize license detection with Socket’s new license overlays: gain control, reduce noise, and handle edge cases with precision.
Product
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.