├── .gitignore ├── LICENSE ├── README.md ├── ginputs.py ├── hackcolors ├── BLANK ├── __init__.py ├── ansi.py ├── ansitowin32.py ├── initialise.py ├── win32.py └── winterm.py ├── ninputs.py └── toolbox.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshmajumdar/Hackers-Toolbox/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshmajumdar/Hackers-Toolbox/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshmajumdar/Hackers-Toolbox/HEAD/README.md -------------------------------------------------------------------------------- /ginputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshmajumdar/Hackers-Toolbox/HEAD/ginputs.py -------------------------------------------------------------------------------- /hackcolors/BLANK: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /hackcolors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshmajumdar/Hackers-Toolbox/HEAD/hackcolors/__init__.py -------------------------------------------------------------------------------- /hackcolors/ansi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshmajumdar/Hackers-Toolbox/HEAD/hackcolors/ansi.py -------------------------------------------------------------------------------- /hackcolors/ansitowin32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshmajumdar/Hackers-Toolbox/HEAD/hackcolors/ansitowin32.py -------------------------------------------------------------------------------- /hackcolors/initialise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshmajumdar/Hackers-Toolbox/HEAD/hackcolors/initialise.py -------------------------------------------------------------------------------- /hackcolors/win32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshmajumdar/Hackers-Toolbox/HEAD/hackcolors/win32.py -------------------------------------------------------------------------------- /hackcolors/winterm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshmajumdar/Hackers-Toolbox/HEAD/hackcolors/winterm.py -------------------------------------------------------------------------------- /ninputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshmajumdar/Hackers-Toolbox/HEAD/ninputs.py -------------------------------------------------------------------------------- /toolbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajeshmajumdar/Hackers-Toolbox/HEAD/toolbox.py --------------------------------------------------------------------------------