Skip to content

Commit

Permalink
Merge branch 'develop' of github.com:andresriancho/w3af into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
andresriancho committed Feb 4, 2015
2 parents 03eaf0b + 22c7549 commit 38cb101
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion doc/sphinx/basic-ui.rst
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ Here is a usage example of these commands in the ``http-settings`` menu:
w3af/config:http-settings>>> back
w3af>>>
To summarize, the ``view`` command is used to list all configurable parameters, with their values and a description. The ``set`` command is used to change a value. Finally we can execute ``back``, “.” or press CTRL+C to return to the previous menu. A detailed help for every configuration parameter can be obtained using ``help parameter`` as shown in this example:
To summarize, the ``view`` command is used to list all configurable parameters, with their values and a description. The ``set`` command is used to change a value. Finally we can execute ``back`` or press CTRL+C to return to the previous menu. A detailed help for every configuration parameter can be obtained using ``help parameter`` as shown in this example:

.. code-block:: none
Expand Down
2 changes: 1 addition & 1 deletion doc/sphinx/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ Installation in Kali

.. code-block:: console
cd ~
cd ~
apt-get update
apt-get install -y python-pip
pip install --upgrade pip
Expand Down
2 changes: 1 addition & 1 deletion w3af/core/ui/console/plugins.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ def _enablePlugins(self, list):
#
if self._name == 'output' and 'console' not in enabled and \
len(enabled) == 0:
msg = "Warning: You disabled the console output plugin. If you"\
msg = "\nWarning: You disabled the console output plugin. If you"\
" start a new scan, the discovered vulnerabilities won\'t be"\
" printed to the console, we advise you to enable at least"\
" one output plugin in order to be able to actually see the"\
Expand Down
2 changes: 1 addition & 1 deletion w3af/core/ui/console/rootMenu.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def _cmd_start(self, params):
# Check if the console output plugin is enabled or not, and warn.
output_plugins = self._w3af.plugins.get_enabled_plugins('output')
if 'console' not in output_plugins:
msg = "Warning: You disabled the console output plugin. If you"\
msg = "\nWarning: You disabled the console output plugin. If you"\
" start a new scan, the discovered vulnerabilities won\'t be"\
" printed to the console, we advise you to enable at least"\
" one output plugin in order to be able to actually see the"\
Expand Down

0 comments on commit 38cb101

Please sign in to comment.