Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pumpkinseed/sqlfuzz
Simple SQL table fuzzing
https://github.com/pumpkinseed/sqlfuzz
database hacktoberfest mysql mysql-database mysql-server sql
Last synced: about 1 month ago
JSON representation
Simple SQL table fuzzing
- Host: GitHub
- URL: https://github.com/pumpkinseed/sqlfuzz
- Owner: PumpkinSeed
- License: apache-2.0
- Created: 2020-11-05T11:50:16.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-12-05T22:09:00.000Z (almost 2 years ago)
- Last Synced: 2024-10-11T06:05:19.650Z (about 1 month ago)
- Topics: database, hacktoberfest, mysql, mysql-database, mysql-server, sql
- Language: Go
- Homepage:
- Size: 109 KB
- Stars: 158
- Watchers: 8
- Forks: 16
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## SQLfuzz
[![Go Report Card](https://goreportcard.com/badge/github.com/PumpkinSeed/sqlfuzz)](https://goreportcard.com/report/github.com/PumpkinSeed/sqlfuzz) [![GoDoc](https://godoc.org/github.com/PumpkinSeed/sqlfuzz?status.svg)](https://godoc.org/github.com/PumpkinSeed/sqlfuzz) [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) [![made-with-Go](https://img.shields.io/badge/Made%20with-Go-1f425f.svg)](http://golang.org) ![sqlfuzz test workflow](https://github.com/PumpkinSeed/sqlfuzz/actions/workflows/test.yml/badge.svg)
Load random data into SQL tables for testing purposes. The tool can get the layout of the SQL table and fill it up with random data.
- [Installation](#installation)
- [Usage](#usage)
- [Flags](#flags)
- [Package usage](#package-usage)### Installation
#### MacOS
```
wget https://github.com/PumpkinSeed/sqlfuzz/releases/download/{RELEASE}/sqlfuzz_darwin_amd64 -O /usr/local/bin/sqlfuzz
chmod +x /usr/local/bin/sqlfuzz
```#### Linux
```
# amd64 build
wget https://github.com/PumpkinSeed/sqlfuzz/releases/download/{RELEASE}/sqlfuzz_linux_amd64 -O /usr/local/bin/sqlfuzz
chmod +x /usr/local/bin/sqlfuzz# arm64 build
wget https://github.com/PumpkinSeed/sqlfuzz/releases/download/{RELEASE}/sqlfuzz_linux_arm64 -O /usr/local/bin/sqlfuzz
chmod +x /usr/local/bin/sqlfuzz
```#### Windows
You can download the Windows build [here](https://github.com/PumpkinSeed/sqlfuzz/releases/download/v0.3.0/sqlfuzz_windows_amd64.exe)
#### Build from source
```
wget https://github.com/PumpkinSeed/sqlfuzz/archive/{RELEASE}.zip
# unzip
# cd into dir
go install main.go
```### Usage
```
# MySQL
sqlfuzz -u username -p password -d database -h 127.0.0.1 -t table -n 100000 -w 100# Postgres
sqlfuzz -u username -p password -d database -h 127.0.0.1 -t table -n 100000 -w 100 -P 5432 -D postgres
```#### Flags
- `u`: User for database connection
- `p`: Password for database connection
- `d`: Database name for database connection
- `h`: Host for database connection
- `P`: Port for database connection
- `D`: Driver for database connection (supported: `mysql`, `postgres`)
- `t`: Table for fuzzing
- `n`: Number of rows to fuzz
- `w`: Concurrent workers to work on fuzzing
- `s`: Seed value for reproducibility of data### Package usage
TODO: Write package