Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
com.unboundid.product.scim:scim-ldap
Advanced tools
The UnboundID SCIM-LDAP module builds on the UnboundID SCIM-SDK to provide classes that map SCIM resources to LDAP entries and vice versa. It also contains several APIs that may be used to implement custom behaviors for the mapping configuration file to extend its capabilities above and beyond those provided out of the box. Each extension type varies in the amount of control the implementation has over the mapping process and the amount of effort required for implementation.
This is UnboundID's open source Java SDK for the 1.1 version of the SCIM specification. Use it to create client applications that communicate with the UnboundID Data Store and any 3rd party SCIM 1.1-compliant service provider.
The System for Cross-domain Identity Management (SCIM) specification is designed to make managing user identities in cloud-based applications and services easier. The specification suite seeks to build upon experience with existing schemas and deployments, placing specific emphasis on simplicity of development and integration, while applying existing authentication, authorization, and privacy models. Its intent is to reduce the cost and complexity of user management operations by providing a common user schema and extension model, as well as binding documents to provide patterns for exchanging this schema using standard protocols. In essence: make it fast, cheap, and easy to move users in to, out of, and around the cloud.
See the SCIM 1.1 Core Schema and SCIM 1.1 Protocol specifications for more information.
This SDK contains utilities for interacting with different types of SCIM Endpoints, Resources, Schemas, Attributes, Filters, and other objects. The SCIMService and SCIMEndpoint classes provide a starting point for connecting to a REST endpoint and issuing queries or invoking SCIM operations on existing resources.
Release notes can be found in Release-Notes.txt.
public class Client {
public static void main (String[] args) {
final URI uri = URI.create("https://example.com:443");
final SCIMService scimService = new SCIMService(uri, "bjensen", "password");
scimService.setAcceptType(MediaType.APPLICATION_JSON_TYPE);
// Core user resource CRUD operation example
final SCIMEndpoint<UserResource> endpoint = scimService.getUserEndpoint();
// Query for a specified user
Resources<UserResource> resources =
endpoint.query("userName eq \"bjensen\"");
if (resources.getItemsPerPage() == 0) {
System.out.println("User bjensen not found");
return;
}
UserResource user = resources.iterator().next();
Name name = user.getName();
if (name != null) {
System.out.println(name);
}
Collection<Entry<String>> phoneNumbers = user.getPhoneNumbers();
if (phoneNumbers != null) {
for (Entry<String> phoneNumber : phoneNumbers) {
System.out.println(phoneNumber);
}
}
}
}
Check Maven Central for the latest available version of the SCIM 1.1 SDK.
<dependency>
<groupId>com.unboundid.product.scim</groupId>
<artifactId>scim-sdk</artifactId>
<version>VERSION</version>
</dependency>
Please report bug reports and enhancement requests through this project's issue tracker. See the contribution guidelines for more information.
See the LICENSE.txt file for more info.
FAQs
Unknown package
We found that com.unboundid.product.scim:scim-ldap demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 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 malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.