- Kali Linux:An Ethical Hacker's Cookbook
- Himanshu Sharma
- 132字
- 2021-07-08 09:41:15
How to do it...
To configure ike-scan follow the given steps:
- Browse to the directory where ike-scan is installed.
- Install autoconf by running the following command:
apt-get install autoconf
- Run autoreconf --install to generate a .configure file.
- Run ./configure.
- Run make to build the project.
- Run make check to verify the building stage.
- Run make install to install ike-scan.
- To scan a host for an aggressive mode handshake, use the following commands:
ike-scan x.x.x.x -M -A
The following screenshot shows the output for the preceding command:

- Sometimes we will see the response after providing a valid group name like (vpn):
ike-scan x.x.x.x -M -A id=vpn
The following screenshot shows the example of the preceding command:

We can even brute force the groupnames using the following script:
https://github.com/SpiderLabs/groupenum.
The command:
./dt_group_enum.sh x.x.x.x groupnames.dic
https://github.com/SpiderLabs/groupenum.
The command:
./dt_group_enum.sh x.x.x.x groupnames.dic
推薦閱讀
- 程序員面試白皮書
- ThinkPHP 5實戰(zhàn)
- Spring技術(shù)內(nèi)幕:深入解析Spring架構(gòu)與設(shè)計
- C++面向?qū)ο蟪绦蛟O(shè)計(微課版)
- Visual C++實例精通
- 深入淺出Serverless:技術(shù)原理與應(yīng)用實踐
- 青少年學(xué)Python(第1冊)
- 深入淺出React和Redux
- Programming with CodeIgniterMVC
- Vue.js 2 Web Development Projects
- 后臺開發(fā):核心技術(shù)與應(yīng)用實踐
- 從零學(xué)Java設(shè)計模式
- Web前端開發(fā)技術(shù):HTML、CSS、JavaScript
- Mobile Forensics:Advanced Investigative Strategies
- Head First Kotlin程序設(shè)計