-
Notifications
You must be signed in to change notification settings - Fork 85
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #155 from grutz/ny2015
Version 1.1.0 Release
- Loading branch information
Showing
82 changed files
with
401 additions
and
219 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 |
---|---|---|
@@ -1,20 +1,35 @@ | ||
AUTHORS | ||
=================== | ||
======= | ||
|
||
Kvasir started in 2010 by the Security Posture Assessment (SPA) team of | ||
Cisco Systems' Advanced Services group. | ||
Cisco Systems' Advanced Services group. It is currently maintained by a | ||
group of individuals. | ||
|
||
The PRIMARY AUTHORS are: | ||
|
||
* Kurt Grutzmacher <[email protected]> or <[email protected]> | ||
* Kurt Grutzmacher (@grutz) | ||
|
||
Additional contributors: | ||
|
||
* Lincoln Nguyen <[email protected]> | ||
* Vikas Singhal <[email protected]> | ||
* Lincoln Nguyen (@lincolnn) | ||
* Vikas Singhal (@vikasprogrammer) | ||
* Karn Ganeshen (@juushya) | ||
* Jan Rude (@whoot) | ||
* @andurin | ||
* @kimdane | ||
* @eddiezab | ||
* Samuel Bonilla (@pyner) | ||
* Markus Piéton (@marpie) | ||
* @001001 | ||
* @hybriz | ||
|
||
The full list of code contributors and their contributions can be viewed at | ||
https://github.com/KvasirSecurity/Kvasir/graphs/contributors | ||
|
||
Thanks to the tireless members of the SPA team for their patience, use and | ||
continued support. Thanks to the manaagement team of Cisco Systems Advanced | ||
Services who supported the development and helped push for open sourcing this | ||
code. | ||
continued support. Thanks to the management team of Cisco Systems Advanced | ||
Services who supported the development and helped push for open sourcing | ||
this code. | ||
|
||
THANK YOU for using and contributing to the continued development of Kvasir! | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,11 +3,12 @@ | |
##--------------------------------------# | ||
## Kvasir | ||
## | ||
## (c) 2010-2013 Cisco Systems, Inc. | ||
## (c) 2010-2014 Cisco Systems, Inc. | ||
## (c) 2015 Kurt Grutzmacher | ||
## | ||
## Accounts controller | ||
## | ||
## Author: Kurt Grutzmacher <[email protected]> | ||
## Author: Kurt Grutzmacher <[email protected]> | ||
##--------------------------------------# | ||
|
||
from skaldship.hosts import get_host_record, host_title_maker, host_a_maker, create_hostfilter_query | ||
|
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 |
---|---|---|
|
@@ -12,7 +12,7 @@ | |
## function calls for three fields and you only want to pass the second | ||
## field then submit (None, secondvariable, None) | ||
## | ||
## Author: Kurt Grutzmacher <[email protected]> | ||
## Author: Kurt Grutzmacher <[email protected]> | ||
##--------------------------------------# | ||
|
||
__version__ = "1.1.0" | ||
|
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 |
---|---|---|
|
@@ -3,11 +3,12 @@ | |
##--------------------------------------# | ||
## Kvasir | ||
## | ||
## (c) 2010-2013 Cisco Systems, Inc. | ||
## (c) 2010-2014 Cisco Systems, Inc. | ||
## (c) 2015 Kurt Grutzmacher | ||
## | ||
## CPE controller | ||
## | ||
## Author: Kurt Grutzmacher <[email protected]> | ||
## Author: Kurt Grutzmacher <[email protected]> | ||
##--------------------------------------# | ||
|
||
import logging | ||
|
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 |
---|---|---|
|
@@ -3,11 +3,12 @@ | |
##--------------------------------------# | ||
## Kvasir | ||
## | ||
## (c) 2010-2013 Cisco Systems, Inc. | ||
## (c) 2010-2014 Cisco Systems, Inc. | ||
## (c) 2015 Kurt Grutzmacher | ||
## | ||
## Default controller | ||
## | ||
## Author: Kurt Grutzmacher <[email protected]> | ||
## Author: Kurt Grutzmacher <[email protected]> | ||
##--------------------------------------# | ||
|
||
from skaldship.general import get_oreally_404 | ||
|
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 |
---|---|---|
|
@@ -3,11 +3,12 @@ | |
##--------------------------------------# | ||
## Kvasir | ||
## | ||
## (c) 2010-2013 Cisco Systems, Inc. | ||
## (c) 2010-2014 Cisco Systems, Inc. | ||
## (c) 2015 Kurt Grutzmacher | ||
## | ||
## Evidence controller | ||
## | ||
## Author: Kurt Grutzmacher <[email protected]> | ||
## Author: Kurt Grutzmacher <[email protected]> | ||
##--------------------------------------# | ||
|
||
from skaldship.hosts import get_host_record, host_title_maker, host_a_maker, create_hostfilter_query | ||
|
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 |
---|---|---|
|
@@ -10,7 +10,7 @@ | |
## Download from https://github.com/offensive-security/exploit-database and place in a directory | ||
## In kvasir.yaml set the directory in exploitdb_path, e.g. exploitdb_path: "/usr/share/exploitdb" | ||
## | ||
## Author: Kurt Grutzmacher <[email protected]> | ||
## Author: Kurt Grutzmacher <[email protected]> | ||
##--------------------------------------# | ||
|
||
try: | ||
|
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 |
---|---|---|
|
@@ -3,11 +3,12 @@ | |
##--------------------------------------# | ||
## Kvasir | ||
## | ||
## (c) 2010-2013 Cisco Systems, Inc. | ||
## (c) 2010-2014 Cisco Systems, Inc. | ||
## (c) 2015 Kurt Grutzmacher | ||
## | ||
## Exploits controller | ||
## | ||
## Author: Kurt Grutzmacher <[email protected]> | ||
## Author: Kurt Grutzmacher <[email protected]> | ||
##--------------------------------------# | ||
|
||
from skaldship.hosts import host_title_maker, get_host_record, create_hostfilter_query | ||
|
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 |
---|---|---|
|
@@ -3,11 +3,12 @@ | |
##--------------------------------------# | ||
## Kvasir | ||
## | ||
## (c) 2010-2013 Cisco Systems, Inc. | ||
## (c) 2010-2014 Cisco Systems, Inc. | ||
## (c) 2015 Kurt Grutzmacher | ||
## | ||
## Hosts controller | ||
## | ||
## Author: Kurt Grutzmacher <[email protected]> | ||
## Author: Kurt Grutzmacher <[email protected]> | ||
##--------------------------------------# | ||
|
||
from skaldship.hosts import create_hostfilter_query, get_host_record, pagination, host_title_maker | ||
|
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 |
---|---|---|
|
@@ -3,11 +3,12 @@ | |
##--------------------------------------# | ||
## Kvasir | ||
## | ||
## (c) 2010-2013 Cisco Systems, Inc. | ||
## (c) 2010-2014 Cisco Systems, Inc. | ||
## (c) 2015 Kurt Grutzmacher | ||
## | ||
## Metasploit controller | ||
## | ||
## Author: Kurt Grutzmacher <[email protected]> | ||
## Author: Kurt Grutzmacher <[email protected]> | ||
##--------------------------------------# | ||
|
||
from skaldship.hosts import get_host_record, host_title_maker | ||
|
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 |
---|---|---|
|
@@ -2,11 +2,12 @@ | |
##--------------------------------------# | ||
## Kvasir | ||
## | ||
## (c) 2010-2013 Cisco Systems, Inc. | ||
## (c) 2010-2014 Cisco Systems, Inc. | ||
## (c) 2015 Kurt Grutzmacher | ||
## | ||
## Nessus controller | ||
## | ||
## Author: Kurt Grutzmacher <[email protected]> | ||
## Author: Kurt Grutzmacher <[email protected]> | ||
##--------------------------------------# | ||
|
||
from skaldship.metasploit import msf_get_config | ||
|
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 |
---|---|---|
|
@@ -3,11 +3,12 @@ | |
##--------------------------------------# | ||
## Kvasir | ||
## | ||
## (c) 2010-2013 Cisco Systems, Inc. | ||
## (c) 2010-2014 Cisco Systems, Inc. | ||
## (c) 2015 Kurt Grutzmacher | ||
## | ||
## NetBIOS controller | ||
## | ||
## Author: Kurt Grutzmacher <[email protected]> | ||
## Author: Kurt Grutzmacher <[email protected]> | ||
##--------------------------------------# | ||
|
||
from skaldship.hosts import create_hostfilter_query, get_host_record, host_title_maker, host_a_maker | ||
|
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 |
---|---|---|
|
@@ -2,11 +2,12 @@ | |
##--------------------------------------# | ||
## Kvasir | ||
## | ||
## (c) 2010-2013 Cisco Systems, Inc. | ||
## (c) 2010-2014 Cisco Systems, Inc. | ||
## (c) 2015 Kurt Grutzmacher | ||
## | ||
## Nexpose controller | ||
## | ||
## Author: Kurt Grutzmacher <[email protected]> | ||
## Author: Kurt Grutzmacher <[email protected]> | ||
##--------------------------------------# | ||
|
||
from nxajax import NXAJAX, ScanTemplates | ||
|
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 |
---|---|---|
|
@@ -2,11 +2,12 @@ | |
##--------------------------------------# | ||
## Kvasir | ||
## | ||
## (c) 2010-2013 Cisco Systems, Inc. | ||
## (c) 2010-2014 Cisco Systems, Inc. | ||
## (c) 2015 Kurt Grutzmacher | ||
## | ||
## Nmap controller | ||
## | ||
## Author: Kurt Grutzmacher <[email protected]> | ||
## Author: Kurt Grutzmacher <[email protected]> | ||
##--------------------------------------# | ||
|
||
import logging | ||
|
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 |
---|---|---|
|
@@ -3,11 +3,12 @@ | |
##--------------------------------------# | ||
## Kvasir | ||
## | ||
## (c) 2010-2013 Cisco Systems, Inc. | ||
## (c) 2010-2014 Cisco Systems, Inc. | ||
## (c) 2015 Kurt Grutzmacher | ||
## | ||
## Evidence controller | ||
## | ||
## Author: Kurt Grutzmacher <[email protected]> | ||
## Author: Kurt Grutzmacher <[email protected]> | ||
##--------------------------------------# | ||
|
||
from skaldship.hosts import get_host_record, host_title_maker, host_a_maker | ||
|
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 |
---|---|---|
|
@@ -3,11 +3,12 @@ | |
##--------------------------------------# | ||
## Kvasir | ||
## | ||
## (c) 2010-2013 Cisco Systems, Inc. | ||
## (c) 2010-2014 Cisco Systems, Inc. | ||
## (c) 2015 Kurt Grutzmacher | ||
## | ||
## OS controller | ||
## | ||
## Author: Kurt Grutzmacher <[email protected]> | ||
## Author: Kurt Grutzmacher <[email protected]> | ||
##--------------------------------------# | ||
|
||
from skaldship.hosts import get_host_record, host_title_maker, host_a_maker | ||
|
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 |
---|---|---|
|
@@ -3,11 +3,12 @@ | |
##--------------------------------------# | ||
## Kvasir | ||
## | ||
## (c) 2010-2013 Cisco Systems, Inc. | ||
## (c) 2010-2014 Cisco Systems, Inc. | ||
## (c) 2015 Kurt Grutzmacher | ||
## | ||
## Reporting controller | ||
## | ||
## Author: Kurt Grutzmacher <[email protected]> | ||
## Author: Kurt Grutzmacher <[email protected]> | ||
##--------------------------------------# | ||
|
||
from skaldship.general import cvss_metrics | ||
|
Oops, something went wrong.