tristanlatr/WPWatcher

View on GitHub

Showing 449 of 449 total issues

Multiple spaces after operator
Open

    extras_require      =   {'syslog' : ['rfc5424-logging-handler', 'cefevent'],
Severity: Minor
Found in setup.py by pep8

Avoid extraneous whitespace around an operator.

Okay: a = 12 + 3
E221: a = 4  + 5
E222: a = 4 +  5
E223: a = 4\t+ 5
E224: a = 4 +\t5

Multiple spaces after operator
Open

    keywords            =   ABOUT['__keywords__'],
Severity: Minor
Found in setup.py by pep8

Avoid extraneous whitespace around an operator.

Okay: a = 12 + 3
E221: a = 4  + 5
E222: a = 4 +  5
E223: a = 4\t+ 5
E224: a = 4 +\t5

Probable insecure usage of temp file/directory.
Open

                shutil.rmtree("/tmp/wpscan")
Severity: Minor
Found in wpwatcher/core.py by bandit

Try, Except, Pass detected.
Open

                except Exception:
Severity: Info
Found in wpwatcher/core.py by bandit

Probable insecure usage of temp file/directory.
Open

        self.pidfile = '/tmp/wpwatcher.daemon.pid.lock'
Severity: Minor
Found in wpwatcher/daemon.py by bandit

Consider possible security implications associated with subprocess module.
Open

import subprocess
Severity: Info
Found in wpwatcher/wpscan.py by bandit

subprocess call - check for execution of untrusted input.
Open

        process = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
Severity: Info
Found in wpwatcher/wpscan.py by bandit

Probable insecure usage of temp file/directory.
Open

        if os.path.isdir("/tmp/wpscan"):
Severity: Minor
Found in wpwatcher/core.py by bandit

Use of exec detected.
Open

exec((HERE / "wpwatcher" / "__version__.py").read_text(), ABOUT)
Severity: Minor
Found in setup.py by bandit
Severity
Category
Status
Source
Language