首页 > 编程语言 > 详细

OSCP Learning Notes - Enumeration(1)

时间:2019-06-22 20:16:44      阅读:108      评论:0      收藏:0      [点我收藏+]

Installing Kioptrix: Level 1

Download the vm machine form https://www.vulnhub.com/entry/kioptrix-level-1-1,22/.

In the Kali Linux:

Find the devices in the intranet using the following command:

netdiscover -i eth0

技术分享图片

 Scan the target kioptrix vm through nmap

nmap -Pn -sS --stats-every 3m --max-retries 1 --max-scan-delay 20 --defeat-rst-ratelimit -T4 -p1-65535 -oN /root/kioptrix1.txt 10.0.0.20

技术分享图片

nmap -nvv -Pn -sSV -p 22,80,111,139,443,1024 --version-intensity 9 -A -oN /root/kioptrix1_detailed.txt 10.0.0.20

技术分享图片

nmap -Pn --top-ports 1000 -sU --stats-every 3m --max-retries 1 -T3 -oN /root/kioptrix1_U.txt 10.0.0.20

技术分享图片

 

SSH Enumeration

 1. Search vulnarabilites through Internet.

   Key words: openssh 2.9p2 exploit

   技术分享图片

    技术分享图片

2.Search exploitable information through Kali

searchsploit openssh

技术分享图片

3. Try to exploit the target host - such as brute force attack

技术分享图片

 

OSCP Learning Notes - Enumeration(1)

原文:https://www.cnblogs.com/keepmoving1113/p/11070025.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!