Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@

SSRF Playground is a platform to practice exploitation and testing for Server Side Request Forgery issues in web applications.

### Setup

Because this using logrus package, you need to get logrus first:
```bash
export GOPATH=~/go
export PATH=$PATH:$GOPATH/bin #you can save this to .bashrc or .zshrc
mkdir -p $GOPATH
cd $GOPATH
go get github.com/sirupsen/logrus
```

### How to play?

Run the server by typing `go run .`
Expand All @@ -18,4 +29,4 @@ Have fun playing. The UI is accessible at http://localhost:8001/

### Contributing

The project is still in very early stage hence contributions are more than welcomed.
The project is still in very early stage hence contributions are more than welcomed.