Changeset 615
- Timestamp:
- 04/29/07 15:55:22 (6 years ago)
- Location:
- branch/max
- Files:
-
- 1 added
- 6 modified
-
config/options.xml (modified) (1 diff)
-
config/profile_editor.xml (modified) (2 diffs)
-
umitCore/UmitDB.py (modified) (1 diff)
-
umitGUI/MainWindow.py (modified) (4 diffs)
-
umitGUI/OptionBuilder.py (modified) (1 diff)
-
umitGUI/ProfileEditor.py (modified) (1 diff)
-
umitGUI/ScriptManager.py (added)
Legend:
- Unmodified
- Added
- Removed
-
branch/max/config/options.xml
r510 r615 402 402 arguments="" 403 403 need_root="0"/> 404 404 405 </nmap_options> -
branch/max/config/profile_editor.xml
r510 r615 6 6 <group name="Target"/> 7 7 <group name="Source"/> 8 <group name="Scripts"/> 8 9 <group name="Other"/> 9 10 <group name="Advanced"/> … … 67 68 <option_check label="Set network interface" option="Set network interface" arg_type="str"/> 68 69 </Source> 70 <Scripts label="Scripts options"> 71 </Scripts> 69 72 <Other label="Other options"> 70 73 <option_check label="Extra options definied by user" option="Extra" arg_type="str"/> -
branch/max/umitCore/UmitDB.py
r516 r615 153 153 self.scans_id = kargs["scans_id"] 154 154 else: 155 log.debug(">>>C eating new scan result entry at data base")155 log.debug(">>>Creating new scan result entry at data base") 156 156 fields = ["scan_name", "nmap_xml_output", "date"] 157 157 -
branch/max/umitGUI/MainWindow.py
r489 r615 43 43 from umitGUI.SearchWindow import SearchWindow 44 44 from umitGUI.BugReport import BugReport 45 from umitGUI.ScriptManager import ScriptManagerWindow 45 46 46 47 from umitCore.Paths import Path … … 203 204 _('Compare Scan Results using Diffies'), 204 205 self._load_diff_compare_cb), 205 206 207 ('Script Manager', 208 gtk.STOCK_INDEX, 209 _('Script Manager'), 210 "<Control>M", 211 _('Manage available scripts'), 212 self._load_script_manager_cb), 206 213 207 214 # Top Level … … 252 259 <menuitem action='Search Scan'/> 253 260 <menuitem action='Compare Results'/> 261 <menuitem action='Script Manager'/> 254 262 <separator /> 255 263 %s … … 842 850 self.diff_window.show_all() 843 851 844 852 def _load_script_manager_cb(self, widget = None, extra = None): 853 self.script_manager_window = ScriptManagerWindow() 854 self.script_manager_window.show_all() 855 845 856 class NonRootWarning (HIGAlertDialog): 846 857 def __init__(self): -
branch/max/umitGUI/OptionBuilder.py
r489 r615 90 90 label = HIGEntryLabel(option_list.getAttribute(u'label')) 91 91 opt_list = OptionList() 92 92 93 93 for opt in options: 94 94 opt_list.append(self.options.get_option\ -
branch/max/umitGUI/ProfileEditor.py
r508 r615 40 40 profile_editor = Path.profile_editor 41 41 42 43 42 class ProfileEditor(HIGWindow): 44 43 def __init__(self, profile_name=None, delete=True):
