Skip to content
This repository has been archived by the owner on Dec 6, 2023. It is now read-only.

Installation

byt3bl33d3r edited this page Apr 9, 2016 · 42 revisions

#Installation

  1. Kali/Debian/Ubuntu
  2. Arch Linux
  3. Windows

#Kali/Debian/Ubuntu

  • Install Core Dependencies
apt-get install libssl-dev libffi-dev python-dev
  • Initialize Sub-modules

cd into the cloned repository and run the following command to pull down all sub-modules:

#~ git submodule init && git submodule update --recursive
  • Install Python Dependencies

Use virtualenvwrapper to install CME's dependencies in a python virtualenv:

~# apt-get install virtualenvwrapper
~# source /usr/share/virtualenvwrapper/virtualenvwrapper.sh
~# mkvirtualenv CME
(CME) ~# pip install -r requirements.txt
(CME) ~# python crackmapexec.py --help
  • Initialize the Database

cd into the setup folder and run the setup_database.py script to initialize the database.

#Arch Linux TO DO

#Windows Although running CME on Windows should be possible, it isn't officially supported

TO DO