Skip to content
This repository has been archived by the owner on Oct 5, 2024. It is now read-only.

Commit

Permalink
update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
AmyangXYZ committed May 8, 2018
1 parent 8dc1100 commit b718f7f
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,25 @@ Just for learn.
- [x] Friendly PoC Interface
- [x] Web GUI(using WebSocket)

## Extension

You only need to implement these interfaces when extending function or poc.

```go
type Gatherer interface {
// Set params.
Set(...interface{})
// Run your function.
Run()
// Report your result.
Report() map[string]interface{}
}
```

It's almost same for Attacker and PoC.

But I think PoC should also implement `Info() string` interface to return a short brief of the vulnerability.

## Installation

```bash
Expand Down

0 comments on commit b718f7f

Please sign in to comment.