{"id":13826573,"url":"https://github.com/halit/isip","last_synced_at":"2025-07-09T00:34:06.204Z","repository":{"id":146254738,"uuid":"48172603","full_name":"halit/isip","owner":"halit","description":"Interactive sip toolkit for packet manipulations, sniffing, man in the middle attacks, fuzzing, simulating of dos attacks.","archived":false,"fork":false,"pushed_at":"2015-12-17T12:24:30.000Z","size":818,"stargazers_count":78,"open_issues_count":0,"forks_count":20,"subscribers_count":5,"default_branch":"master","last_synced_at":"2024-08-05T09:15:29.624Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","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/halit.png","metadata":{"files":{"readme":"README.md","changelog":"HISTORY","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":"2015-12-17T12:15:33.000Z","updated_at":"2024-04-16T07:03:14.000Z","dependencies_parsed_at":"2023-04-16T05:36:26.557Z","dependency_job_id":null,"html_url":"https://github.com/halit/isip","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/halit%2Fisip","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/halit%2Fisip/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/halit%2Fisip/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/halit%2Fisip/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/halit","download_url":"https://codeload.github.com/halit/isip/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":225476383,"owners_count":17480215,"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":[],"created_at":"2024-08-04T09:01:40.512Z","updated_at":"2024-11-20T05:30:52.663Z","avatar_url":"https://github.com/halit.png","language":"Python","funding_links":[],"categories":["\u003ca id=\"7bf0f5839fb2827fdc1b93ae6ac7f53d\"\u003e\u003c/a\u003e工具"],"sub_categories":["\u003ca id=\"32739127f0c38d61b14448c66a797098\"\u003e\u003c/a\u003e嗅探\u0026\u0026Sniff"],"readme":"# isip\n\n\u003e Interactive sip toolkit for packet manipulations, sniffing, man in the middle attacks, fuzzing, simulating of dos attacks.\n\n## Video\n\nhttps://asciinema.org/a/11128\n\n## Setup\n\n``` sh\ngit clone https://github.com/halitalptekin/isip.git\ncd isip\npip install -r requirements.txt\n```\n\n## Usage\n\n* Packet manipulation tools are in `packet` cmd loop. First start, you are in the `main` cmd loop.\n\n```sh\nisip:main\u003e packet\nisip:packet\u003e\n```\n\n* Create a new sip packet with `new` command. If you don't write name, isip create the packet named by `message-{id}`.\n    \n``` sh\nisip:packet\u003e new\nisip:packet\u003e new r1\n```\n\n* List the all created sip packets with `list` command.\n\n``` sh\nisip:packet\u003e list\n```\n\n* Show properties of packets with `show` command. You can type `ip`, `udp` or `sip` with `show` command.\n\n``` sh\nisip:packet\u003e show message-1\nisip:packet\u003e show message-1 ip\nisip:packet\u003e show message-1 udp\nisip:packet\u003e show message-1 sip\nisip:packet\u003e show message-1 ip src\nisip:packet\u003e show message-1 udp sport\nisip:packet\u003e show message-1 sip uri\nisip:packet\u003e show message-1 sip headers.to\n```\n\n* Set the properties of packets with `set` command. You can type `ip`, `udp` or `sip` and properties label with `show` command.\n\n``` sh\nisip\u003e set message-1 ip src 12.12.12.12\nisip\u003e set message-1 udp sport 4545\nisip\u003e set message-1 sip method OPTIONS\nisip\u003e set message-1 sip headers.from \"blabla\"\n```\n\n* Set the random properties of packets with `set` command. You can use with `random-headers-from`, `random-headers-to`, `random-headers-call-id`, `random-headers-max-forwards`, `random-headers-user-agent`, `random-headers-contact`, `random-headers-invite-cseq`, `random-headers-register-cseq` commands.\n\n``` sh\nisip:packet\u003e set message-1 ip src random-ip\nisip:packet\u003e set message-1 udp sport random-port\nisip:packet\u003e set message-1 sip headers.from random-headers-from\nisip:packet\u003e set message-1 sip headers.to random-headers-to\nisip:packet\u003e set message-1 sip headers.contact random-headers-contact\nisip:packet\u003e set message-1 sip body random-data 50\n```\n\n* Send the packet with `send` command.\n\n``` sh\nisip:packet\u003e send message-1 1\nisip:packet\u003e send message-1 150\n```\n\n* Parse the text file to packet with `parse` command.\n\n``` sh\nisip:packet\u003e parse test/test1.txt r1\n```\n\n* Load the packets from `pcap` file with `load` command. If you don't write name, isip create the packet named by `message-{id}`.\n\n``` sh\nisip:packet\u003e load test.pcap r1\nisip:packet\u003e load test.pcap\n```\n\n* Save the packets tp `pcap` file with `save` command. You can save the packet list just single command.\n\n``` sh\nisip:packet\u003e save r1 test.pcap\nisip:packet\u003e save r2 test.pcap # assume you have r2.0, r2.1, r2.2, r2.3 ...\n```\n\n* Open the wireshark for packets with `wireshark` command.\n\n``` sh\nisip:packet\u003e wireshark r1\nisip:packet\u003e wireshark r2 # assume you have r2.0, r2.1, r2.2, r2.3 ...\n```\n\n* List the history with `hist` command.\n\n``` sh    \nisip:packet\u003e hist\n```\n\n* Execute the shell command with `shell` or `!`.\n\n``` sh\nisip:packet\u003e shell ls -la\nisip:packet\u003e ! cat /etc/passwd\n```\n\n* Show the help page with `?` or `help` command.\n\n``` sh\nisip\u003e ?\nisip\u003e help\nisip:packet\u003e ?\nisip:packet\u003e help\nisip:packet\u003e help new\nisip:packet\u003e help send\nisip:packet\u003e help set\nisip:packet\u003e help show\n```\n    \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhalit%2Fisip","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhalit%2Fisip","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhalit%2Fisip/lists"}