{"id":20541096,"url":"https://github.com/sonyacore/sonarping","last_synced_at":"2025-09-03T23:36:13.538Z","repository":{"id":135304350,"uuid":"553236429","full_name":"SonyaCore/SonarPing","owner":"SonyaCore","description":"A Multi-Ping tool for sending ICMP requests","archived":false,"fork":false,"pushed_at":"2022-10-20T09:04:58.000Z","size":1563,"stargazers_count":15,"open_issues_count":0,"forks_count":2,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-04-14T08:47:23.810Z","etag":null,"topics":["ping","python3"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/SonyaCore.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,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2022-10-17T23:38:05.000Z","updated_at":"2025-02-05T20:03:42.000Z","dependencies_parsed_at":"2023-03-13T11:05:11.887Z","dependency_job_id":null,"html_url":"https://github.com/SonyaCore/SonarPing","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/SonyaCore/SonarPing","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SonyaCore%2FSonarPing","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SonyaCore%2FSonarPing/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SonyaCore%2FSonarPing/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SonyaCore%2FSonarPing/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SonyaCore","download_url":"https://codeload.github.com/SonyaCore/SonarPing/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SonyaCore%2FSonarPing/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273528713,"owners_count":25121820,"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","status":"online","status_checked_at":"2025-09-03T02:00:09.631Z","response_time":76,"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":["ping","python3"],"created_at":"2024-11-16T01:19:24.464Z","updated_at":"2025-09-03T23:36:13.528Z","avatar_url":"https://github.com/SonyaCore.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e \u003ch1\u003e SonarPing \u003c/h1\u003e\n\n[![Contributors][contributors-shield]][contributors-url]\n[![Forks][forks-shield]][forks-url]\n[![Stargazers][stars-shield]][stars-url]\n[![Issues][issues-shield]][issues-url]\n\n\u003c/div\u003e\n\n##  A Multi-Ping tool for sending ICMP requests\n\n![Sample](contents/Screenshot1.png)\n\n- [**Overview**](#overview)\n- [**Usage**](#usage)\n- [**Options**](#options)\n- [**License**](#license)\n\n## Overview\n\nThis tool allows sending ICMP requests for specific CIDR or multiple IPs with custom options.\n\nIt can use a CIDR file or a list of IPs in a file for sending ICMP_ECHO_REQUEST\n\nAlso, it uses multi-threading for sending requests\n\n## Usage\n\u003e SonarPing are rewritten ping protocol in python and becuase of that root privileges is required\n\n### Ping Specific IP or Multiplie IPS :\n```bash\nsudo python3 SonarPing.py --ping google.com 8.8.8.8 1.1.1.1\n```\n```bash\nsudo python3 SonarPing.py --file ips.txt\n```\n### Ping CIDR or CIDR File :\n```bash\nsudo python3 SonarPing.py --cidr 23.235.32.0/29\n```\n```bash\nsudo python3 SonarPing.py --cidrfile ips.txt\n```\n### Note :\n\u003e Because there is no dependency for this script you can use curl directly to execute this script\n```bash\nhttps://raw.githubusercontent.com/SonyaCore/SonarPing/main/SonarPing.py | sudo python3 - --cidrfile ips.txt --delay 0.5\n```\n\n## Options\n|                |                               |\n|----------------|-------------------------------|\n|--file , -f     | `Send ICMP packets through IP file`   |\n|--ping , -p     | `Send ICMP packets`                   |\n|--cidr , -r     | `Send ICMP packets through CIDR range`|\n|--cidrfile , -cf| `Send ICMP packets with CIDR file`    |\n\n|                |                               |\n|----------------|-------------------------------|\n|--delay , -d    |`ICMP requests delay for sending each packet`            |\n|--timeout , -t  |`ICMP request timeout`            |\n|--count , -c    |`Stop current IP after sending (and receiving) count response packets`|\n|--timeout , -t  |`ICMP request timeout`            |\n|--bytes , -b    | `Total Bytes to be Send with ICMP header` |\n\n## License\nLicensed under the [GPL-3](LICENSE) license.\n\n[contributors-shield]: https://img.shields.io/github/contributors/SonyaCore/SonarPing?style=flat\n[contributors-url]: https://github.com/SonyaCore/SonarPing/graphs/contributors\n[forks-shield]: https://img.shields.io/github/forks/SonyaCore/SonarPing?style=flat\n[forks-url]: https://github.com/SonyaCore/SonarPing/network/members\n[stars-shield]: https://img.shields.io/github/stars/SonyaCore/SonarPing?style=flat\n[stars-url]: https://github.com/SonyaCore/SonarPing/stargazers\n[issues-shield]: https://img.shields.io/github/issues/SonyaCore/SonarPing?style=flat\n[issues-url]: https://github.com/SonyaCore/SonarPing/issues\n[LICENSE]: https://www.gnu.org/licenses/gpl-3.0.en.html\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsonyacore%2Fsonarping","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsonyacore%2Fsonarping","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsonyacore%2Fsonarping/lists"}