Cobalt Strike Auth File Generator

support

This page generates a cobaltstrike.auth file for Cobalt Strike

Pick a version, enter your key, and press Next.

License Key:

Download the cobaltstrike.auth file for or use the base64 encoded string and convert it to a cobaltstrike.auth file.

How to convert the base64 encoded string to a cobaltstrike.auth file (Linux):

  • Save result to cobaltstrike.auth.b64
  • base64 --decode cobaltstrike.auth.b64 > cobaltstrike.auth

How to convert the base64 encoded string to a cobaltstrike.auth file (Windows):

  • Save result to cobaltstrike.auth.b64
  • certutil -decode cobaltstrike.auth.b64 cobaltstrike.auth
  • or from powershell
  • [System.IO.File]::WriteAllBytes("$pwd/cobaltstrike.auth", [convert]::FromBase64String([System.IO.File]::ReadAllText("$pwd/cobaltstrike.auth.b64")))