An open API service indexing awesome lists of open source software.

https://github.com/enindu/csrf-bypass

CSRF Bypass is a lightweight tool designed to handle CSRF tokens in forms and seamlessly send requests to target endpoints
https://github.com/enindu/csrf-bypass

cli command-line csrf csrf-bypass csrf-token cybersecurity forensics go golang

Last synced: 9 months ago
JSON representation

CSRF Bypass is a lightweight tool designed to handle CSRF tokens in forms and seamlessly send requests to target endpoints

Awesome Lists containing this project

README

          

# CSRF Bypass

CSRF Bypass is a lightweight tool designed to handle CSRF tokens in forms and seamlessly send requests to target endpoints. While conducting ethical web application forensics, I found that bypassing forms protected by CSRF tokens can be quite a hassle. I'm sure there are plenty of tools out there that handle CSRF token bypassing, but instead of searching for one, I decided to build my own. This tool does exactly what I need — nothing more, nothing less.

## Install

You can install CSRF Bypass using `go install` command.

```
go install github.com/enindu/csrf-bypass@latest
```

## Usage

You can run CSRF Bypass using the following syntax.

```
csrf-bypass [flags]
```

To display version message:

```
csrf-bypass -v
```

To display help message:

```
csrf-bypass -h
```

## License

This software is licensed under the [GNU General Public License v3.0](https://www.gnu.org/licenses/gpl-3.0.en.html). You can view the full license [here](https://github.com/enindu/csrf-bypass/blob/master/COPYING.md).