Skip to content

Commit

Permalink
Remove changes from Dump command
Browse files Browse the repository at this point in the history
  • Loading branch information
moozzi committed Apr 30, 2024
1 parent 3a2fd38 commit bdf6790
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/ronin/masscan/cli/commands/dump.rb
Original file line number Diff line number Diff line change
Expand Up @@ -176,12 +176,12 @@ def print_uri(target)
case target.port
when 80
puts URI::HTTP.build(
host: target.ip.to_s,
host: target.ip,
port: target.port
)
when 443
puts URI::HTTPS.build(
host: target.ip.to_s,
host: target.ip,
port: target.port
)
end
Expand Down

0 comments on commit bdf6790

Please sign in to comment.