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
- Host: GitHub
- URL: https://github.com/enindu/csrf-bypass
- Owner: enindu
- License: gpl-3.0
- Created: 2025-08-04T14:31:54.000Z (10 months ago)
- Default Branch: master
- Last Pushed: 2025-08-04T14:34:32.000Z (10 months ago)
- Last Synced: 2025-08-04T18:25:22.131Z (10 months ago)
- Topics: cli, command-line, csrf, csrf-bypass, csrf-token, cybersecurity, forensics, go, golang
- Language: Go
- Homepage:
- Size: 20.5 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: COPYING.md
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).