├── Dockerfile ├── LICENSE ├── README.md ├── multi.sh ├── o365chk.py └── requirements.txt /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixintel/o365chk/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixintel/o365chk/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixintel/o365chk/HEAD/README.md -------------------------------------------------------------------------------- /multi.sh: -------------------------------------------------------------------------------- 1 | for f in $(cat $1); 2 | do python3 o365chk.py -d $f; 3 | done; 4 | -------------------------------------------------------------------------------- /o365chk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixintel/o365chk/HEAD/o365chk.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nixintel/o365chk/HEAD/requirements.txt --------------------------------------------------------------------------------