Skip to content

Commit 2d59f44

Browse files
Merge pull request #2883 from blacklanternsecurity/fix-wpscan
Fix Wpscan
2 parents 37ea3b4 + 0eca148 commit 2d59f44

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

bbot/modules/wpscan.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,8 @@ class wpscan(BaseModule):
5858
},
5959
{
6060
"name": "Install wpscan gem",
61-
"gem": {"name": "wpscan", "state": "latest", "user_install": False},
61+
# we install globally because installing to a user's home dir is unpredictable across different distros and often missing from PATH
62+
"shell": "gem install wpscan --no-user-install",
6263
"become": True,
6364
},
6465
]

0 commit comments

Comments
 (0)