
Security News
Open VSX Begins Implementing Pre-Publish Security Checks After Repeated Supply Chain Incidents
Following multiple malicious extension incidents, Open VSX outlines new safeguards designed to catch risky uploads earlier.
acslib
Advanced tools
A library for interacting with Access Control Systems like Genetec or Ccure9k. This is a work in progress and is not ready for production use.
Currently development is heavily influenced by Ccure9k, but the goal is to abstract the differences between the two systems and provide a common interface for interacting with them.
Personnel, Clearances, Credentials, and ClearanceItem in Ccure9k, and all other Ccure object types.from acslib import CcureAPI
ccure = CcureAPI()
response = ccure.personnel.search("Roddy Piper".split())
from acslib import CcureAPI
from acslib.ccure.filters import PersonnelFilter, FUZZ
ccure = CcureAPI()
search_filter = PersonnelFilter(lookups={"Text1": FUZZ})
response = ccure.personnel.search(["PER0892347"], search_filter=search_filter)
from acslib import CcureAPI
# change MiddleName and Text14 for the person with CCure ID 5001
ccure = CcureAPI()
ccure.personnel.update(5001, {"Text14": "new text here", "MiddleName": "Shaquille"})
from acslib import CcureAPI
from acslib.ccure.data_models import PersonnelCreateData as pcd
ccure = CcureAPI()
new_person_data = pcd(FirstName="Kenny", LastName="Smith", Text1="001132808")
ccure.personnel.create(new_person_data)
from acslib import CcureAPI
# delete the personnel record with the CCure ID 6008
ccure = CcureAPI()
ccure.personnel.delete(6008)
from acslib import CcureAPI
ccure = CcureAPI()
response = ccure.clearance.search(["suite", "door"])
from acslib import CcureAPI
from acslib.ccure.filters import ClearanceFilter, NFUZZ
# search by ObjectID
ccure = CcureAPI()
search_filter = ClearanceFilter(lookups={"ObjectID": NFUZZ})
response = ccure.clearance.search([8897], search_filter=search_filter)
from acslib import CcureAPI
ccure = CcureAPI()
response = ccure.credential.search()
from acslib import CcureAPI
# fuzzy search by name
ccure = CcureAPI()
response = ccure.credential.search(["charles", "barkley"])
from acslib import CcureAPI
from acslib.ccure.filters import CredentialFilter, NFUZZ
# search by ObjectID
ccure = CcureAPI()
search_filter = CredentialFilter(lookups={"ObjectID": NFUZZ})
response = ccure.credential.search([5001], search_filter=search_filter)
from acslib import CcureAPI
# update CardInt1 for the credential with ObjectID 5001
ccure = CcureAPI()
response = ccure.credential.update(5001, {"CardInt1": 12345})
Clearance items include "door" and "elevator."
from acslib import CcureAPI
from acslib.ccure.types import ObjectType
# fuzzy search for doors by name
ccure = CcureAPI()
response = ccure.clearance_item.search(ObjectType.DOOR.complete, ["hall", "interior"])
from acslib import CcureAPI
from acslib.ccure.filters import ClearanceItemFilter, NFUZZ
from acslib.ccure.types import ObjectType
# search elevators by ObjectID
ccure = CcureAPI()
search_filter = ClearanceItemFilter(lookups={"ObjectID": NFUZZ})
response = ccure.clearance_item.search(ObjectType.ELEVATOR.complete, [5000], search_filter=search_filter)
from acslib import CcureAPI
# get lock state for door 5001. eg. "Unlocked", "Locked", etc
ccure = CcureAPI()
response = ccure.clearance_item.get_lock_state(5001)
from acslib import CcureAPI
from acslib.ccure.types import ObjectType
# change a door's name
ccure = CcureAPI()
response = ccure.clearance_item.update(ObjectType.DOOR.complete, 5000, update_data={"Name": "new door name 123"})
from acslib import CcureAPI
from acslib.ccure.data_models import ClearanceItemCreateData
from acslib.ccure.types import ObjectType
# create a new elevator
ccure = CcureAPI()
new_elevator_data = ClearanceItemCreateData(
Name="New elevator 1",
Description="newest elevator in town",
ParentID=5000,
ParentType="SoftwareHouse.NextGen.Common.SecurityObjects.iStarController",
ControllerID=5000,
ControllerClassType="SoftwareHouse.NextGen.Common.SecurityObjects.iStarController"
)
response = ccure.clearance_item.create(ObjectType.ELEVATOR.complete, create_data=new_elevator_data)
from acslib import CcureAPI
from acslib.ccure.types import ObjectType
# delete a door
ccure = CcureAPI()
response = ccure.clearance_item.delete(ObjectType.DOOR.complete, 5000)
from acslib import CcureAPI
from acslib.ccure.filters import CcureFilter, NFUZZ
# search for schedule objects by ObjectID
ccure = CcureAPI()
schedule_type_full = "SoftwareHouse.CrossFire.Common.Objects.TimeSpec"
search_filter = CcureFilter()
response = ccure.ccure_object.search(
object_type=schedule_type_full,
search_filter=search_filter,
terms=[5001]
)
Use ccure.action to perform some common tasks like assigning or revoking clearances or getting personnel images.
from acslib import CcureAPI
# assign clearances 5002 and 5003 to person 5005
ccure = CcureAPI()
response = ccure.action.personnel.assign_clearances(
personnel_id=5005,
clearance_ids=[5002, 5003],
)
from datetime import datetime, timedelta
from acslib import CcureAPI
# lock door 5050 for ten minutes
ccure = CcureAPI()
response = ccure.action.door.lock(
door_id=5050,
lock_time=datetime.now(),
unlock_time=datetime.now() + timedelta(minutes=10),
)
FAQs
A library for interacting with Access Control Systems like Genetec or Ccure9k
We found that acslib 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
Following multiple malicious extension incidents, Open VSX outlines new safeguards designed to catch risky uploads earlier.

Research
/Security News
Threat actors compromised four oorzc Open VSX extensions with more than 22,000 downloads, pushing malicious versions that install a staged loader, evade Russian-locale systems, pull C2 from Solana memos, and steal macOS credentials and wallets.

Security News
Lodash 4.17.23 marks a security reset, with maintainers rebuilding governance and infrastructure to support long-term, sustainable maintenance.