Penetration testers favorite tool – Social Engineer Toolkit (SET)

简介: http://svn.thepentest.com/social_engineering_toolkit/ The Social Engineering Toolkit (SET) is ...

http://svn.thepentest.com/social_engineering_toolkit/

 

The Social Engineering Toolkit (SET) is a python-driven suite of custom tools which solely focuses on attacking the human element of penetration testing. It’s main purpose is to augment and simulate social-engineering attacks and allow the tester to effectively test how a targeted attack may succeed. Currently SET has two main methods of attack, one is utilizing Metasploit payloads and Java-based attacks by setting up a malicious website that ultimately delivers your payload. The second method is through file-format bugs and e-mail phishing. The second method supports your own open-mail relay, a customized sendmail open-relay, or Gmail integration to deliver your payloads through e-mail. The goal of SET is to bring awareness to the often forgotten attack vector of social-engineering.

 

The SET is designed to make complex social engineering tasks relatively simple for you by allowing you to utilize
a robust framework for penetration tests. This tool was designed to be released around the same time as the release for the Social Engineering Framework campaign.

Computer Based Social Engineering Tools: Social Engineer Toolkit (SET) works with metasploit and basicaly targets on automatic mail and website attack.

The beauty with the current version of SET is it does not require any external python modules. If you notice, the overall format of SET is very similar to that of Fast-Track’s interactive menu. This was intentional as it will probably become a module in Fast-Track eventually. In the soon to be released Metasploit Framework Unleashed Course by Offensive Security there will be a whole module on how to use this awesome tool. It will cover both email and web attack how-to’s.

Check out Video tutorial about sending malicious e-mails with the help of metasploit here.

Download Social Engineer Toolkit here.

目录
相关文章
Computer Based Social Engineering Tools: Social Engineer Toolkit (SET)
http://www.social-engineer.org/wiki/index.php/Computer_Based_Social_Engineering_Tools:_Social_Engineer_Toolkit_%28SET%29   video http://www.
1005 0
|
22天前
|
存储 自然语言处理 C++
map和set的简单介绍
map和set的简单介绍
18 1
|
1月前
|
存储 安全 Java
java集合框架及其特点(List、Set、Queue、Map)
java集合框架及其特点(List、Set、Queue、Map)
|
3月前
|
JavaScript 前端开发 定位技术
JavaScript 中如何代理 Set(集合) 和 Map(映射)
JavaScript 中如何代理 Set(集合) 和 Map(映射)
48 0
|
3月前
|
存储 安全 Java
Map和Set(JAVA)
Map和Set(JAVA)
50 1
|
3月前
|
编译器 C++ 容器
【C++学习手札】基于红黑树封装模拟实现map和set
【C++学习手札】基于红黑树封装模拟实现map和set
|
12天前
|
存储 JavaScript 前端开发
set和map的区别
set和map的区别
17 4
|
22天前
|
存储 编译器 容器
用红黑树封装实现map和set
用红黑树封装实现map和set
14 0
|
22天前
|
存储 JavaScript 索引
js开发:请解释什么是ES6的Map和Set,以及它们与普通对象和数组的区别。
ES6引入了Map和Set数据结构。Map的键可为任意类型,有序且支持get、set、has、delete操作;Set存储唯一值,提供add、delete、has方法。两者皆可迭代。示例展示了Map和Set的基本用法,如添加、查询、删除元素。
13 2