Writing SQLite Extensions in Rust

Explainer SQLite allows you to create custom virtual tables which allow you to query an external data source using SQL, lowering the bar to entry and homogenizing your data sources In the past we've looked at creating virtual tables in golang, and here we do something similar in rust. One notable improvement here is the … Continue reading Writing SQLite Extensions in Rust

Converting Active Directory SIDs to names using LDAP + Rust

CyberSift recently had a requirement to be able to convert Active Directory SIDs into user friendly names. SIDs crop up whenever you look at security related Windows Event logs, such as event 4627(S): Group membership information, and would be similar in format to: S-1-5-21-1377283216-344919071-3415362939-1104. This format is obviously not very readable by anyone who looks … Continue reading Converting Active Directory SIDs to names using LDAP + Rust