diff --git a/features/commands/help.feature b/features/commands/help.feature index 7443dad7ba..e1fcd2d010 100644 --- a/features/commands/help.feature +++ b/features/commands/help.feature @@ -1,7 +1,7 @@ Feature: Help command Background: - Given I run `msfconsole -L` interactively + Given I run `msfconsole` interactively And I wait for stdout to contain "Free Metasploit Pro trial: http://r-7.co/trymsp" Scenario: The 'help' command's output diff --git a/features/modules/exploit/smb/ms08_067_netapi.feature b/features/modules/exploit/smb/ms08_067_netapi.feature index 4a46478cc0..8dcad6cc9e 100644 --- a/features/modules/exploit/smb/ms08_067_netapi.feature +++ b/features/modules/exploit/smb/ms08_067_netapi.feature @@ -5,7 +5,7 @@ Feature: MS08-067 netapi Given a directory named "home" And I cd to "home" And a mocked home directory - Given I run `msfconsole -L` interactively + Given I run `msfconsole` interactively And I wait for stdout to contain "Free Metasploit Pro trial: http://r-7.co/trymsp" Scenario: The MS08-067 Module should have the following options diff --git a/features/msfconsole/database_yml.feature b/features/msfconsole/database_yml.feature index 4e898b2f2b..b482c799ae 100644 --- a/features/msfconsole/database_yml.feature +++ b/features/msfconsole/database_yml.feature @@ -48,7 +48,7 @@ Feature: `msfconsole` `database.yml` database: project_metasploit_framework_test username: project_metasploit_framework_test """ - When I run `msfconsole -L --environment test --yaml command_line.yml` interactively + When I run `msfconsole --environment test --yaml command_line.yml` interactively And I wait for stdout to contain "Free Metasploit Pro trial: http://r-7.co/trymsp" And I type "exit" Then the output should contain "command_line_metasploit_framework_test" @@ -84,7 +84,7 @@ Feature: `msfconsole` `database.yml` database: project_metasploit_framework_test username: project_metasploit_framework_test """ - When I run `msfconsole -L --environment test` interactively + When I run `msfconsole --environment test` interactively And I wait for stdout to contain "Free Metasploit Pro trial: http://r-7.co/trymsp" And I type "exit" Then the output should contain "environment_metasploit_framework_test" @@ -113,7 +113,7 @@ Feature: `msfconsole` `database.yml` database: project_metasploit_framework_test username: project_metasploit_framework_test """ - When I run `msfconsole -L --environment test` interactively + When I run `msfconsole --environment test` interactively And I wait for stdout to contain "Free Metasploit Pro trial: http://r-7.co/trymsp" And I type "exit" Then the output should contain "user_metasploit_framework_test" @@ -133,7 +133,7 @@ Feature: `msfconsole` `database.yml` database: project_metasploit_framework_test username: project_metasploit_framework_test """ - When I run `msfconsole -L --environment test` interactively + When I run `msfconsole --environment test` interactively And I wait for stdout to contain "Free Metasploit Pro trial: http://r-7.co/trymsp" And I type "exit" Then the output should contain "project_metasploit_framework_test" @@ -148,7 +148,7 @@ Feature: `msfconsole` `database.yml` And a mocked home directory And I cd to "../.." And the project "database.yml" does not exist - When I run `msfconsole -L --environment test` interactively + When I run `msfconsole --environment test` interactively And I wait for stdout to contain "Free Metasploit Pro trial: http://r-7.co/trymsp" And I type "db_status" And I type "exit" @@ -158,8 +158,8 @@ Feature: `msfconsole` `database.yml` And the output should not contain "project_metasploit_framework_test" And the output should contain "[*] postgresql selected, no connection" - Scenario: Starting `msfconsole -L` with a valid database.yml - Given I run `msfconsole -L` interactively + Scenario: Starting `msfconsole` with a valid database.yml + Given I run `msfconsole` interactively And I wait for stdout to contain "Free Metasploit Pro trial: http://r-7.co/trymsp" When I type "db_status" And I type "exit"