Skip to content

Commit a5698eb

Browse files
committed
Fix metadata
1 parent 0113cbd commit a5698eb

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

modules/auxiliary/admin/upnp/soap_portmapping.rb

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,10 @@ class Metasploit3 < Msf::Auxiliary
1313
def initialize
1414
super(
1515
'Name' => 'UPnP IGD SOAP Port Mapping Utility',
16-
'Description' => 'Manage port mappings on UPnP IGD-capable device using the AddPortMapping and DeletePortMapping SOAP requests',
16+
'Description' => %q{
17+
Manage port mappings on UPnP IGD-capable device using the AddPortMapping and
18+
DeletePortMapping SOAP requests
19+
},
1720
'Author' =>
1821
[
1922
'St0rn <fabien[at]anbu-pentest.com>', # initial module
@@ -43,11 +46,11 @@ def initialize
4346
[
4447
OptString.new('TARGETURI', [true, 'UPnP control URL', '/' ]),
4548
OptAddress.new('INTERNAL_CLIENT', [false, 'Internal client hostname/IP']),
46-
OptAddress.new('EXTERNAL_CLIENT', [false, 'External client hostname/IP']),
49+
OptAddress.new('EXTERNAL_CLIENT', [true, 'External client hostname/IP']),
4750
OptEnum.new('PROTOCOL', [true, 'Transport level protocol to map', 'TCP', %w(TCP UDP)]),
4851
OptInt.new('INTERNAL_PORT', [false, 'Internal port']),
4952
OptInt.new('EXTERNAL_PORT', [true, 'External port']),
50-
OptInt.new('LEASE_DURATION', [true, 'Lease time for mapping, in seconds', 3600])
53+
OptInt.new('LEASE_DURATION', [false, 'Lease time for mapping, in seconds', 3600])
5154
],
5255
self.class
5356
)

0 commit comments

Comments
 (0)