Forum Discussion

RelunSec's avatar
RelunSec
Copper Contributor
Nov 17, 2025

New winaudit crate for Windows Audit in Rust

Hello, i'm RelunSec

 

I published an awesome crate [winaudit](https://crates.io/crates/winaudit) offer windows security checks and windows security audits, For you use in your rust application or build a awesome framework audit windows using my crate.

2 Replies

  • TristanLewis's avatar
    TristanLewis
    Iron Contributor

    Show how your crate performs compared to PowerShell scripts or other tools.

    • RelunSec's avatar
      RelunSec
      Copper Contributor

       

      I'm sorry of the delay 10 days i not reply to you.


      Thanks for the suggestion you suggested!

      I'm currently preparing a comparison between winaudit and common PowerShell approaches used for Windows auditing projects.
      My goal to show the following:

          - Performance differences (execution time, CPU usage)

          - Reliability (lower parsing errors because everything is done via standard Win32 APIs)

          - Consistency across different Windows versions

          - Integration advantages when building full Rust-based Windows tools or agents or win32 apps.

       

      PowerShell is excellent, but many checks rely on parsing commands output or running multiple commands.
      winaudit, on other hand, uses direct Win32 APIs, this makes it faster and efficient and more stable for embedded or entreprise grade/general applications.