{"id":15306647,"url":"https://github.com/t0mer/safeurl","last_synced_at":"2025-04-15T00:54:00.857Z","repository":{"id":101737547,"uuid":"451401043","full_name":"t0mer/SafeUrl","owner":"t0mer","description":"SafeUrl is a small and lite [FastAPI]( https://fastapi.tiangolo.com/)  based web application intended to help us validate any URL safely before clicking it.","archived":false,"fork":false,"pushed_at":"2024-12-04T13:11:30.000Z","size":5141,"stargazers_count":11,"open_issues_count":1,"forks_count":2,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-15T00:53:54.255Z","etag":null,"topics":["docker","fastapi","ipinfo","python","security","spam","virustotal"],"latest_commit_sha":null,"homepage":"","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/t0mer.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"License","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null}},"created_at":"2022-01-24T09:36:15.000Z","updated_at":"2025-04-03T14:31:13.000Z","dependencies_parsed_at":"2023-03-13T15:26:16.035Z","dependency_job_id":null,"html_url":"https://github.com/t0mer/SafeUrl","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/t0mer%2FSafeUrl","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/t0mer%2FSafeUrl/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/t0mer%2FSafeUrl/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/t0mer%2FSafeUrl/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/t0mer","download_url":"https://codeload.github.com/t0mer/SafeUrl/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248986279,"owners_count":21194025,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["docker","fastapi","ipinfo","python","security","spam","virustotal"],"created_at":"2024-10-01T08:06:42.642Z","updated_at":"2025-04-15T00:54:00.841Z","avatar_url":"https://github.com/t0mer.png","language":"HTML","funding_links":["https://www.paypal.com/paypalme/techblogil?locale.x=he_IL"],"categories":[],"sub_categories":[],"readme":"*Please :star: this repo if you find it useful*\n\n\u003cp align=\"left\"\u003e\u003cbr\u003e\n\u003ca href=\"https://www.paypal.com/paypalme/techblogil?locale.x=he_IL\" target=\"_blank\"\u003e\u003cimg src=\"http://khrolenok.ru/support_paypal.png\" alt=\"PayPal\" width=\"250\" height=\"48\"\u003e\u003c/a\u003e\n\u003c/p\u003e\n\n\n# SafeUrl\n## Safely check the URL befor clicking it.\n\nWith the growing amount of Spam, Fishing, and Malicious messages, I needed a tool that would help me safely check the URL before I clicked it.\nCorrect, there are other options like VirusTotal, but I wanted something more, like getting a Preview of the final URL or even getting IP Information of the hosted service,\nSo I combined them all into one lite and simple application.\n\n## Features\nWith SafeUrl, you can get the following information:\n*\t Report Summary Using [VirusTotal)](https://www.virustotal.com/gui/home/url)\n*\tReport Info.\n*\tSite Preview\n*\tWebsite Info:\n    *\tFinal URL.\n    *\tRedirect Chain (If there are redirections).\n    *\tOutgoing Links.\n    *\tHTML Meta information.\n    *\tTrackers (Google Tag, Analytics, Pixels, and more).\n    *\tIp Information Using [IpInfo](https://ipinfo.io/).\n\n### Limatations\n* [VirusTotal)](https://www.virustotal.com/gui/home/url) free API is limited to 4 calls/minute.\n* [IpInfo](https://ipinfo.io/) free API is limited to 50,000 calls/moneh.\n\n## Usage\nIn order to start working with SafeUrl, you need to register for free [VirusTotal)] (https://www.virustotal.com/gui/home/url) account and get a valid Free API Key.\n[![SafeUrl Index Page](https://raw.githubusercontent.com/t0mer/SafeUrl/main/Images/SafeUrl%20-%20VirusTotal%20API.PNG?raw=true)](https://raw.githubusercontent.com/t0mer/SafeUrl/main/Images/SafeUrl%20-%20VirusTotal%20API.PNG?raw=true)\n\nNow, add the VirusTotal API key to the docker environment and you are ready to go.\n\n### Run from hub\n\n#### docker-compose from hub\n```yaml\nversion: \"3.6\"\nservices:\n  safeurl:\n    image: techblog/safeurl\n    container_name: safeurl\n    restart: always\n    ports:\n      - \"8080:8080\"\n    environment:\n      - VT_API_KEY=[Your VirusTotal API Key] #Required\n      - IPINFO_API_KEY=[Your IPInfo API Key] #Optional\n```\n\n## Checking URL\nSo now, after you installed SafeURL, It's time to give it a try.\nNavigate to you server address and you shuold see the following screen:\n\n[![SafeUrl Index Page](https://raw.githubusercontent.com/t0mer/SafeUrl/main/Images/SafeUrl%20-%20Index.PNG?raw=true)](https://raw.githubusercontent.com/t0mer/SafeUrl/main/Images/SafeUrl%20-%20Index.PNG?raw=true)\n\nEnter the Requested URL and hit the \"Check URL\" button.\nThe Scan process will start and then you will see the folllowing screen:\n\n[![SafeUrl scan in progress](https://raw.githubusercontent.com/t0mer/SafeUrl/main/Images/SafeUrl%20-%20Scanning.PNG?raw=true)](https://raw.githubusercontent.com/t0mer/SafeUrl/main/Images/SafeUrl%20-%20Scanning.PNG?raw=true)\n\nWhen the scan process will end, you will be able to see all the data collected during the scan process, Like Report summary:\n[![SafeUrl scan in progress](https://raw.githubusercontent.com/t0mer/SafeUrl/main/Images/SafeUrl%20-%20Report%20Summary.PNG?raw=true)](https://raw.githubusercontent.com/t0mer/SafeUrl/main/Images/SafeUrl%20-%20Report%20Summary.PNG?raw=true)\n\nSite preview:\n[![SafeUrl scan in progress](https://raw.githubusercontent.com/t0mer/SafeUrl/main/Images/SafeUrl%20-%20Preview.PNG?raw=true)](https://raw.githubusercontent.com/t0mer/SafeUrl/main/Images/SafeUrl%20-%20Preview.PNG?raw=true)\n\nAnd much much more.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ft0mer%2Fsafeurl","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ft0mer%2Fsafeurl","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ft0mer%2Fsafeurl/lists"}