├── .gitignore ├── CHANGELOG.md ├── README.md ├── api_sample.py ├── common ├── __init__.py ├── config.py └── utils.py ├── core ├── Classification.py ├── Defense.py ├── Exploitation.py ├── Export.py ├── Information.py ├── Inspection.py ├── Risk.py └── __init__.py ├── lib ├── Database.py ├── Search.py ├── Update.py ├── Version.py └── __init__.py ├── pyvfeed.py ├── requirements.txt └── schema ├── schema-v1.1.json ├── schema-v1.2.json └── schema-v1.4.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfeedio/pyvfeed/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfeedio/pyvfeed/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfeedio/pyvfeed/HEAD/README.md -------------------------------------------------------------------------------- /api_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfeedio/pyvfeed/HEAD/api_sample.py -------------------------------------------------------------------------------- /common/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfeedio/pyvfeed/HEAD/common/__init__.py -------------------------------------------------------------------------------- /common/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfeedio/pyvfeed/HEAD/common/config.py -------------------------------------------------------------------------------- /common/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfeedio/pyvfeed/HEAD/common/utils.py -------------------------------------------------------------------------------- /core/Classification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfeedio/pyvfeed/HEAD/core/Classification.py -------------------------------------------------------------------------------- /core/Defense.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfeedio/pyvfeed/HEAD/core/Defense.py -------------------------------------------------------------------------------- /core/Exploitation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfeedio/pyvfeed/HEAD/core/Exploitation.py -------------------------------------------------------------------------------- /core/Export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfeedio/pyvfeed/HEAD/core/Export.py -------------------------------------------------------------------------------- /core/Information.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfeedio/pyvfeed/HEAD/core/Information.py -------------------------------------------------------------------------------- /core/Inspection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfeedio/pyvfeed/HEAD/core/Inspection.py -------------------------------------------------------------------------------- /core/Risk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfeedio/pyvfeed/HEAD/core/Risk.py -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfeedio/pyvfeed/HEAD/core/__init__.py -------------------------------------------------------------------------------- /lib/Database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfeedio/pyvfeed/HEAD/lib/Database.py -------------------------------------------------------------------------------- /lib/Search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfeedio/pyvfeed/HEAD/lib/Search.py -------------------------------------------------------------------------------- /lib/Update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfeedio/pyvfeed/HEAD/lib/Update.py -------------------------------------------------------------------------------- /lib/Version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfeedio/pyvfeed/HEAD/lib/Version.py -------------------------------------------------------------------------------- /lib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfeedio/pyvfeed/HEAD/lib/__init__.py -------------------------------------------------------------------------------- /pyvfeed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfeedio/pyvfeed/HEAD/pyvfeed.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | PyYAML>=5.1.2 2 | boto3==1.26.113 3 | -------------------------------------------------------------------------------- /schema/schema-v1.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfeedio/pyvfeed/HEAD/schema/schema-v1.1.json -------------------------------------------------------------------------------- /schema/schema-v1.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfeedio/pyvfeed/HEAD/schema/schema-v1.2.json -------------------------------------------------------------------------------- /schema/schema-v1.4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfeedio/pyvfeed/HEAD/schema/schema-v1.4.json --------------------------------------------------------------------------------