Skip to content

support docker#9

Open
greenmind-sec wants to merge 1 commit intokahunalu:masterfrom
greenmind-sec:master
Open

support docker#9
greenmind-sec wants to merge 1 commit intokahunalu:masterfrom
greenmind-sec:master

Conversation

@greenmind-sec
Copy link
Copy Markdown

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