Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release fixes #2558

Merged
merged 3 commits into from
Oct 21, 2013
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 2 additions & 4 deletions modules/exploits/osx/local/persistence.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
##
# ## This file is part of the Metasploit Framework and may be subject to
# redistribution and commercial restrictions. Please see the Metasploit
# web site for more information on licensing and terms of use.
# http://metasploit.com/
# This module requires Metasploit: http//metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##

require 'msf/core'
Expand Down
1 change: 1 addition & 0 deletions modules/exploits/unix/webapp/webtester_exec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ def initialize(info={})
],
'References' =>
[
['OSVDB' => '98750'],
['URL' => 'https://sourceforge.net/p/webtesteronline/bugs/3/']
],
'Payload' =>
Expand Down
9 changes: 3 additions & 6 deletions modules/exploits/windows/local/vss_persistence.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
##
# ## This file is part of the Metasploit Framework and may be subject to
# redistribution and commercial restrictions. Please see the Metasploit
# web site for more information on licensing and terms of use.
# http://metasploit.com/
# This module requires Metasploit: http//metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##

require 'msf/core'
Expand Down Expand Up @@ -61,8 +59,7 @@ def exploit

os = sysinfo['OS']
unless os =~ /Windows 7/
print_error("This module has been tested only on Windows 7")
return
print_warning("This module has been tested only on Windows 7")
end

unless is_admin?
Expand Down
10 changes: 4 additions & 6 deletions modules/payloads/singles/cmd/unix/bind_lua.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
##
# This file is part of the Metasploit Framework and may be subject to
# redistribution and commercial restrictions. Please see the Metasploit
# web site for more information on licensing and terms of use.
# http://metasploit.com/
# This module requires Metasploit: http//metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##

require 'msf/core'
Expand All @@ -17,8 +15,8 @@ module Metasploit4

def initialize(info = {})
super(merge_info(info,
'Name' => 'Unix Command Shell, Bind TCP (via LUA)',
'Description' => 'Listen for a connection and spawn a command shell via LUA',
'Name' => 'Unix Command Shell, Bind TCP (via Lua)',
'Description' => 'Listen for a connection and spawn a command shell via Lua',
'Author' =>
[
'xistence <xistence[at]0x90.nl>',
Expand Down
10 changes: 4 additions & 6 deletions modules/payloads/singles/cmd/unix/reverse_lua.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
##
# This file is part of the Metasploit Framework and may be subject to
# redistribution and commercial restrictions. Please see the Metasploit
# web site for more information on licensing and terms of use.
# http://metasploit.com/
# This module requires Metasploit: http//metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##

require 'msf/core'
Expand All @@ -17,8 +15,8 @@ module Metasploit3

def initialize(info = {})
super(merge_info(info,
'Name' => 'Unix Command Shell, Reverse TCP (via LUA)',
'Description' => 'Creates an interactive shell via LUA',
'Name' => 'Unix Command Shell, Reverse TCP (via Lua)',
'Description' => 'Creates an interactive shell via Lua',
'Author' =>
[
'xistence <xistence[at]0x90.nl>',
Expand Down
10 changes: 4 additions & 6 deletions modules/payloads/singles/cmd/windows/bind_lua.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
##
# This file is part of the Metasploit Framework and may be subject to
# redistribution and commercial restrictions. Please see the Metasploit
# web site for more information on licensing and terms of use.
# http://metasploit.com/
# This module requires Metasploit: http//metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##

require 'msf/core'
Expand All @@ -17,8 +15,8 @@ module Metasploit4

def initialize(info = {})
super(merge_info(info,
'Name' => 'Windows Command Shell, Bind TCP (via LUA)',
'Description' => 'Listen for a connection and spawn a command shell via LUA',
'Name' => 'Windows Command Shell, Bind TCP (via Lua)',
'Description' => 'Listen for a connection and spawn a command shell via Lua',
'Author' =>
[
'xistence <xistence[at]0x90.nl>',
Expand Down
8 changes: 3 additions & 5 deletions modules/payloads/singles/cmd/windows/generic.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
##
# This file is part of the Metasploit Framework and may be subject to
# redistribution and commercial restrictions. Please see the Metasploit
# web site for more information on licensing and terms of use.
# http://metasploit.com/
# This module requires Metasploit: http//metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##

require 'msf/core'
Expand All @@ -19,7 +17,7 @@ def initialize(info = {})
super(merge_info(info,
'Name' => 'Windows Command, Generic Command Execution',
'Description' => 'Executes the supplied command',
'Author' => 'hdm',
'Author' => 'juan vazquez',
'License' => MSF_LICENSE,
'Platform' => 'win',
'Arch' => ARCH_CMD,
Expand Down
10 changes: 4 additions & 6 deletions modules/payloads/singles/cmd/windows/reverse_lua.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
##
# This file is part of the Metasploit Framework and may be subject to
# redistribution and commercial restrictions. Please see the Metasploit
# web site for more information on licensing and terms of use.
# http://metasploit.com/
# This module requires Metasploit: http//metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##

require 'msf/core'
Expand All @@ -17,8 +15,8 @@ module Metasploit3

def initialize(info = {})
super(merge_info(info,
'Name' => 'Windows Command Shell, Reverse TCP (via LUA)',
'Description' => 'Creates an interactive shell via LUA',
'Name' => 'Windows Command Shell, Reverse TCP (via Lua)',
'Description' => 'Creates an interactive shell via Lua',
'Author' =>
[
'xistence <xistence[at]0x90.nl>',
Expand Down