OpenRCE / sulley

A pure-python fully automated and unattended fuzzing framework.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Use Network Monitor from Host Computer?

opened this issue · comments

Hi,

I was wondering if there is a way to run a Network Monitor from the host computer? Or does it always have to be running on the target computer? If so, are there any special flags I should use/what is the implementation?

Thanks,
4leaf

commented

So this is a somewhat odd issue.

Since the windows TCP stack knows that it's hitting itself, the request itself doesn't get down to a level that can be sniffed.

There are a couple work-arounds, namely creating two instances on the same box, and doing some routing magic to force the TCP stack to actually send out traffic.

You can also send requests using raw sockets, which is on the roadmap if I can get it to work.

Sorry I don't have a better answer, this issue is quite a pain in the ass :(

Okay thanks for the confirmation Fitblip, I was just hoping!