├── .landscape.yaml ├── .travis.yml ├── CHANGELOG.md ├── CREDITS ├── LICENSE.md ├── README.md ├── config ├── __init__.py ├── constants.py └── stats.py ├── csv_exports └── read.me ├── export └── read.me ├── lib ├── __init__.py ├── common │ ├── __init__.py │ ├── banner.py │ ├── database.py │ └── utils.py ├── core │ ├── __init__.py │ ├── methods │ │ ├── __init__.py │ │ ├── exploit.py │ │ ├── info.py │ │ ├── json_dump.py │ │ ├── patches.py │ │ ├── ref.py │ │ ├── risk.py │ │ ├── rules.py │ │ └── scanners.py │ ├── search.py │ └── update.py └── migration │ ├── __init__.py │ ├── csvexports.sql │ ├── mongo.conf │ └── mongo.py ├── requirements.txt ├── tests.py └── vfeedcli.py /.landscape.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolswatch/vFeed/HEAD/.landscape.yaml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolswatch/vFeed/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolswatch/vFeed/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolswatch/vFeed/HEAD/CREDITS -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolswatch/vFeed/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolswatch/vFeed/HEAD/README.md -------------------------------------------------------------------------------- /config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolswatch/vFeed/HEAD/config/constants.py -------------------------------------------------------------------------------- /config/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolswatch/vFeed/HEAD/config/stats.py -------------------------------------------------------------------------------- /csv_exports/read.me: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolswatch/vFeed/HEAD/csv_exports/read.me -------------------------------------------------------------------------------- /export/read.me: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolswatch/vFeed/HEAD/export/read.me -------------------------------------------------------------------------------- /lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/common/banner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolswatch/vFeed/HEAD/lib/common/banner.py -------------------------------------------------------------------------------- /lib/common/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolswatch/vFeed/HEAD/lib/common/database.py -------------------------------------------------------------------------------- /lib/common/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolswatch/vFeed/HEAD/lib/common/utils.py -------------------------------------------------------------------------------- /lib/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/core/methods/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolswatch/vFeed/HEAD/lib/core/methods/__init__.py -------------------------------------------------------------------------------- /lib/core/methods/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolswatch/vFeed/HEAD/lib/core/methods/exploit.py -------------------------------------------------------------------------------- /lib/core/methods/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolswatch/vFeed/HEAD/lib/core/methods/info.py -------------------------------------------------------------------------------- /lib/core/methods/json_dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolswatch/vFeed/HEAD/lib/core/methods/json_dump.py -------------------------------------------------------------------------------- /lib/core/methods/patches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolswatch/vFeed/HEAD/lib/core/methods/patches.py -------------------------------------------------------------------------------- /lib/core/methods/ref.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolswatch/vFeed/HEAD/lib/core/methods/ref.py -------------------------------------------------------------------------------- /lib/core/methods/risk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolswatch/vFeed/HEAD/lib/core/methods/risk.py -------------------------------------------------------------------------------- /lib/core/methods/rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolswatch/vFeed/HEAD/lib/core/methods/rules.py -------------------------------------------------------------------------------- /lib/core/methods/scanners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolswatch/vFeed/HEAD/lib/core/methods/scanners.py -------------------------------------------------------------------------------- /lib/core/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolswatch/vFeed/HEAD/lib/core/search.py -------------------------------------------------------------------------------- /lib/core/update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolswatch/vFeed/HEAD/lib/core/update.py -------------------------------------------------------------------------------- /lib/migration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/migration/csvexports.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolswatch/vFeed/HEAD/lib/migration/csvexports.sql -------------------------------------------------------------------------------- /lib/migration/mongo.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolswatch/vFeed/HEAD/lib/migration/mongo.conf -------------------------------------------------------------------------------- /lib/migration/mongo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolswatch/vFeed/HEAD/lib/migration/mongo.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolswatch/vFeed/HEAD/tests.py -------------------------------------------------------------------------------- /vfeedcli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toolswatch/vFeed/HEAD/vfeedcli.py --------------------------------------------------------------------------------