├── .gitignore ├── GetConfigInfos ├── README.md ├── __init__.py ├── api.py ├── common.py ├── generic.py ├── main.py ├── pbx.py ├── vnetd.py └── vxss.py ├── LICENSE ├── ListUsersInfoFromDB ├── AZDBpwdRetriever.py ├── NBDBDBAPwdRetriever.py ├── NBDBSybaseConnector.py ├── ParseFilesHelper.py ├── README.md ├── __init__.py ├── main.py └── tests │ ├── .yekcnedwssap │ └── vxd.conf ├── PreAuthCartography ├── README.md ├── __init__.py ├── main.py └── plotNetbackup.py ├── README.md ├── __init__.py ├── bin ├── nbudbdump.py ├── nbumap.py └── nbuscan.py ├── docs └── NetBackupForDummies.md ├── img └── carto.png ├── network-analysis ├── BpcdClasses.py ├── BprdClasses.py ├── NbatdClasses.py ├── PbxRegisterClasses.py └── pynet │ └── NBUEndpoints.py ├── requirements.txt ├── setup.py └── utils ├── __init__.py └── network.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbus-seclab/nbutools/HEAD/.gitignore -------------------------------------------------------------------------------- /GetConfigInfos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbus-seclab/nbutools/HEAD/GetConfigInfos/README.md -------------------------------------------------------------------------------- /GetConfigInfos/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | -------------------------------------------------------------------------------- /GetConfigInfos/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbus-seclab/nbutools/HEAD/GetConfigInfos/api.py -------------------------------------------------------------------------------- /GetConfigInfos/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbus-seclab/nbutools/HEAD/GetConfigInfos/common.py -------------------------------------------------------------------------------- /GetConfigInfos/generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbus-seclab/nbutools/HEAD/GetConfigInfos/generic.py -------------------------------------------------------------------------------- /GetConfigInfos/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbus-seclab/nbutools/HEAD/GetConfigInfos/main.py -------------------------------------------------------------------------------- /GetConfigInfos/pbx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbus-seclab/nbutools/HEAD/GetConfigInfos/pbx.py -------------------------------------------------------------------------------- /GetConfigInfos/vnetd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbus-seclab/nbutools/HEAD/GetConfigInfos/vnetd.py -------------------------------------------------------------------------------- /GetConfigInfos/vxss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbus-seclab/nbutools/HEAD/GetConfigInfos/vxss.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbus-seclab/nbutools/HEAD/LICENSE -------------------------------------------------------------------------------- /ListUsersInfoFromDB/AZDBpwdRetriever.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbus-seclab/nbutools/HEAD/ListUsersInfoFromDB/AZDBpwdRetriever.py -------------------------------------------------------------------------------- /ListUsersInfoFromDB/NBDBDBAPwdRetriever.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbus-seclab/nbutools/HEAD/ListUsersInfoFromDB/NBDBDBAPwdRetriever.py -------------------------------------------------------------------------------- /ListUsersInfoFromDB/NBDBSybaseConnector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbus-seclab/nbutools/HEAD/ListUsersInfoFromDB/NBDBSybaseConnector.py -------------------------------------------------------------------------------- /ListUsersInfoFromDB/ParseFilesHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbus-seclab/nbutools/HEAD/ListUsersInfoFromDB/ParseFilesHelper.py -------------------------------------------------------------------------------- /ListUsersInfoFromDB/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbus-seclab/nbutools/HEAD/ListUsersInfoFromDB/README.md -------------------------------------------------------------------------------- /ListUsersInfoFromDB/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | -------------------------------------------------------------------------------- /ListUsersInfoFromDB/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbus-seclab/nbutools/HEAD/ListUsersInfoFromDB/main.py -------------------------------------------------------------------------------- /ListUsersInfoFromDB/tests/.yekcnedwssap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbus-seclab/nbutools/HEAD/ListUsersInfoFromDB/tests/.yekcnedwssap -------------------------------------------------------------------------------- /ListUsersInfoFromDB/tests/vxd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbus-seclab/nbutools/HEAD/ListUsersInfoFromDB/tests/vxd.conf -------------------------------------------------------------------------------- /PreAuthCartography/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbus-seclab/nbutools/HEAD/PreAuthCartography/README.md -------------------------------------------------------------------------------- /PreAuthCartography/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | -------------------------------------------------------------------------------- /PreAuthCartography/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbus-seclab/nbutools/HEAD/PreAuthCartography/main.py -------------------------------------------------------------------------------- /PreAuthCartography/plotNetbackup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbus-seclab/nbutools/HEAD/PreAuthCartography/plotNetbackup.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbus-seclab/nbutools/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | all = ["GetConfigInfos"] 3 | -------------------------------------------------------------------------------- /bin/nbudbdump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbus-seclab/nbutools/HEAD/bin/nbudbdump.py -------------------------------------------------------------------------------- /bin/nbumap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbus-seclab/nbutools/HEAD/bin/nbumap.py -------------------------------------------------------------------------------- /bin/nbuscan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbus-seclab/nbutools/HEAD/bin/nbuscan.py -------------------------------------------------------------------------------- /docs/NetBackupForDummies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbus-seclab/nbutools/HEAD/docs/NetBackupForDummies.md -------------------------------------------------------------------------------- /img/carto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbus-seclab/nbutools/HEAD/img/carto.png -------------------------------------------------------------------------------- /network-analysis/BpcdClasses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbus-seclab/nbutools/HEAD/network-analysis/BpcdClasses.py -------------------------------------------------------------------------------- /network-analysis/BprdClasses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbus-seclab/nbutools/HEAD/network-analysis/BprdClasses.py -------------------------------------------------------------------------------- /network-analysis/NbatdClasses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbus-seclab/nbutools/HEAD/network-analysis/NbatdClasses.py -------------------------------------------------------------------------------- /network-analysis/PbxRegisterClasses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbus-seclab/nbutools/HEAD/network-analysis/PbxRegisterClasses.py -------------------------------------------------------------------------------- /network-analysis/pynet/NBUEndpoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbus-seclab/nbutools/HEAD/network-analysis/pynet/NBUEndpoints.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbus-seclab/nbutools/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbus-seclab/nbutools/HEAD/setup.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/airbus-seclab/nbutools/HEAD/utils/network.py --------------------------------------------------------------------------------