Skip to content

Commit 3851847

Browse files
committed
Format/msftidy fixes
1 parent 891ad46 commit 3851847

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

modules/auxiliary/voip/sip_invite_spoof.rb

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,12 @@
1-
##
2-
# $Id$
3-
##
4-
51
##
62
# This file is part of the Metasploit Framework and may be subject to
73
# redistribution and commercial restrictions. Please see the Metasploit
84
# web site for more information on licensing and terms of use.
95
# http://metasploit.com/
106
##
117

12-
138
require 'msf/core'
149

15-
1610
class Metasploit3 < Msf::Auxiliary
1711

1812
include Msf::Exploit::Remote::Udp
@@ -21,9 +15,15 @@ class Metasploit3 < Msf::Auxiliary
2115
def initialize
2216
super(
2317
'Name' => 'SIP Invite Spoof',
24-
'Version' => '$Revision$',
25-
'Description' => 'This module will create a fake SIP invite request making the targeted device ring and display fake caller id information.',
26-
'Author' => '[David Maynor <dave[at]erratasec.com>, ChrisJohnRiley]',
18+
'Description' => %q{
19+
This module will create a fake SIP invite request making the targeted device ring
20+
and display fake caller id information.
21+
},
22+
'Author' =>
23+
[
24+
'David Maynor <dave[at]erratasec.com>',
25+
'ChrisJohnRiley'
26+
],
2727
'License' => MSF_LICENSE
2828
)
2929

@@ -48,9 +48,9 @@ def run_host(ip)
4848

4949
if not ext.nil? and not ext.empty?
5050
# set extesion name/number
51-
conn_string = "#{ext}@#{ip}"
51+
conn_string = "#{ext}@#{ip}"
5252
else
53-
conn_string = "#{ip}"
53+
conn_string = "#{ip}"
5454
end
5555

5656
connect_udp

0 commit comments

Comments
 (0)