Skip to content

Commit

Permalink
updated
Browse files Browse the repository at this point in the history
  • Loading branch information
abuyv committed Nov 25, 2024
1 parent 3d9aebe commit 2b96dd4
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Exposor is a contactless reconnaissance tool focused on technology detection acr

### Key Features
- Easily configure API credentials and keep the intelligence files updated.
- Perform targeted searches by netblock or ISO-3166 country codes.
- Perform targeted searches by netblock, country code, or hostname.
- Execute queries across multiple feeds with a unified syntax.
- Extend intel capabilities by contributing new YAML files.
- Identify exposed systems and potential vulnerabilities using CPEs or CVEs.
Expand Down
5 changes: 3 additions & 2 deletions exposor/feeds/shodan/shodan_feed.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,11 @@ def search(key, queries, args, technology):
#print(matches_to_add)
for banner in matches_to_add:
domains = banner.get('domains', [])
for domain in domains:
counter+=1
counter+=1
for domain in domains:
if counter>int(limit_result):
break
counter+=1
banner_dic = {
'ip':banner.get('ip_str', None),
'domain': domain,
Expand Down
5 changes: 3 additions & 2 deletions exposor/feeds/zoomeye/zoomeye_feed.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,10 +86,11 @@ def search(key, queries, args, technology):
matches_to_add = matches[:remaining]
for banner in matches_to_add:
ip_addresses = banner.get('ip', [])
for ip in ip_addresses:
counter+=1
counter+=1
for ip in ip_addresses:
if counter > int(limit_result):
break
counter+=1
banner_dic = {
'ip': ip,
'domain': banner.get('site', None),
Expand Down

0 comments on commit 2b96dd4

Please sign in to comment.