-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
moved sipcrack to sipdigestcrack and sipdump to sippcapdump
- Loading branch information
Showing
8 changed files
with
20 additions
and
18 deletions.
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 |
---|---|---|
|
@@ -7,13 +7,13 @@ __license__ = "GPL" | |
__copyright__ = "Copyright (C) 2015-2022, SIPPTS" | ||
__email__ = "[email protected]" | ||
|
||
from sippts.sipcrack import SipDigestCrack | ||
from sippts.lib.params import get_sipcrack_args | ||
from sippts.sipdigestcrack import SipDigestCrack | ||
from sippts.lib.params import get_sipdigestcrack_args | ||
|
||
|
||
def main(): | ||
# Values | ||
file, verbose, wordlist, bruteforce, charset, max, min, prefix, suffix = get_sipcrack_args() | ||
file, verbose, wordlist, bruteforce, charset, max, min, prefix, suffix = get_sipdigestcrack_args() | ||
|
||
s = SipDigestCrack() | ||
s.file = file | ||
|
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 |
---|---|---|
|
@@ -7,14 +7,14 @@ __license__ = "GPL" | |
__copyright__ = "Copyright (C) 2015-2022, SIPPTS" | ||
__email__ = "[email protected]" | ||
|
||
from sippts.sipdump import SipDump | ||
from sippts.lib.params import get_sipdump_args | ||
from sippts.sippcapdump import SipPCAPDump | ||
from sippts.lib.params import get_sippcapdump_args | ||
|
||
|
||
def main(): | ||
file, ofile = get_sipdump_args() | ||
file, ofile = get_sippcapdump_args() | ||
|
||
s = SipDump() | ||
s = SipPCAPDump() | ||
s.file = file | ||
s.ofile = ofile | ||
|
||
|
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
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
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
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
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
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