Skip to content

Commit 2c28b18

Browse files
fix paths
1 parent 1a67fec commit 2c28b18

File tree

4 files changed

+5
-36
lines changed

4 files changed

+5
-36
lines changed

README.md

Lines changed: 2 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,16 @@ This tool is a reimplementation of the Python [HTTPMethods](https://github.com/S
99
- Test multiple HTTP methods against target URLs
1010
- Detect supported and potentially dangerous HTTP methods
1111
- Automatic discovery of server-supported methods via OPTIONS request
12-
- Concurrent request handling for fast results
1312
- Support for custom headers and cookies
1413
- Option to read target URLs from a file
1514
- JSON export for results
16-
- Low dependencies and simple installation
1715

1816
## Installation
1917

2018
If you have Go installed, you may use:
2119

2220
```sh
23-
go install github.com/byte/gohttpprobe/cmd/ghp@latest
21+
go install github.com/ByteSizedMarius/gohttpprobe/cmd/ghp@latest
2422
```
2523

2624
### From Source
@@ -181,33 +179,4 @@ You can use these wordlists with the `-m` flag:
181179
ghp -u example.com -m wordlists/burp.txt
182180
```
183181

184-
You can also create your own custom wordlist file with HTTP methods and use it with the `-m` flag.
185-
186-
## Development
187-
188-
### Running Tests
189-
190-
Run all tests:
191-
```sh
192-
go test ./...
193-
```
194-
195-
Run tests with verbose output:
196-
```sh
197-
go test -v ./...
198-
```
199-
200-
Check test coverage:
201-
```sh
202-
go test -cover ./...
203-
```
204-
205-
Generate a detailed coverage report:
206-
```sh
207-
go test -coverprofile=coverage.out ./...
208-
go tool cover -html=coverage.out
209-
```
210-
211-
## License
212-
213-
MIT License
182+
You can also create your own custom wordlist file with HTTP methods and use it with the `-m` flag.

cmd/ghp/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"fmt"
55
"os"
66

7-
"github.com/byte/gohttpprobe/internal/app"
7+
"github.com/ByteSizedMarius/gohttpprobe/internal/app"
88
)
99

1010
func main() {

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/byte/gohttpprobe
1+
module github.com/ByteSizedMarius/gohttpprobe
22

33
go 1.22.2
44

internal/app/root.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"fmt"
55
"strings"
66

7-
"github.com/byte/gohttpprobe/internal/probe"
7+
"github.com/ByteSizedMarius/gohttpprobe/internal/probe"
88
"github.com/spf13/cobra"
99
)
1010

0 commit comments

Comments
 (0)