Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
kleiton0x00 authored Dec 31, 2021
1 parent 742b478 commit d8f3d59
Showing 1 changed file with 28 additions and 5 deletions.
33 changes: 28 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,38 @@ A simple scanner/exploitation tool written in GO which automatically exploits kn

## Requirements
Make sure to have Chromium installed (Chrome will also do the job):
```sudo apt-get install chromium-browser```
```bash
sudo apt-get install chromium-browser
```

Make sure to have [chromedp](https://github.com/chromedp/chromedp) installed:
```go get -u github.com/chromedp/chromedp```
```bash
go get -u github.com/chromedp/chromedp
```

## Installation
- The recommended way to install the software is to compile it yourself by executing:
```go get -u github.com/kleiton0x00/ppmap```
Check if it is successfuly compiled by typing in the terminal: ```ppmap```
- The recommended way to install the software is to compile it yourself, by following the steps:
1. Clone the repository:
```bash
git clone https://github.com/kleiton0x00/ppmap.git
```
2. Go to **ppmap** directory
```bash
cd ppmap
```
4. Create a new go.mod
```bash
go mod init ppmap
```
5. Install the **chromedp** module
```bash
go get github.com/chromedp/chromedp
```
6. Build the executable file
```bash
go build ppmap.go
```
7. Check if it is successfuly compiled by typing in the terminal: ```ppmap```

- If you face error during manually compiling (for some reasons), you can download the precompiled one:
- Download the already compiled binary [here](https://github.com/kleiton0x00/ppmap/releases)
Expand Down

0 comments on commit d8f3d59

Please sign in to comment.