Skip to content

Commit

Permalink
Added a readme and commands used
Browse files Browse the repository at this point in the history
  • Loading branch information
Ian Liu-Johnston committed Mar 3, 2017
1 parent 5b1bd6c commit e2ad9d1
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 1 deletion.
12 changes: 12 additions & 0 deletions sip_investigation/README.md
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)
7 changes: 7 additions & 0 deletions sip_investigation/info_about_sip.sh
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
2 changes: 1 addition & 1 deletion sip_investigation/sipfilter.sh
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;
Expand Down

0 comments on commit e2ad9d1

Please sign in to comment.