Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
Tools/GitHubGitHub/ricardojoserf/autoptt
Lateral MovementPost-ExploitationAuthenticationRed Teaming
GitHubricardojoserf/autoptt

AutoPtT

Automated Pass-the-Ticket (PtT) attack. Standalone alternative to Rubeus and Mimikatz for this attack. In C#, C++, Crystal, Python, Rust, Golang, Nim and Deno (Javascript)

View Repository
1541529 days agoReviewed by Kitploit

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Website
Share

AutoPtT

AutoPtT enumerates Kerberos tickets and performs Pass-the-Ticket (PtT) attacks interactively or step by step. It is a standalone alternative to Rubeus or Mimikatz for this attack, implemented in C#, C++, Crystal, Python and Rust.

You can use the following options:

  • auto - Automated Pass-the-Ticket attack

  • sessions - List logon sessions. Similar to running klist sessions

  • klist - List tickets in the current session. Similar to running klist

  • tickets - List tickets in all sessions (not only TGTs). Similar to running Rubeus.exe dump

  • export - Export a TGT given the LogonId. Similar to running Rubeus.exe dump

  • ptt - Import a ticket file given the file name. Similar to running Rubeus.exe ptt



  • Examples

    Automated Pass-the-Ticket

    Choose the index for one of the available TGTs, it gets dumped and imported into your session:

    root@kitploit:~
    autoptt.exe auto
    

    img6

    List logon sessions

    root@kitploit:~
    autoptt.exe sessions
    

    img1

    List tickets in the current session

    root@kitploit:~
    autoptt.exe klist
    

    img2

    List tickets in all sessions

    root@kitploit:~
    autoptt.exe tickets
    

    img3

    Export TGT given the LogonId (in this case, 0x5f7d0)

    root@kitploit:~
    autoptt.exe export 0x5f7d0
    

    img4

    Import ticket file given the file name

    root@kitploit:~
    autoptt.exe ptt 0x5f7d0_Administrator.kirbi
    

    img5



    Acknowledgments

    Heavily inspired by and adapted from:

    • Mimikatz by Benjamin Delpy (@gentilkiwi)

    • Rubeus by Will Schroeder (@harmj0y) and Lee Christensen (@leechristensen)

    • klist utility by Microsoft


    Download Tool