Skip to content

Commit 649eda1

Browse files
committed
Remove debug print statements
1 parent 6040b36 commit 649eda1

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

reconnoitre/file_helper.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,11 @@ def load_targets(target_hosts, output_directory, quiet):
2222
def expand_targets(target_hosts, output_directory):
2323
parts = target_hosts.split(".")
2424
target_list= []
25-
print(parts)
2625
for part in parts:
2726
if "-" in part:
2827
iprange = part.split("-")
29-
print(iprange)
3028
for i in range(int(iprange[0]), int(iprange[1])):
3129
target_list.append(parts[0]+"."+parts[1]+"."+parts[2]+"."+str(i))
32-
print(target_list)
3330
with open(output_directory + "/targets.txt", "w") as targets:
3431
for target in target_list:
3532
targets.write("%s\n" % target)

0 commit comments

Comments
 (0)