mirror of
https://github.com/laramies/theHarvester.git
synced 2025-02-24 06:22:57 +08:00
fix api_example issue and update lgtm.yml file
This commit is contained in:
parent
ff3178475b
commit
6d9040f591
2 changed files with 2 additions and 2 deletions
|
@ -1,6 +1,7 @@
|
|||
queries:
|
||||
- exclude: py/import-and-import-from
|
||||
- exclude: py/polluting-import
|
||||
- exclude: py/member-test-non-container
|
||||
|
||||
extraction:
|
||||
python:
|
||||
|
|
|
@ -75,7 +75,7 @@ async def main():
|
|||
print(f'\n[*] LinkedIn Links found: {len(linkedin_links_tracker)}')
|
||||
linkedin_links_tracker = list(sorted(set(linkedin_links_tracker)))
|
||||
print('---------------------')
|
||||
for link in linkedin_people_list_tracker:
|
||||
for link in linkedin_links_tracker:
|
||||
print(link)
|
||||
|
||||
length_urls = len(trello_urls)
|
||||
|
@ -94,7 +94,6 @@ async def main():
|
|||
# use netaddr as the list may contain ipv4 and ipv6 addresses
|
||||
ip_list = sorted([netaddr.IPAddress(ip.strip()) for ip in set(ips)])
|
||||
print('\n'.join(map(str, ip_list)))
|
||||
ip_list = list(ip_list)
|
||||
|
||||
if len(emails) == 0:
|
||||
print('\n[*] No emails found.')
|
||||
|
|
Loading…
Reference in a new issue