yassineaboukir/Asnlookup

Passing port list to masscan

plenumlab opened this issue · 1 comments

I'am unable to pass ports to masscan using the following syntax
python asnlookup.py -m "-p443,80" -o

i get the following error
│asnlookup.py: error: unrecognized arguments: -p443,80

Thanks for bringing this issue to my attention. You can avoid the error by using an equal sing as in:

python asnlookup.py -m="-p443,80" -o

I also went ahead and updated the readme doc to reflect this.