URL data analyzer and extractor. Detect malicious signs and other useful data associated with URLs.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

81 lines
2.2 KiB

3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
  1. # URL Analyzer
  2. URL data analyzer and extractor. Detect malicious signs and other useful data associated with URLs.
  3. ## About
  4. This program extract various website information based on URL addresses. This data can be used to analyze maliciousness of the given URL.
  5. ### Features
  6. **NOTE**: See sample JSON data: [Get file](sample_dataset.json)
  7. To summarize, the program does the following procedures for listed URLs:
  8. - Gets domain registrar
  9. - Gets webpage title and automatically compares it to the domain registrar name
  10. - Gets initial and final destination of a given URL
  11. - Analyzes whether final destination domain is same than the initial one
  12. - Gets URL redirects and HTTP response status codes
  13. - Fetches WHOIS data
  14. - Gets domain timestamps such as creation, update and expire days
  15. - Exact days & days relative to the current day
  16. - Gets content and number of iframes (for detecting possible XSS; Cross-Site Scripting)
  17. - Gets URL references on a webpage
  18. - **Local** domain referrals
  19. - **External** URL referrals
  20. - **Multidot** URLs (ones with `../` in the URL path)
  21. - Gets domain registrars for each URL
  22. ## Requirements
  23. ```
  24. Python 3
  25. Python 3 BeautifulSoup4 python-beautifulsoup4
  26. Python 3 whois <= 0.7.3 python-whois; PyPI
  27. Python 3 JSON Schema python-jsonschema
  28. Python 3 Numpy python-numpy
  29. Python 3 matplotlib python-matplotlib
  30. ```
  31. **NOTE**: Some Linux distributions may use `python3` executable instead of `python` for Python 3.
  32. ### Other requirements
  33. - Jupyter (recommended)
  34. - Working DNS name resolution
  35. - Internet connection
  36. ## Code
  37. - `jupyter notebook (python 3)`: [Get file](code/url-analyzer.ipynb)
  38. - `python 3`: [Get file](code/url-analyzer.py)
  39. ## Screenshots
  40. The following screenshots are generated with `matplotlib`
  41. ### Domains associated with HTML URL data
  42. ![](screenshots/domain_figure_hsfi.png)
  43. ![](screenshots/domain_figure_tsfi.png)
  44. ## Known bugs issues and missing features
  45. - Non-UTF-8 character decoding not implemented
  46. - If multiple JSON data files exist, a wrong JSON data file is likely selected
  47. - Get URLs and other parameters from command line
  48. - More data visualization and compherensive analysis
  49. - Null data may be generated in some cases
  50. ## License
  51. N/A