Changeset 3269
- Timestamp:
- 07/31/08 16:27:23 (5 years ago)
- Location:
- trunk
- Files:
-
- 4 modified
-
share/doc/umit/help.html (modified) (1 diff)
-
share/doc/umit/scanning/scanning.xml (modified) (1 diff)
-
umitGUI/ScanNotebook.py (modified) (2 diffs)
-
umitGUI/TargetCombo.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/share/doc/umit/help.html
r664 r3269 16 16 17 17 <ul> 18 <li><a href="nse_facilitator.html">NSE Facilitator</a></li>19 18 <li><a href="comparing_results.html">Comparing Results</a></li> 20 19 <li><a href="profile_editor.html">Profile Editor</a></li> -
trunk/share/doc/umit/scanning/scanning.xml
r664 r3269 94 94 <title>Conducting a scan</title> 95 95 96 <para># Selecting the profile</para> 97 <para># Customizing the command that is going to be executed</para> 96 <para>A profile is a set of options that is going to be used during the scan 97 process against the target(s) specified. Profiles are customizable through the 98 <emphasis>Profile Editor Window</emphasis>. After specifying a target, select 99 one of the profiles in the profile list, and watch the command in the field 100 get changed according to the profile selected. This is awesome if you always 101 have to run a scan with the same set of options. If you are a newbie, this is 102 awesome too, because you can use one of the preset profiles according to your 103 need.</para> 104 <para>Sometimes we need to fine tune a specific profile for a specific occasion 105 that is not likely to occour very often. In this case, it is not a good idea to 106 create a new profile, or to change an existing one. After selecting a target and 107 a profile, you can customize the command that will actually run, by editing it 108 directly in the command field.</para> 109 <para>There is a known issue regarding</para> 98 110 <para># Nmap Output refresh</para> 99 111 <section> -
trunk/umitGUI/ScanNotebook.py
r3267 r3269 345 345 self.empty_target = _("<target>") 346 346 347 self.toolbar.target_entry.c onnect('changed',348 self.refresh_command_target)347 self.toolbar.target_entry.changed_handler = self.toolbar.target_entry.\ 348 connect('changed', self.refresh_command_target) 349 349 self.toolbar.profile_entry.connect('changed', self.refresh_command) 350 350 … … 486 486 self.set_tab_label(profile) 487 487 488 if target != '': 488 if target != '': 489 489 self.toolbar.add_new_target(target) 490 491 # TODO: Fix this workarround. The following line will set back the 492 # correct command to be executed after the refresh_command_target 493 # method that will be called by the targetcombo update method. 494 self.command_toolbar.command = command 490 495 491 496 if (command.find("-iR") == -1 and command.find("-iL") == -1): -
trunk/umitGUI/TargetCombo.py
r3177 r3269 33 33 self.completion.set_model(self.get_model()) 34 34 self.completion.set_text_column(0) 35 self.changed_handler = None 35 36 36 37 self.update()
