Skip to content

Commit

Permalink
Merge pull request #48 from Pepelux/devel
Browse files Browse the repository at this point in the history
Version 4.1.0
  • Loading branch information
Pepelux authored Sep 25, 2024
2 parents 176e511 + fd87325 commit b108b23
Show file tree
Hide file tree
Showing 25 changed files with 787 additions and 30 deletions.
41 changes: 39 additions & 2 deletions bin/sippts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# -*- coding: utf-8 -*-

__author__ = "Jose Luis Verdeguer"
__version__ = "4.0"
__version__ = "4.1"
__license__ = "GPL"
__copyright__ = "Copyright (C) 2015-2024, SIPPTS"
__email__ = "[email protected]"
Expand Down Expand Up @@ -32,8 +32,45 @@ def main():
s.spoof()

exit()
elif params[0] == "astami":
(
cmd,
ip,
host,
rport,
proto,
threads,
timeout,
verbose,
file,
nocolor,
ofile,
random,
local_ip,
user,
pwd,
cmd
) = params

from sippts.astami import SipAstAMI

if params[0] == "scan":
s = SipAstAMI()
s.ip = ip
s.host = host
s.rport = rport
s.proto = proto
s.threads = threads
s.timeout = timeout
s.verbose = verbose
s.file = file
s.nocolor = nocolor
s.ofile = ofile
s.random = random
s.localip = local_ip
s.user = user
s.pwd = pwd
s.cmd = cmd
elif params[0] == "scan":
(
cmd,
ip,
Expand Down
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,17 @@
if __name__ == "__main__":
setup(scripts=scripts,
name='SIPPTS',
author='Jose Luis Verdeguer - Pepelux',
version='4.0',
author='Jose Luis Verdeguer aka Pepelux',
version='4.1',
install_requires=[
'netifaces',
'requests',
'IPy',
'scapy',
'pyshark',
'websocket-client',
'rel'
'rel',
'asterisk-ami'
],
extra_requires=[
'cursor',
Expand Down
2 changes: 1 addition & 1 deletion src/sippts/arpspoof.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# -*- coding: utf-8 -*-

__author__ = "Jose Luis Verdeguer"
__version__ = "4.0"
__version__ = "4.1"
__license__ = "GPL"
__copyright__ = "Copyright (C) 2015-2024, SIPPTS"
__email__ = "[email protected]"
Expand Down
Loading

0 comments on commit b108b23

Please sign in to comment.