mirror of
https://github.com/sherlock-project/sherlock
synced 2024-11-22 11:53:03 +00:00
Merge pull request #1723 from sherlock-project/csv-print-found
apply --print-found when writing csv/xlsx files as well
This commit is contained in:
commit
0f92a8c0c1
1 changed files with 10 additions and 7 deletions
|
@ -28,7 +28,7 @@ from sites import SitesInformation
|
|||
from colorama import init
|
||||
|
||||
module_name = "Sherlock: Find Usernames Across Social Networks"
|
||||
__version__ = "0.14.3"
|
||||
__version__ = "0.14.2"
|
||||
|
||||
|
||||
class SherlockFuturesSession(FuturesSession):
|
||||
|
@ -537,12 +537,12 @@ def main():
|
|||
help="Time (in seconds) to wait for response to requests (Default: 60)"
|
||||
)
|
||||
parser.add_argument("--print-all",
|
||||
action="store_true", dest="print_all",
|
||||
action="store_true", dest="print_all", default=False,
|
||||
help="Output sites where the username was not found."
|
||||
)
|
||||
parser.add_argument("--print-found",
|
||||
action="store_false", dest="print_all", default=False,
|
||||
help="Output sites where the username was found."
|
||||
action="store_true", dest="print_found", default=True,
|
||||
help="Output sites where the username was found (also if exported as file)."
|
||||
)
|
||||
parser.add_argument("--no-color",
|
||||
action="store_true", dest="no_color", default=False,
|
||||
|
@ -640,7 +640,6 @@ def main():
|
|||
site_data = site_data_all
|
||||
else:
|
||||
# User desires to selectively run queries on a sub-set of the site list.
|
||||
|
||||
# Make sure that the sites are supported & build up pruned site database.
|
||||
site_data = {}
|
||||
site_missing = []
|
||||
|
@ -668,7 +667,6 @@ def main():
|
|||
browse=args.browse)
|
||||
|
||||
# Run report on all specified users.
|
||||
|
||||
all_usernames = []
|
||||
for username in args.username:
|
||||
if (CheckForParameter(username)):
|
||||
|
@ -726,6 +724,9 @@ def main():
|
|||
]
|
||||
)
|
||||
for site in results:
|
||||
if args.print_found and not args.print_all and results[site]["status"].status != QueryStatus.CLAIMED:
|
||||
continue
|
||||
|
||||
response_time_s = results[site]["status"].query_time
|
||||
if response_time_s is None:
|
||||
response_time_s = ""
|
||||
|
@ -748,6 +749,9 @@ def main():
|
|||
response_time_s = []
|
||||
|
||||
for site in results:
|
||||
if args.print_found and not args.print_all and results[site]["status"].status != QueryStatus.CLAIMED:
|
||||
continue
|
||||
|
||||
if response_time_s is None:
|
||||
response_time_s.append("")
|
||||
else:
|
||||
|
@ -768,4 +772,3 @@ def main():
|
|||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
# Notify caller that all queries are finished.
|
||||
|
|
Loading…
Reference in a new issue