Right now filesystem paths are created through string concatenation. This has to be changed to `os.path.join()` for robustness: * [line 38](https://github.com/honeynet/cuckooml/blob/2e5c87e98daeae43c0f560611cb6645b62f4ec92/modules/processing/cuckooml.py#L38) * [line 143](https://github.com/honeynet/cuckooml/blob/2e5c87e98daeae43c0f560611cb6645b62f4ec92/modules/processing/cuckooml.py#L143) * [line 166](https://github.com/honeynet/cuckooml/blob/2e5c87e98daeae43c0f560611cb6645b62f4ec92/modules/processing/cuckooml.py#L166) * [line 1079](https://github.com/honeynet/cuckooml/blob/2e5c87e98daeae43c0f560611cb6645b62f4ec92/modules/processing/cuckooml.py#L1079) * [line 1185](https://github.com/honeynet/cuckooml/blob/2e5c87e98daeae43c0f560611cb6645b62f4ec92/modules/processing/cuckooml.py#L1185) * [line 1188](https://github.com/honeynet/cuckooml/blob/2e5c87e98daeae43c0f560611cb6645b62f4ec92/modules/processing/cuckooml.py#L1188) * [line 1213](https://github.com/honeynet/cuckooml/blob/2e5c87e98daeae43c0f560611cb6645b62f4ec92/modules/processing/cuckooml.py#L1213) * [line 1214](https://github.com/honeynet/cuckooml/blob/2e5c87e98daeae43c0f560611cb6645b62f4ec92/modules/processing/cuckooml.py#L1214)
Right now filesystem paths are created through string concatenation. This has to be changed to
os.path.join()for robustness: