deepsourcestatus / test-repository

Unsafe permissions set on a file JS-D017
Security
Major
8 months ago8 months old
Setting unsafe read/write permissions: 0o777
 53
 54// unsafe permissions
 55fs.chmodSync("/tmp/fs", 0o777);
 56process.umask(0o777); 57
 58/**
 59 * @param country {string} name of the country
Setting unsafe read/write permissions: 0o777
 52}
 53
 54// unsafe permissions
 55fs.chmodSync("/tmp/fs", 0o777); 56process.umask(0o777);
 57
 58/**