/usr/share/w3af/plugins/output/gtkOutput.py is in w3af-console 1.1svn5547-1.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 | '''
gtkOutput.py
Copyright 2008 Andres Riancho
This file is part of w3af, w3af.sourceforge.net .
w3af is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation version 2 of the License.
w3af is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with w3af; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
'''
import Queue
import time
import core.data.kb.knowledgeBase as kb
import core.data.constants.severity as severity
from core.controllers.basePlugin.baseOutputPlugin import baseOutputPlugin
from core.data.options.optionList import optionList
class gtkOutput(baseOutputPlugin):
'''
Saves messages to kb.kb.getData('gtkOutput', 'queue') to be displayed in the UI.
@author: Andres Riancho ( andres.riancho@gmail.com )
'''
def __init__(self):
baseOutputPlugin.__init__(self)
if not kb.kb.getData('gtkOutput', 'queue') == []:
self.queue = kb.kb.getData('gtkOutput', 'queue')
else:
self.queue = Queue.Queue()
kb.kb.save('gtkOutput', 'queue' , self.queue)
def debug(self, msgString, newLine = True ):
'''
This method is called from the output object. The output object was called from a plugin
or from the framework. This method should take an action for debug messages.
'''
#
# I don't really want to add debug messages to the queue, as they are only used
# in the time graph that's displayed under the log. In order to save some memory
# I'm only creating the object, but without any msg.
#
m = message( 'debug', '', time.time(), newLine )
self._addToQueue( m )
def information(self, msgString , newLine = True ):
'''
This method is called from the output object. The output object was called from a plugin
or from the framework. This method should take an action for informational messages.
'''
m = message( 'information', self._cleanString(msgString), time.time(), newLine )
self._addToQueue( m )
def error(self, msgString , newLine = True ):
'''
This method is called from the output object. The output object was called from a plugin
or from the framework. This method should take an action for error messages.
'''
m = message( 'error', self._cleanString(msgString), time.time(), newLine )
self._addToQueue( m )
def vulnerability(self, msgString , newLine=True, severity=severity.MEDIUM ):
'''
This method is called from the output object. The output object was called from a plugin
or from the framework. This method should take an action when a vulnerability is found.
'''
m = message( 'vulnerability', self._cleanString(msgString), time.time(), newLine )
m.setSeverity( severity )
self._addToQueue( m )
def console( self, msgString, newLine = True ):
'''
This method is used by the w3af console to print messages to the outside.
'''
m = message( 'console', self._cleanString(msgString), time.time(), newLine )
self._addToQueue( m )
def _addToQueue( self, m ):
'''
Adds a message object to the queue. If the queue isn't there, it creates one.
'''
self.queue.put( m )
def logHttp( self, request, response):
pass
def logEnabledPlugins(self, enabledPluginsDict, pluginOptionsDict):
'''
This method is called from the output managerobject.
This method should take an action for the enabled plugins
and their configuration.
'''
pass
def getLongDesc( self ):
'''
@return: A DETAILED description of the plugin functions and features.
'''
return '''
Saves messages to kb.kb.getData('gtkOutput', 'queue'), messages are saved in the form of
objects. This plugin was created to be able to communicate with the gtkUi and should be
enabled if you are using it.
'''
def getOptions( self ):
'''
@return: A list of option objects for this plugin.
'''
ol = optionList()
return ol
def setOptions( self, OptionList ):
pass
class message:
def __init__( self, msg_type, msg , msg_time, newLine=True ):
'''
@parameter msg_type: console, information, vulnerability, etc
@parameter msg: The message itself
@parameter msg_time: The time when the message was produced
@parameter newLine: Should I print a newline ? True/False
'''
self._type = msg_type
self._msg = msg
self._newLine = newLine
self._time = msg_time
self._severity = None
def getSeverity( self ):
return self._severity
def setSeverity( self, the_severity ):
self._severity = the_severity
def getMsg( self ):
return self._msg
def getType( self ):
return self._type
def getNewLine( self ):
return self._newLine
def getRealTime( self ):
return self._time
def getTime( self ):
return time.strftime("%c", time.localtime(self._time))
|