2019-03-12 12:36:32 +00:00
# <p>:briefcase: The Social-Engineer Toolkit (SET) :briefcase: </p>
2017-03-30 08:14:11 +00:00
2018-02-12 16:46:05 +00:00
Copyright 2018 The Social-Engineer Toolkit (SET)
2013-12-18 06:07:59 +00:00
Written by: David Kennedy (ReL1K)
Company: [TrustedSec ](https://www.trustedsec.com )
2015-07-02 12:22:21 +00:00
DISCLAIMER: This is only for testing purposes and can only be used where strict consent has been given. Do not use this for illegal purposes, period.
2013-12-18 06:07:59 +00:00
Please read the LICENSE under readme/LICENSE for the licensing of SET.
2017-03-30 08:14:11 +00:00
2019-03-12 12:25:57 +00:00
# :book: SET Tutorial :book:
2016-10-14 02:52:33 +00:00
2017-03-30 08:14:11 +00:00
For a full document on how to use SET, [visit the SET user manual ](https://github.com/trustedsec/social-engineer-toolkit/raw/master/readme/User_Manual.pdf ).
2016-10-14 02:52:33 +00:00
2017-03-30 08:14:11 +00:00
2019-03-12 12:27:21 +00:00
# :computer: Features :computer:
2013-12-31 17:36:05 +00:00
2018-10-19 18:34:44 +00:00
2015-07-03 02:18:42 +00:00
The Social-Engineer Toolkit is an open-source penetration testing framework designed for social engineering. SET has a number of custom attack vectors that allow you to make a believable attack quickly. SET is a product of TrustedSec, LLC – an information security consulting firm located in Cleveland, Ohio.
2013-12-31 17:36:05 +00:00
2019-03-12 12:27:21 +00:00
## Bugs and enhancements
2017-03-30 08:14:11 +00:00
For bug reports or enhancements, please open an [issue ](https://github.com/trustedsec/social-engineer-toolkit/issues ) here.
2013-12-31 17:36:05 +00:00
2017-03-30 08:14:11 +00:00
2019-03-12 12:27:21 +00:00
## Supported platforms
2013-12-31 17:36:05 +00:00
2019-03-12 12:25:57 +00:00
* Linux :penguin:
* Mac OS X :apple:
2017-03-30 08:14:11 +00:00
2019-03-12 12:27:21 +00:00
# :inbox_tray: Installation :inbox_tray:
2017-05-24 17:11:13 +00:00
## Resolve dependencies
2017-03-30 08:14:11 +00:00
*Ubuntu/Debian System*
```
2018-10-19 18:34:44 +00:00
$ apt-get -y install git apache2 python-requests libapache2-mod-php \
2017-03-30 08:14:11 +00:00
python-pymssql build-essential python-pexpect python-pefile python-crypto python-openssl
```
*Arch System*
```bash
2018-01-18 19:27:08 +00:00
$ pacman -S --noconfirm --needed git python2 python2-beautifulsoup4 python2-pexpect python2-crypto
2017-03-30 08:14:11 +00:00
$ wget https://github.com/erocarrera/pefile/archive/master.zip & & unzip master.zip
$ chmod a+x pefile-master/setup.py & & rm -rf pefile-master*
```
*Fedora System*
```bash
$ dnf -y install git python-pexpect python-pefile python-crypto pyOpenSSL
```
*CentOS System*
```bash
$ yum update -y & & yum install python-pexpect python-crypto python-openssl python-pefile
```
*Mac OS X dependent*
```bash
$ pip install pexpect pycrypto pyopenssl pefile
```
2017-05-24 17:11:13 +00:00
2019-03-12 12:27:21 +00:00
## Install SET
2017-05-24 17:11:13 +00:00
*All OSs*
```bash
$ git clone https://github.com/trustedsec/social-engineer-toolkit/ set/
$ cd set
$ python setup.py install
```