Skip to content

Commit

Permalink
fix: Missing ".py" when intelx CLI is specified
Browse files Browse the repository at this point in the history
  • Loading branch information
cmlh committed Jan 7, 2025
1 parent 1effb43 commit a31f516
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Python/scripts/intelx.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def main(argv=None):
# get the argument parser ready
parser = argparse.ArgumentParser(
description="Command line interface for https://intelx.io",
epilog="Usage: intelx -search 'riseup.net' -buckets 'pastes, darknet'"
epilog="Usage: intelx.py -search 'riseup.net' -buckets 'pastes, darknet'"
)

parser.add_argument('-apikey', help="set the api key via command line")
Expand Down Expand Up @@ -169,7 +169,7 @@ def main(argv=None):
print('intelx.py v' + str(version('intelx')))

if len(sys.argv) < 2:
print('Usage: intelx -search "riseup.net"')
print('Usage: intelx.py -search "riseup.net"')

if args.identity:

Expand Down

0 comments on commit a31f516

Please sign in to comment.