-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Ian Liu-Johnston
committed
Mar 3, 2017
1 parent
5b1bd6c
commit e2ad9d1
Showing
3 changed files
with
20 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# Focus on the SIP protocol for VoIP | ||
## Info about packets | ||
* [Brekeke uses default user 100](http://wiki.brekeke.com/wiki/Brekeke-SIP-Server-v3-Quickstart) | ||
* [Brekeke Administrator Manual](http://www.brekeke.com/doc/sip/sip_admin_v3.pdf) | ||
* [Brekeke Wiki](http://wiki.brekeke.com/wiki/) | ||
|
||
## Malware | ||
* [SIPViscious](http://blog.sipvicious.org/) | ||
* [SIPviscious Source on Github](https://github.com/EnableSecurity/sipvicious) | ||
|
||
## Unrelated | ||
* [TFTP malware](https://github.com/EnableSecurity/tftptheft) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#!/usr/bin/env bash | ||
# prints out information about the sip packets. | ||
if [[ ! "$#" -eq 1 ]]; then | ||
echo "Usage: ./info_about_sip.sh <file.pcap>" | ||
else | ||
tshark -r $1 -n -e frame.number -e ip.src -e ip.dst -e udp.dstport -e sip.r-uri -T fields "sip" -P | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
#!/usr/bin/env bash | ||
|
||
# dumps sip packets to a file | ||
list=$(cat SIP_requests.txt | cut -f1) | ||
|
||
for i in $list; | ||
|