We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
scan_identifiers scans a defined range. Sometimes scanning a specific range/list is helpful.
scan_identifiers
This proposes a --id option for scan_identifers.:
--id
scan_identifers
def scan(ids): for ID in ids: do_scan(ID) def main(args): if args.ids: scan(args.ids) else: scan(range(args.start, args.end)
The text was updated successfully, but these errors were encountered:
peckto
No branches or pull requests
scan_identifiers
scans a defined range. Sometimes scanning a specific range/list is helpful.This proposes a
--id
option forscan_identifers
.:The text was updated successfully, but these errors were encountered: