Skip to content

Commit 423daca

Browse files
committed
Refresh documentation guidance and dependency hints
1 parent 1c9d531 commit 423daca

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ SIPVicious OSS is a set of security tools that can be used to audit SIP based Vo
77
To get started read the following:
88

99
- [Getting started on the Wiki](https://github.com/enablesecurity/sipvicious/wiki/Getting-Started)
10-
- Enable Security blog: [SIPVicious Tutorial: VoIP Security Testing with DVRTC](http://enablesecurity.com/blog/sipvicious-tutorial-voip-security-testing-with-dvrtc/).
10+
- Enable Security blog: [SIPVicious Tutorial: VoIP Security Testing with DVRTC](https://www.enablesecurity.com/blog/sipvicious-tutorial-voip-security-testing-with-dvrtc/).
1111

1212
The GitHub wiki remains the primary home for SIPVicious OSS documentation.
1313

sipvicious/libs/svhelper.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -660,7 +660,7 @@ def makeRequest(method, fromaddr, toaddr, dsthost, port, callid, srchost='', bra
660660

661661

662662
def reportBugToAuthor(err):
663-
print('Make sure you are running the latest version of SIPVicious by running "git pull" in the current directory and then python setup.py install')
663+
print('Make sure you are running the latest version of SIPVicious by running "git pull" in the current directory and then "python3 -m pip install ."')
664664
print('Please visit the following URL to open a bug report: https://github.com/EnableSecurity/sipvicious/issues/new?assignees=&labels=bug&template=bug-report.md&title='+ quote("SIPVicious "+__version__+" crashing on "+ err.__str__()))
665665
print('Include the following information:')
666666
print('CLI params:', ' '.join(sys.argv))
@@ -1087,7 +1087,7 @@ def outputtopdf(outputfile, title, labels, db, resdb):
10871087
from reportlab.lib.styles import getSampleStyleSheet
10881088
except ImportError:
10891089
log.error(
1090-
'Reportlab was not found. To export to pdf you need to have reportlab installed. Check out www.reportlab.org')
1090+
'Reportlab was not found. To export to pdf you need to have reportlab installed: python3 -m pip install reportlab')
10911091
return
10921092
log.debug('ok reportlab library found')
10931093
styles = getSampleStyleSheet()
@@ -1191,7 +1191,7 @@ def getTargetFromSRV(domainnames, methods):
11911191
import dns.resolver
11921192
except ImportError:
11931193
log.critical(
1194-
'could not import the DNS library. Get it from http://www.dnspython.org/')
1194+
'could not import the DNS library. Install it with: python3 -m pip install dnspython')
11951195
return
11961196
for domainname in domainnames:
11971197
for proto in ['udp', 'tcp']:

sipvicious/svcrash.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ def getArgs():
6969
s.bind(('0.0.0.0', 5060))
7070
except socket.error:
7171
parser.error(
72-
"You either need have port 5060 available or install scapy from http://www.secdev.org/projects/scapy/")
72+
"You either need have port 5060 available or install scapy with: python3 -m pip install scapy.")
7373
return options, args
7474

7575
class asteriskreadlognsend:

0 commit comments

Comments
 (0)