Skip to content

kabukki/hackit

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Hackit

Hackit is a hacking and utilities toolkit. There are of course many more efficient and specialized software out there, but this was mainly created for learning purposes to practice security concepts, the Rust language and unit tests.

Features

  • Encoding: encode, decode
    • base64
    • uuencoding
    • hexadecimal
    • URL encoding
    • ascii85 ...
  • Cryptography: hash
    • MD5
    • DCC, SHA-1, ...
  • Formatting: prettify, stringify, validate
    • JSON
  • Networking
    • Traceroute
  • DNS
    • Resolve
    • Record lookup
  • Utilities
    • strlen

Usage

The tool is consumed via the command-line interface.

$ hackit uu decode '...'

It can be very conveniently used in combination with xargs to chain commands

$ cat package.json | xargs -0 hackit json compact | xargs -0 hackit md5 hash | xargs hackit strlen
32

Ideas

  • Ciphers: Caesar, Vigenere, vernam ...
  • Network tools

About

🧰 Hacking toolkit and utilities

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages