Advertisement
WhosYourDaddySec

GhostDox

Dec 5th, 2023
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.56 KB | None | 0 0
  1. import osint_library
  2. import tweepy
  3. import requests
  4. import sys
  5.  
  6. def search_username(username, include_twitter=False, include_public_records=False, verbose=False):
  7. try:
  8. osint_data = osint_library.search(username)
  9. additional_data = {}
  10.  
  11. if include_twitter:
  12. additional_data["twitter_data"] = get_twitter_data(username)
  13.  
  14. if include_public_records:
  15. additional_data["public_records_data"] = get_public_records_data(username)
  16.  
  17. combined_data = {**osint_data, **additional_data}
  18.  
  19. if verbose:
  20. print(f"\n=== Detailed Information for {username} ===")
  21. print(combined_data)
  22.  
  23. return combined_data
  24. except Exception as e:
  25. return {"error": f"Error occurred during GhostDox search: {e}"}
  26.  
  27. def get_twitter_data(username):
  28. try:
  29. consumer_key = 'your_consumer_key'
  30. consumer_secret = 'your_consumer_secret'
  31. access_token = 'your_access_token'
  32. access_token_secret = 'your_access_token_secret'
  33.  
  34. auth = tweepy.OAuthHandler(consumer_key, consumer_secret)
  35. auth.set_access_token(access_token, access_token_secret)
  36. api = tweepy.API(auth)
  37. user_data = api.get_user(screen_name=username)._json
  38. return {"twitter_data": user_data}
  39. except tweepy.TweepError as te:
  40. return {"twitter_error": f"Error fetching Twitter data: {te}"}
  41.  
  42. def get_public_records_data(username):
  43. try:
  44. api_url = 'your_public_records_api_url'
  45. response = requests.get(api_url, params={'username': username})
  46.  
  47. if response.status_code == 200:
  48. return response.json()
  49. else:
  50. raise Exception(f"Failed to fetch public records data. Status code: {response.status_code}")
  51. except Exception as e:
  52. return {"public_records_error": f"Error fetching public records data: {e}"}
  53.  
  54. def parse_data(data):
  55. parsed_info = {
  56. "name": data.get("name", ""),
  57. "email": data.get("email", ""),
  58. "location": data.get("location", ""),
  59. "twitter_followers": data.get("twitter_data", {}).get("followers_count", 0),
  60. # Add more fields to parse as needed
  61. }
  62. return parsed_info
  63.  
  64. def display_parsed_info(parsed_info):
  65. print("Parsed information:")
  66. for key, value in parsed_info.items():
  67. print(f"{key}: {value}")
  68.  
  69. def get_user_input():
  70. usernames = input("Enter one or more usernames (comma-separated): ").split(',')
  71. return [username.strip() for username in usernames]
  72.  
  73. def show_help():
  74. print("=== GhostDox OSINT User Search Tool ===")
  75. print("This tool searches for a username using OSINT and optional social media and public records APIs.")
  76. print("Usage: python GhostDox.py [OPTIONS]")
  77. print("\nOptions:")
  78. print(" -h, --help Display this help message")
  79. print(" -u, --usernames Specify one or more usernames (comma-separated)")
  80. print(" -t, --include-twitter Include Twitter data in the GhostDox search")
  81. print(" -p, --include-public-records Include public records data in the GhostDox search")
  82. print(" -v, --verbose Print detailed information")
  83. print("\nExamples:")
  84. print(" python GhostDox.py -u user1,user2 -t -p")
  85. print(" python GhostDox.py --usernames user3 -p -v")
  86. print(" python GhostDox.py -h")
  87.  
  88. def main():
  89. try:
  90. if "-h" in sys.argv or "--help" in sys.argv:
  91. show_help()
  92. return
  93.  
  94. include_twitter = "-t" in sys.argv or "--include-twitter" in sys.argv
  95. include_public_records = "-p" in sys.argv or "--include-public-records" in sys.argv
  96. verbose = "-v" in sys.argv or "--verbose" in sys.argv
  97.  
  98. usernames = get_user_input() if "-u" not in sys.argv and "--usernames" not in sys.argv else sys.argv[sys.argv.index("-u") + 1].split(',')
  99.  
  100. for username in usernames:
  101. search_results = search_username(username, include_twitter, include_public_records, verbose)
  102.  
  103. if "error" in search_results:
  104. print(search_results["error"])
  105. elif "twitter_error" in search_results:
  106. print(search_results["twitter_error"])
  107. elif "public_records_error" in search_results:
  108. print(search_results["public_records_error"])
  109. else:
  110. parsed_info = parse_data(search_results)
  111. display_parsed_info(parsed_info)
  112.  
  113. except Exception as e:
  114. print(f"An unexpected error occurred: {e}")
  115.  
  116. if __name__ == "__main__":
  117. main()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement