{"id":15178894,"url":"https://github.com/pumpkinseed/sqlfuzz","last_synced_at":"2025-08-20T10:32:55.269Z","repository":{"id":52817710,"uuid":"310282975","full_name":"PumpkinSeed/sqlfuzz","owner":"PumpkinSeed","description":"Simple SQL table fuzzing","archived":false,"fork":false,"pushed_at":"2022-12-05T22:09:00.000Z","size":112,"stargazers_count":160,"open_issues_count":10,"forks_count":16,"subscribers_count":8,"default_branch":"main","last_synced_at":"2024-12-17T06:36:57.569Z","etag":null,"topics":["database","hacktoberfest","mysql","mysql-database","mysql-server","sql"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/PumpkinSeed.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-11-05T11:50:16.000Z","updated_at":"2024-12-02T14:46:49.000Z","dependencies_parsed_at":"2023-01-24T07:01:03.562Z","dependency_job_id":null,"html_url":"https://github.com/PumpkinSeed/sqlfuzz","commit_stats":null,"previous_names":[],"tags_count":8,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PumpkinSeed%2Fsqlfuzz","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PumpkinSeed%2Fsqlfuzz/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PumpkinSeed%2Fsqlfuzz/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PumpkinSeed%2Fsqlfuzz/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/PumpkinSeed","download_url":"https://codeload.github.com/PumpkinSeed/sqlfuzz/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":230415318,"owners_count":18222158,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["database","hacktoberfest","mysql","mysql-database","mysql-server","sql"],"created_at":"2024-09-27T15:41:24.380Z","updated_at":"2024-12-19T10:10:18.936Z","avatar_url":"https://github.com/PumpkinSeed.png","language":"Go","readme":"## SQLfuzz\n\n[![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)\n\nLoad 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. \n\n- [Installation](#installation)\n- [Usage](#usage)\n- [Flags](#flags)\n- [Package usage](#package-usage)\n\n### Installation\n\n#### MacOS\n\n```\nwget https://github.com/PumpkinSeed/sqlfuzz/releases/download/{RELEASE}/sqlfuzz_darwin_amd64 -O /usr/local/bin/sqlfuzz\nchmod +x /usr/local/bin/sqlfuzz\n```\n\n#### Linux\n\n```\n# amd64 build\nwget https://github.com/PumpkinSeed/sqlfuzz/releases/download/{RELEASE}/sqlfuzz_linux_amd64 -O /usr/local/bin/sqlfuzz\nchmod +x /usr/local/bin/sqlfuzz\n\n# arm64 build\nwget https://github.com/PumpkinSeed/sqlfuzz/releases/download/{RELEASE}/sqlfuzz_linux_arm64 -O /usr/local/bin/sqlfuzz\nchmod +x /usr/local/bin/sqlfuzz\n```\n\n#### Windows\n\nYou can download the Windows build [here](https://github.com/PumpkinSeed/sqlfuzz/releases/download/v0.3.0/sqlfuzz_windows_amd64.exe)\n\n#### Build from source\n\n```\nwget https://github.com/PumpkinSeed/sqlfuzz/archive/{RELEASE}.zip\n# unzip\n# cd into dir\ngo install main.go\n```\n\n### Usage\n\n```\n# MySQL\nsqlfuzz -u username -p password -d database -h 127.0.0.1 -t table -n 100000 -w 100\n\n# Postgres\nsqlfuzz -u username -p password -d database -h 127.0.0.1 -t table -n 100000 -w 100 -P 5432 -D postgres\n```\n\n#### Flags\n\n- `u`: User for database connection\n- `p`: Password for database connection\n- `d`: Database name for database connection\n- `h`: Host for database connection\n- `P`: Port for database connection\n- `D`: Driver for database connection (supported: `mysql`, `postgres`)\n- `t`: Table for fuzzing\n- `n`: Number of rows to fuzz\n- `w`: Concurrent workers to work on fuzzing\n- `s`: Seed value for reproducibility of data\n\n### Package usage\n\nTODO: Write package ","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpumpkinseed%2Fsqlfuzz","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpumpkinseed%2Fsqlfuzz","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpumpkinseed%2Fsqlfuzz/lists"}