Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- https://pituachcms.rail.co.il/umbraco
- python
- import requests
- import logging
- from datetime import datetime
- from bs4 import BeautifulSoup
- import tldextract
- class UmbracoInfoAuditor:
- def __init__(self, base_url, log_file="umbraco_info_audit.log"):
- self.base_url = base_url
- self.parent_domain = self.extract_parent_domain()
- self.urls = {
- "externalLogins": "/umbraco/ExternalLogin",
- "serverVars": "/umbraco/ServerVariables",
- "authApi": "/umbraco/backoffice/UmbracoApi/Authentication/",
- "currentUserApi": "/umbraco/backoffice/UmbracoApi/CurrentUser/",
- "iconApi": "/umbraco/backoffice/UmbracoApi/Icon/"
- }
- self.log_file = log_file
- self.logger = self.setup_logger()
- def extract_parent_domain(self):
- ext = tldextract.extract(self.base_url)
- return f"{ext.domain}.{ext.suffix}"
- def setup_logger(self):
- logger = logging.getLogger("UmbracoInfoAuditor")
- logger.setLevel(logging.DEBUG)
- formatter = logging.Formatter('%(asctime)s - %(levelname)s - %(message)s')
- file_handler = logging.FileHandler(self.log_file)
- file_handler.setLevel(logging.INFO)
- file_handler.setFormatter(formatter)
- console_handler = logging.StreamHandler()
- console_handler.setLevel(logging.DEBUG)
- console_handler.setFormatter(formatter)
- logger.addHandler(file_handler)
- logger.addHandler(console_handler)
- return logger
- def fetch_url_content(self, endpoint):
- url = self.base_url + self.urls[endpoint]
- try:
- response = requests.get(url)
- response.raise_for_status()
- return response.text
- except requests.exceptions.RequestException as e:
- self.logger.error(f"Error fetching {url}: {e}")
- return None
- def gather_info(self):
- info = {}
- for endpoint in self.urls:
- content = self.fetch_url_content(endpoint)
- if content is not None:
- info[endpoint] = content
- return info
- def save_info_to_file(self, info, file_name=None):
- if file_name is None:
- timestamp = datetime.now().strftime("%Y%m%d%H%M%S")
- file_name = f"umbraco_info_{timestamp}.txt"
- with open(file_name, 'w') as file:
- for endpoint, content in info.items():
- file.write(f"Endpoint: {endpoint}\n\n{content}\n\n{'='*50}\n\n")
- self.logger.info(f"Information saved to {file_name}")
- def site_audit(self):
- try:
- response = requests.get(self.base_url)
- response.raise_for_status()
- soup = BeautifulSoup(response.content, 'html.parser')
- title_tag = soup.title
- meta_tags = soup.find_all('meta')
- self.logger.info(f"Site Title: {title_tag.text.strip()}")
- self.logger.info("Meta Tags:")
- for tag in meta_tags:
- self.logger.info(f" {tag.attrs}")
- except requests.exceptions.RequestException as e:
- self.logger.error(f"Error during site audit: {e}")
- def print_help():
- print("""
- Umbraco Auditor Tool
- Usage: python umbraco_auditor.py
- Options:
- 1. Enter the base URL of the Umbraco site.
- 2. Specify a custom log file.
- 3. Gather Umbraco information.
- 4. Conduct a basic site audit.
- Example:
- > python umbraco_auditor.py -u https://rail.co.il/
- """)
- if __name__ == "__main__":
- from bs4 import BeautifulSoup
- print_help()
- base_url = input("Enter the base URL of the Umbraco site: ")
- log_file = input("Specify a custom log file (press Enter for default): ").strip() or "umbraco_info_audit.log"
- auditor = UmbracoInfoAuditor(base_url, log_file)
- try:
- gathered_info = auditor.gather_info()
- output_file = input("Specify a custom output file name (press Enter for default): ").strip()
- auditor.save_info_to_file(gathered_info, output_file)
- auditor.logger.info("Information gathering completed successfully.")
- site_audit = input("Do you want to conduct a basic site audit? (yes/no): ").lower()
- if site_audit == 'yes':
- auditor.site_audit()
- except Exception as e:
- auditor.logger.error(f"Error during site audit: {e}")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement