diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f5f9ae2 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +bruteforce \ No newline at end of file diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index f792549..091f75c 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,4 +1,4 @@ -# Contributing to [PROJECT'S NAME] +# Contributing to BruteForce Next-Gen ## Create an issue @@ -11,7 +11,7 @@ Select an [issue](https://github.com/PoCInnovation/$REPOSITORY/issues) that you The recommended workflow is to fork this repository and open pull requests from your fork. -### 1. Fork, clone & configure [PROJECT'S NAME] upstream +### 1. Fork, clone & configure `BruteForce` upstream - Click on the _Fork_ button on GitHub - Clone the original repository diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..dbf6383 --- /dev/null +++ b/Makefile @@ -0,0 +1,18 @@ + +NAME = bruteforce +SRC = src/main.go + +all: $(NAME) + +$(NAME): + go build -o $(NAME) $(SRC) + +clean: + go clean + +fclean: + $(RM) $(NAME) + +re: fclean all + +.PHONY: all clean fclean re diff --git a/README.md b/README.md index 2804b5a..68e6395 100644 --- a/README.md +++ b/README.md @@ -1,24 +1,42 @@ -# Brut Forcer Next-Gen +# BrutForce Next-Gen -Brut Forcer next generation written in go +BrutForcer written in go. ## How does it work? -[Explain how this project is working] +Using advanced wordlists to gather information on web servers and perform brute force attacks. ## Getting Started ### Installation -[Explain how to install all of the project's dependencies] +[Golang install guide](https://go.dev/doc/install) + +Clone the repository and simply execute: + +```shell +make +``` + +or + +```shell +go build +``` + +to build the executable `bruteforce`. ### Quickstart -Like every programme in Go : ```go run``` +To run the program directly, execute: + +```shell +go run src/main.go +``` ### Usage -[Explain how to use this project] +No usage so far ## Get involved diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..a88057d --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module bruteforce + +go 1.19 diff --git a/src/main.go b/src/main.go new file mode 100644 index 0000000..6ffde47 --- /dev/null +++ b/src/main.go @@ -0,0 +1,9 @@ +package main + +import ( + "fmt" +) + +func main() { + fmt.Println("Hello World") +}