Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/trustedsec/social-engineer-toolkit
The Social-Engineer Toolkit (SET) repository from TrustedSec - All new versions of SET will be deployed here.
https://github.com/trustedsec/social-engineer-toolkit
Last synced: 3 days ago
JSON representation
The Social-Engineer Toolkit (SET) repository from TrustedSec - All new versions of SET will be deployed here.
- Host: GitHub
- URL: https://github.com/trustedsec/social-engineer-toolkit
- Owner: trustedsec
- Created: 2012-12-31T22:01:33.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2024-10-21T15:46:18.000Z (about 2 months ago)
- Last Synced: 2024-10-29T15:02:56.371Z (about 1 month ago)
- Language: Python
- Size: 171 MB
- Stars: 10,917
- Watchers: 622
- Forks: 2,767
- Open Issues: 299
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- 42-resources - Social Engineer Toolkit
- Python-Security-Tool-Database - Social Engineering Toolkit - Built by one of my favorite people [@HackingDave](www.twitter.com/HackingDave), this Python toolkit (so it's built with more than just Python, sue me) is a modular piece of art with 15+ built in tools that work well out of the box. Plus for new folks to the tool it also has a extremely easy to digest User Manual. (Synopsis / Table of Contents)
- awesome-list - social-engineer-toolkit - Engineer Toolkit (SET) repository from TrustedSec - All new versions of SET will be deployed here. | trustedsec | 6745 | (Python)
- awesome-termux-hacking - social-engineer-toolkit - The Social-Engineer Toolkit (SET) repository from TrustedSec - All new versions of SET will be deployed here..[![->](https://img.shields.io/github/stars/trustedsec/social-engineer-toolkit.svg?style=social&label=Star&maxAge=2592000)](https://github.com/trustedsec/social-engineer-toolkit/stargazers/) (Uncategorized / Uncategorized)
- my-awesome-learning-resources - Social Engineering Toolkit
- awesome-starred - trustedsec/social-engineer-toolkit - The Social-Engineer Toolkit (SET) repository from TrustedSec - All new versions of SET will be deployed here. (others)
README
# The Social-Engineer Toolkit (SET)
* Copyright :copyright: 2020
* Written by: David Kennedy (ReL1K) @HackingDave
* Company: [TrustedSec](https://www.trustedsec.com)
## Description
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.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.
Please read the LICENSE under readme/LICENSE for the licensing of SET.#### Supported platforms:
* Linux
* Mac OS X (experimental)# Installation
## Install via requirements.txt
```bash
pip3 install -r requirements.txt
python3 setup.py
```## Install SET
=======
#### Mac OS X
You will need to use a virtual environment for the Python install if you are using an M2 Macbook with the following instructions in your CLI within the social-engineer-toolkit directory.
```bash
# to install dependencies, run the following:
python3 -m venv path/to/venv
source path/to/venv/bin/activate
python3 -m pip install -r requirements.txt# to install SET
sudo python3 setup.py
```
## Installation
#### Windows 10 WSL/WSL2 Kali Linux
```bash
sudo apt install set -y
```
Kali Linux on Windows 10 is a minimal installation so it doesn't have any tools installed.
You can easily install Social Engineer Toolkit on WSL/WSL2 without needing pip using the above command.#### Linux
```bash
git clone https://github.com/trustedsec/social-engineer-toolkit/ setoolkit/
cd setoolkit
pip3 install -r requirements.txt
python setup.py
```## SET Tutorial
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).
## Bugs and enhancements
For bug reports or enhancements, please open an [issue](https://github.com/trustedsec/social-engineer-toolkit/issues) here.