Chris Herdt
Chris Herdt
@Ankita1490 I don't know for sure but I suspect that the path to `systemctl` is not in the PATH environment variable for the user running the command. Try using the...
I had the same error message. I suspect it is because the joomla container has no route to 10.55.9.198, the database host. The error message is consistent with this problem....
For your first issue, use the password `w3af` when prompted. For your second issue, the default version of Python on contemporary versions of Kali Linux is Python3. Using Python2, as...
or just create a separate generator that creates actual BINGO cards
Done, but could cut lots of extraneous Javascript: https://osric.com/bingo-card-generator/traditional.html Currently linked only from the FAQ
You are probably trying to run `w3af_console` using Python 3. Try using Python 2 instead.
There were originally 2 reasons why I combined the HTML, CSS, and JS into the index file: - Reduce requests to the server - To facilitate offline use of the...
This feature already exists! `removeEmptyElements` should take care of this. How are users managing to create cards with empty spaces? Possibly they are including a space between commas or after...
Yes this was reported again recently, a user included a trailing comma plus a newline. I think we can safely remove commas that have only whitespace following.
Example: ``` var list = ["alpha","beta","gamma","delta"], i, word; for (i = 0; list.length > 0; i = i + 1) { word = list.splice(Math.floor(Math.random()*list.length), 1); console.log(word); } ```