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

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
containerscrew committed Jan 11, 2024
1 parent 640ec80 commit 68aae9e
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@
- [BUCKETSCAN](#bucketscan)
- [THIS APP AND README IS STILL IN PROGRESS](#this-app-and-readme-is-still-in-progress)
- [Local usage](#local-usage)
- [Others commands](#others-commands)
- [Use your own dictionary](#use-your-own-dictionary)
- [Keywords is what matters](#keywords-is-what-matters)
- [Contribution](#contribution)
- [LICENSE](#license)

Expand Down Expand Up @@ -56,6 +59,27 @@ cd bucketscan/
go run main.go -k containerscrew -d assets/fuzz.txt
```

## Others commands

```shell
$ go run main.go -k containerscrew -q # quick scan only matching https://KEYWORD.s3.X.X.X.X
$ go run main.go -k containerscrew -d assets/fuzz.txt -w 5 # limit number of concurrent workers (goroutines)
$ go run main.go -k keyword1 -k keyaord2 -d assets/fuzz.txt # user multiple keywords
```

## Use your own dictionary

Download your custom dictionary list, for example from [this repo](https://github.com/danielmiessler/SecLists) and use it with `-d` flag.

## Keywords is what matters

The program will create mutations using the keyword(s) you provide and the words inside dictionary. So if you are trying to find buckets with the keyword `containerscrew` (**https://containerscrew.s3.amazonaws.com**), use it in the command line:

```shell
$ go run main.go -k containerscrew -d assets/fuzz.txt
```


# Contribution

Pull requests are welcome! Any code refactoring, improvement, implementation.
Expand Down

0 comments on commit 68aae9e

Please sign in to comment.