Skip to content

Commit

Permalink
✏️ Rename modules
Browse files Browse the repository at this point in the history
  • Loading branch information
dwisiswant0 committed Sep 14, 2020
1 parent 6853e16 commit 38f4d13
Show file tree
Hide file tree
Showing 7 changed files with 401 additions and 11 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# CRLFuzz

[![made-with-Go](https://img.shields.io/badge/made%20with-Go-brightgreen.svg)](http://golang.org)
[![go-report](https://goreportcard.com/badge/dw1.io/crlfuzz)](https://goreportcard.com/report/dw1.io/crlfuzz)
[![go-report](https://goreportcard.com/badge/github.com/dwisiswant0/crlfuzz)](https://goreportcard.com/report/github.com/dwisiswant0/crlfuzz)
[![license](https://img.shields.io/badge/license-MIT-_red.svg)](https://opensource.org/licenses/MIT)
[![contributions welcome](https://img.shields.io/badge/contributions-welcome-brightgreen.svg?style=flat)](https://github.com/dwisiswant0/crlfuzz/issues)
[![godoc](https://img.shields.io/badge/godoc-reference-brightgreen.svg)](https://godoc.org/dw1.io/crlfuzz)
[![godoc](https://img.shields.io/badge/godoc-reference-brightgreen.svg)](https://godoc.org/github.com/dwisiswant0/crlfuzz)

A fast tool to scan CRLF vulnerability written in Go

Expand Down Expand Up @@ -45,15 +45,15 @@ A fast tool to scan CRLF vulnerability written in Go
The installation is easy. You can download a prebuilt binary from [releases page](https://github.com/dwisiswant0/crlfuzz/releases), unpack and run! or with

```bash
▶ curl -sSfL dw1.io/crlfuzz.sh | sh -s -- -b /usr/local/bin
▶ curl -sSfL http://git.io/get-crlfuzz | sh -s -- -b /usr/local/bin
```

### from Source

If you have go1.13+ compiler installed and configured:

```bash
▶ GO111MODULE=on go get -v dw1.io/crlfuzz/cmd/crlfuzz
▶ GO111MODULE=on go get -v github.com/dwisiswant0/crlfuzz/cmd/crlfuzz
```

In order to update the tool, you can use `-u` flag with go get command.
Expand Down Expand Up @@ -198,7 +198,7 @@ package main
import (
"fmt"

"dw1.io/crlfuzz/pkg/crlfuzz"
"github.com/dwisiswant0/crlfuzz/pkg/crlfuzz"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion cmd/crlfuzz/main.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package main

import "dw1.io/crlfuzz/internal/runner"
import "github.com/dwisiswant0/crlfuzz/internal/runner"

func main() {
options := runner.ParseOptions()
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module dw1.io/crlfuzz
module github.com/dwisiswant0/crlfuzz

go 1.14

Expand Down

0 comments on commit 38f4d13

Please sign in to comment.