{"id":32166469,"url":"https://github.com/suspicidy/suspicidy","last_synced_at":"2026-02-19T08:02:32.373Z","repository":{"id":62430337,"uuid":"198659060","full_name":"suspicidy/suspicidy","owner":"suspicidy","description":"Suspicidy aims to detect suspicious web requests","archived":false,"fork":false,"pushed_at":"2019-07-29T09:14:57.000Z","size":20,"stargazers_count":13,"open_issues_count":1,"forks_count":2,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-12-26T02:52:46.335Z","etag":null,"topics":["fraud-detection","fraud-prevention","suspicious","web-request"],"latest_commit_sha":null,"homepage":"","language":"Elixir","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/suspicidy.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}},"created_at":"2019-07-24T15:08:32.000Z","updated_at":"2023-02-05T10:45:59.000Z","dependencies_parsed_at":"2022-11-01T20:19:48.889Z","dependency_job_id":null,"html_url":"https://github.com/suspicidy/suspicidy","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/suspicidy/suspicidy","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/suspicidy%2Fsuspicidy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/suspicidy%2Fsuspicidy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/suspicidy%2Fsuspicidy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/suspicidy%2Fsuspicidy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/suspicidy","download_url":"https://codeload.github.com/suspicidy/suspicidy/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/suspicidy%2Fsuspicidy/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29608152,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-19T06:47:36.664Z","status":"ssl_error","status_checked_at":"2026-02-19T06:45:47.551Z","response_time":117,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["fraud-detection","fraud-prevention","suspicious","web-request"],"created_at":"2025-10-21T15:06:22.955Z","updated_at":"2026-02-19T08:02:32.369Z","avatar_url":"https://github.com/suspicidy.png","language":"Elixir","readme":"# Suspicidy\n\nSuspicidy aims to detect suspicious web requests. \nCurrently, it only supports detection by request path, \nusing a data-set of almost 800 paths collected from real web crawlers.\n\n## Installation\n\nThe package can be installed by adding `suspicidy` to your list of dependencies in `mix.exs`:\n\n```elixir\ndef deps do\n  [\n    {:suspicidy, \"~\u003e 0.1.0\"}\n  ]\nend\n```\n\n## Usage\n\nIf you want to use the built-in data-set, you can just use the `Suspicidy` module.\n\n```elixir\niex(1)\u003e Suspicidy.suspicious_path?(\"/\")\nfalse\n\niex(2)\u003e Suspicidy.suspicious_path?(\"/phpmyadmin\")\ntrue\n```\n\n### Custom Data\n\nYou can use your own data-set if you wish. \nIn order to do so, you have to create a loader module for the \nrequest paths. Here is a simply example:\n\n```elixir\ndefmodule MyApp.CustomLoader do\n  def resource_files() do\n    # Normally this would return a list of\n    # file paths to the files containing the data-set.\n    # You would put them in your priv directory.\n    []\n  end\n  \n  def paths() do\n    # Here we return a list of paths.\n    # You would normally load them from \n    # e.g. your priv directory.\n    [\"/evil\", \"/data.zip\"]\n  end\nend\n```\n\nThen you can create a custom module and instruct Suspicidy to \nexpose your data-set.\n\n```elixir\ndefmodule MyApp.CustomUsage do\n  use Suspicidy.Builder, \n      path: [loader: MyApp.CustomLoader]\nend\n```\n\nFinally, use your custom module:\n\n```elixir\niex(1)\u003e MyApp.CustomUsage.suspicious_path?(\"/\")\nfalse\n\niex(2)\u003e MyApp.CustomUsage.suspicious_path?(\"/evil\")\ntrue\n```\n\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsuspicidy%2Fsuspicidy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsuspicidy%2Fsuspicidy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsuspicidy%2Fsuspicidy/lists"}