Skip to content

Commit cad8abe

Browse files
committed
msftidy cleanup
1 parent 860ebbc commit cad8abe

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

modules/auxiliary/scanner/http/svn_wcdb_scanner.rb

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ def initialize
1919
super(
2020
'Name' => 'SVN wc.db Scanner',
2121
'Description' => %q{
22-
Scan for servers that allow access to the SVN wc.db file.
23-
Based on the work by Tim Meddin.
22+
Scan for servers that allow access to the SVN wc.db file.
23+
Based on the work by Tim Meddin.
2424
},
2525
'Author' =>
2626
[
@@ -32,10 +32,10 @@ def initialize
3232
],
3333
'License' => MSF_LICENSE
3434
)
35-
35+
3636
register_advanced_options(
3737
[
38-
OptString.new('BASE_PATH', [false, 'Path to the directory with the .svn folder.', nil])
38+
OptString.new('BASE_PATH', [false, 'Path to the directory with the .svn folder.', nil])
3939
], self.class)
4040
end
4141

@@ -46,7 +46,7 @@ def run_host(ip)
4646
get_wcdb('/.svn/wc.db')
4747
end
4848
end
49-
49+
5050
def get_wcdb(path)
5151
proto = (ssl ? 'https://' : 'http://')
5252
vprint_status("Trying #{proto}#{vhost}:#{rport}#{path}")
@@ -61,7 +61,7 @@ def get_wcdb(path)
6161

6262
if res and res.code == 200
6363
print_good("SVN wc.db database found on #{vhost}:#{rport}")
64-
64+
6565
file = store_loot(
6666
"svn.wcdb.database",
6767
"application/octet-stream",
@@ -70,7 +70,7 @@ def get_wcdb(path)
7070
"wc.db",
7171
"SVN wc.db database"
7272
)
73-
73+
7474
print_good("SVN wc.db database stored in #{file}")
7575

7676
report_note(

0 commit comments

Comments
 (0)