This repository has been archived by the owner on Dec 6, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Installation
byt3bl33d3r edited this page Apr 9, 2016
·
42 revisions
#Installation
#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