From e1f9a87682d3d37ba039d8e8eac7d2bfe0eea53e Mon Sep 17 00:00:00 2001 From: Cristhian Amaya Date: Sat, 20 Oct 2018 19:08:36 +0200 Subject: [PATCH] Update requirements information Added requirements.txt file containing all the necessary dependencies and updated README file to include installation instructions. --- README.txt | 21 ++++++++++++--------- requirements.txt | 16 ++++++++++++++++ 2 files changed, 28 insertions(+), 9 deletions(-) create mode 100644 requirements.txt diff --git a/README.txt b/README.txt index 0450be5..9f62bb7 100644 --- a/README.txt +++ b/README.txt @@ -3,16 +3,19 @@ SSLScrape | A scanning tool for scaping hostnames from SSL certificates. Written by Peter Kim and @bbuerhaus - _________ _________.____ _________ - / _____// _____/| | / _____/ ________________ ______ ____ - \_____ \ \_____ \ | | \_____ \_/ ___\_ __ \__ \ \____ \_/ __ \ - / \/ \| |___ / \ \___| | \// __ \| |_> > ___/ + _________ _________.____ _________ + / _____// _____/| | / _____/ ________________ ______ ____ + \_____ \ \_____ \ | | \_____ \_/ ___\_ __ \__ \ \____ \_/ __ \ + / \/ \| |___ / \ \___| | \// __ \| |_> > ___/ /_______ /_______ /|_______ \/_______ /\___ >__| (____ / __/ \___ > - \/ \/ \/ \/ \/ \/|__| \/ + \/ \/ \/ \/ \/ \/|__| \/ Usage | python sslScrape.py [CIDR Range] E.X | python sslScrape.py 10.100.100.0/24 - -Requirements: -pip install ndg-httpsclient -pip install python-masscan + +## Installation: + +1. Clone this repository by executing git clone https://github.com/cheetz/sslScrape +2. (Optional) Create a virtualenv(https://virtualenv.pypa.io/en/stable/) for sslScrape and activate it +3. Inside the sslScrape directory, execute pip install -r requirements.txt which will install the necessary dependencies + diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..0a3d13e --- /dev/null +++ b/requirements.txt @@ -0,0 +1,16 @@ +asn1crypto==0.24.0 +certifi==2018.10.15 +cffi==1.11.5 +chardet==3.0.4 +cryptography==2.3.1 +enum34==1.1.6 +idna==2.7 +ipaddress==1.0.22 +ndg-httpsclient==0.5.1 +pyasn1==0.4.4 +pycparser==2.19 +pyOpenSSL==18.0.0 +python-masscan==0.1.2 +requests==2.20.0 +six==1.11.0 +urllib3==1.24