Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

support docker #9

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Conversation

greenmind-sec
Copy link

Insert Support Docker

Support Docker

Install Docker

For install docs use the oficial docs: Docs Oficial

Create image docker

sudo docker build -t "greenmind/pwnbin:1" .

"greenmind/pwnbin:1" is name the image, but create you name. example: pwnbin:1

Using docker

sudo docker container run -it --rm -v "${PWD}:/opt/pwnbin/" "greenmind/pwnbin:1" -k "leak,pass" -o teste2.txt
  • sudo (For root permission)
  • docker container run -it --rm (To start the container in interactive mode and remove as soon as it is finished)
  • -v "${PWD}:/opt/pwnbin/" (To connect to the container we create a link because it is isolated from the host, a local link is being created for the /opt/pwnbin directory which is where it is installed)
  • "greenmind/pwnbin:1" (Is the name of the image)
  • -k "leak,pass" (keywords)
  • -o teste2.txt (output)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant