mirror of
https://github.com/byt3bl33d3r/MITMf.git
synced 2025-07-08 05:51:48 -07:00
added some comments
This commit is contained in:
parent
b16becd65f
commit
aa89c7f6ed
1 changed files with 2 additions and 0 deletions
|
@ -75,10 +75,12 @@ class ServerConnection(HTTPClient):
|
||||||
self.endHeaders()
|
self.endHeaders()
|
||||||
|
|
||||||
def sendPostData(self):
|
def sendPostData(self):
|
||||||
|
#Handle the browserprofiler plugin output
|
||||||
if 'clientprfl' in self.uri:
|
if 'clientprfl' in self.uri:
|
||||||
out = pformat(self.post2dict(self.postData))
|
out = pformat(self.post2dict(self.postData))
|
||||||
logging.warning(str(self.client.getClientIP()) + " Browser Profilerer data:\n" + out)
|
logging.warning(str(self.client.getClientIP()) + " Browser Profilerer data:\n" + out)
|
||||||
|
|
||||||
|
#Handle the jskeylogger plugin output
|
||||||
elif 'keylog' in self.uri:
|
elif 'keylog' in self.uri:
|
||||||
keys = self.postData.split(",")
|
keys = self.postData.split(",")
|
||||||
del keys[0]; del(keys[len(keys)-1])
|
del keys[0]; del(keys[len(keys)-1])
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue