Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion recon/core/module.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def html_escape(self, s):

def cidr_to_list(self, string):
import ipaddress
return [str(ip) for ip in ipaddress.ip_network(string)]
return [str(ip).strip() for ip in ipaddress.ip_network(string)]

def hosts_to_domains(self, hosts, exclusions=[]):
domains = []
Expand Down