v1.20
版本发布时间: 2020-02-05 22:47:28
rackerlabs/scantron最新发布版本:v1.47.0(2021-08-10 11:06:50)
- Changed ScheduledScan.scan_command from CharField to TextField in models.py.
scan_scheduler.py
was failing for scan commands greater than 1024 characters. That limitation should be removed now. - Capping out number of chars in Scan Command to 255 in
master/django_scantron/templates/django_scantron/scheduled_scan_list.html
, otherwise it's impossible to scroll and see other columns to the right. - Updated
nmap_port_range_carver.py
logic for masscan UDP scans. masscan requires a "U:<PORT>" if not specifying a range (-p U:80-90
is OK, however,-p U:53,500
will scan UDP 53 and TCP 500, so it needs to be-p U:53,U:500