Advertisement
WhosYourDaddySec

Israeli Railways

Nov 15th, 2023
218
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.38 KB | None | 0 0
  1. https://pituachcms.rail.co.il/umbraco
  2.  
  3. python
  4. import requests
  5. import logging
  6. from datetime import datetime
  7. from bs4 import BeautifulSoup
  8. import tldextract
  9.  
  10. class UmbracoInfoAuditor:
  11. def __init__(self, base_url, log_file="umbraco_info_audit.log"):
  12. self.base_url = base_url
  13. self.parent_domain = self.extract_parent_domain()
  14. self.urls = {
  15. "externalLogins": "/umbraco/ExternalLogin",
  16. "serverVars": "/umbraco/ServerVariables",
  17. "authApi": "/umbraco/backoffice/UmbracoApi/Authentication/",
  18. "currentUserApi": "/umbraco/backoffice/UmbracoApi/CurrentUser/",
  19. "iconApi": "/umbraco/backoffice/UmbracoApi/Icon/"
  20. }
  21. self.log_file = log_file
  22. self.logger = self.setup_logger()
  23.  
  24. def extract_parent_domain(self):
  25. ext = tldextract.extract(self.base_url)
  26. return f"{ext.domain}.{ext.suffix}"
  27.  
  28. def setup_logger(self):
  29. logger = logging.getLogger("UmbracoInfoAuditor")
  30. logger.setLevel(logging.DEBUG)
  31. formatter = logging.Formatter('%(asctime)s - %(levelname)s - %(message)s')
  32.  
  33. file_handler = logging.FileHandler(self.log_file)
  34. file_handler.setLevel(logging.INFO)
  35. file_handler.setFormatter(formatter)
  36.  
  37. console_handler = logging.StreamHandler()
  38. console_handler.setLevel(logging.DEBUG)
  39. console_handler.setFormatter(formatter)
  40.  
  41. logger.addHandler(file_handler)
  42. logger.addHandler(console_handler)
  43.  
  44. return logger
  45.  
  46. def fetch_url_content(self, endpoint):
  47. url = self.base_url + self.urls[endpoint]
  48. try:
  49. response = requests.get(url)
  50. response.raise_for_status()
  51. return response.text
  52. except requests.exceptions.RequestException as e:
  53. self.logger.error(f"Error fetching {url}: {e}")
  54. return None
  55.  
  56. def gather_info(self):
  57. info = {}
  58. for endpoint in self.urls:
  59. content = self.fetch_url_content(endpoint)
  60. if content is not None:
  61. info[endpoint] = content
  62.  
  63. return info
  64.  
  65. def save_info_to_file(self, info, file_name=None):
  66. if file_name is None:
  67. timestamp = datetime.now().strftime("%Y%m%d%H%M%S")
  68. file_name = f"umbraco_info_{timestamp}.txt"
  69.  
  70. with open(file_name, 'w') as file:
  71. for endpoint, content in info.items():
  72. file.write(f"Endpoint: {endpoint}\n\n{content}\n\n{'='*50}\n\n")
  73.  
  74. self.logger.info(f"Information saved to {file_name}")
  75.  
  76. def site_audit(self):
  77. try:
  78. response = requests.get(self.base_url)
  79. response.raise_for_status()
  80.  
  81. soup = BeautifulSoup(response.content, 'html.parser')
  82.  
  83. title_tag = soup.title
  84. meta_tags = soup.find_all('meta')
  85.  
  86. self.logger.info(f"Site Title: {title_tag.text.strip()}")
  87. self.logger.info("Meta Tags:")
  88. for tag in meta_tags:
  89. self.logger.info(f" {tag.attrs}")
  90. except requests.exceptions.RequestException as e:
  91. self.logger.error(f"Error during site audit: {e}")
  92.  
  93. def print_help():
  94. print("""
  95. Umbraco Auditor Tool
  96.  
  97. Usage: python umbraco_auditor.py
  98.  
  99. Options:
  100. 1. Enter the base URL of the Umbraco site.
  101. 2. Specify a custom log file.
  102. 3. Gather Umbraco information.
  103. 4. Conduct a basic site audit.
  104.  
  105. Example:
  106. > python umbraco_auditor.py -u https://rail.co.il/
  107. """)
  108.  
  109. if __name__ == "__main__":
  110. from bs4 import BeautifulSoup
  111.  
  112. print_help()
  113.  
  114. base_url = input("Enter the base URL of the Umbraco site: ")
  115. log_file = input("Specify a custom log file (press Enter for default): ").strip() or "umbraco_info_audit.log"
  116.  
  117. auditor = UmbracoInfoAuditor(base_url, log_file)
  118.  
  119. try:
  120. gathered_info = auditor.gather_info()
  121. output_file = input("Specify a custom output file name (press Enter for default): ").strip()
  122. auditor.save_info_to_file(gathered_info, output_file)
  123. auditor.logger.info("Information gathering completed successfully.")
  124.  
  125. site_audit = input("Do you want to conduct a basic site audit? (yes/no): ").lower()
  126. if site_audit == 'yes':
  127. auditor.site_audit()
  128.  
  129. except Exception as e:
  130. auditor.logger.error(f"Error during site audit: {e}")
  131.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement