mirror of
https://github.com/byt3bl33d3r/MITMf.git
synced 2025-08-14 10:47:05 -07:00
Initial webserver implementation, plus organized directory structure a bit better
This commit is contained in:
parent
fb26d89204
commit
929520fcc8
27 changed files with 54 additions and 240 deletions
9
mitmf.py
9
mitmf.py
|
@ -172,12 +172,17 @@ NetCreds().start(args.interface, myip)
|
|||
print "|_ Net-Creds v{} online".format(NetCreds.version)
|
||||
|
||||
#Start DNSChef
|
||||
from core.dnschef.DNSchef import DNSChef
|
||||
from core.servers.dns.DNSchef import DNSChef
|
||||
DNSChef.getInstance().start()
|
||||
print "|_ DNSChef v{} online".format(DNSChef.version)
|
||||
|
||||
#Start the HTTP Server
|
||||
from core.servers.http.HTTPServer import HTTPServer
|
||||
HTTPServer.getInstance().start()
|
||||
print "|_ HTTPserver online"
|
||||
|
||||
#Start the SMB server
|
||||
from core.protocols.smb.SMBserver import SMBserver
|
||||
from core.servers.smb.SMBserver import SMBserver
|
||||
print "|_ SMBserver online (Impacket {})\n".format(SMBserver.impacket_ver)
|
||||
SMBserver().start()
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue