added version attr to all plugins

This commit is contained in:
byt3bl33d3r 2015-03-10 04:01:28 +01:00
parent 4c465b3806
commit ad6c3d8ed3
16 changed files with 36 additions and 20 deletions

View file

@ -53,12 +53,13 @@ from tempfile import mkstemp
from configobj import ConfigObj
class FilePwn(Plugin):
name = "FilePwn"
optname = "filepwn"
desc = "Backdoor executables being sent over http using bdfactory"
name = "FilePwn"
optname = "filepwn"
desc = "Backdoor executables being sent over http using bdfactory"
implements = ["handleResponse"]
has_opts = False
req_root = False
version = "0.2"
has_opts = False
req_root = False
def initialize(self, options):
'''Called if plugin is enabled, passed the options namespace'''