Skip to content

Commit

Permalink
merge: merge change
Browse files Browse the repository at this point in the history
  • Loading branch information
57ave committed Jul 16, 2024
2 parents cb95775 + 22d3f2c commit 3defbfd
Show file tree
Hide file tree
Showing 6 changed files with 57 additions and 8 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
bruteforce
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Contributing to [PROJECT'S NAME]
# Contributing to BruteForce Next-Gen

## Create an issue

Expand All @@ -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
Expand Down
18 changes: 18 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -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
30 changes: 24 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
3 changes: 3 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module bruteforce

go 1.19
9 changes: 9 additions & 0 deletions src/main.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
package main

import (
"fmt"
)

func main() {
fmt.Println("Hello World")
}

0 comments on commit 3defbfd

Please sign in to comment.