{"id":17464504,"url":"https://github.com/overbryd/unseen-ip-airbrake-notifier","last_synced_at":"2026-07-02T01:31:58.454Z","repository":{"id":66704105,"uuid":"75200470","full_name":"Overbryd/unseen-ip-airbrake-notifier","owner":"Overbryd","description":"Notify your Airbrake project when unseen ip port combinations appear","archived":false,"fork":false,"pushed_at":"2016-12-19T15:23:31.000Z","size":47,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-28T07:27:36.803Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Overbryd.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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,"publiccode":null,"codemeta":null}},"created_at":"2016-11-30T15:32:31.000Z","updated_at":"2016-11-30T16:18:56.000Z","dependencies_parsed_at":null,"dependency_job_id":"85dd1464-729b-4deb-9352-b40c974f7281","html_url":"https://github.com/Overbryd/unseen-ip-airbrake-notifier","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/Overbryd/unseen-ip-airbrake-notifier","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Overbryd%2Funseen-ip-airbrake-notifier","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Overbryd%2Funseen-ip-airbrake-notifier/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Overbryd%2Funseen-ip-airbrake-notifier/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Overbryd%2Funseen-ip-airbrake-notifier/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Overbryd","download_url":"https://codeload.github.com/Overbryd/unseen-ip-airbrake-notifier/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Overbryd%2Funseen-ip-airbrake-notifier/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35029796,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-07-01T02:00:05.325Z","response_time":130,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":[],"created_at":"2024-10-18T10:46:04.392Z","updated_at":"2026-07-02T01:31:58.433Z","avatar_url":"https://github.com/Overbryd.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n# identify_ip_protocol_port.rb\n\n    #!/usr/bin/env ruby\n    # identify_ip_port.rb: script to identify an ip port combination\n    #\n    # Usage:\n    #\n    #   $ ruby identify_ip_port.rb 8.8.8.8 udp 53\n    #   {\n    #     \"ip\": \"8.8.8.8\",\n    #     \"protocol\": \"udp\",\n    #     \"port\": \"53\",\n    #     \"service_name\": \"domain\",\n    #     \"host\": \"google-public-dns-a.google.com\"\n    #   }\n    #\n\n# unseen_connections.rb\n\n    #!/usr/bin/env ruby\n    # unseen_connections.rb: script to notify unseen tcp connection attempts\n    #\n    # Usage:\n    #\n    #   elktail -f '%@timestamp,%src_ip,%dst_ip,%protocol,%src_port' 'type:cisco-firewall AND action:Built AND direction:outbound' \\\n    #   | ruby unseen_connections.rb\n    #\n    # Synopsis:\n    #\n    #   The script expects input on STDIN, one line per firewall log entry.\n    #   Each line must be formatted, including the fields %@timestamp, %src_ip, %dst_ip, %protocol and %src_port.\n    #\n    #     %@timestamp,%src_ip,%dst_ip,%protocol,%src_port\\n\n    #\n    #   e.g.\n    #\n    #     2016-11-29T10:36:05.990Z,50.31.164.146,10.248.177.12,TCP,443\\n\n    #\n    #   It remembers each destination ip:port combination for a given time.\n    #   Over multiple runs it restores and saves its state with a YAML file.\n    #\n    #   New ip:port combinations are reported to Airbrake with\n    #   their respective environment and additional information.\n    #\n    #   Airbrake in turn alerts the current Sherrif in charge via Pivotaltracker.\n    #\n    # Dependencies:\n    #\n    #   * A tool that can stream data out of the ELK stack and format its output as described above.\n    #     For example 'elktail' (https://github.com/knes1/elktail/releases) does the job really well.\n    #\n    #   * An Airbrake account project_id and project_key.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foverbryd%2Funseen-ip-airbrake-notifier","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Foverbryd%2Funseen-ip-airbrake-notifier","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foverbryd%2Funseen-ip-airbrake-notifier/lists"}