Categories: Kali Linux

Zin : A Payload Injector For Bugbounties Written In Go

Zin is a payload Injector For Bugbounties Written In Go.

Features

  • Inject multiple payloads into all parameters
  • Inject single payloads into all parameters
  • Saves responses into output folder
  • Displays Status Code & Response Length
  • Can grep for patterns in the response
  • Really fast
  • Easy to setup

Install

$ go get -u github.com/ethicalhackingplayground/Zin

New Features

  • Pattern Matching in responses
  • Match Status Codes

Arguments

May the bounties come
-c int
the concurrency (default 20)
-g string
grep the response for any matches
-p string
the payload to be used
-pL string
the list of payloads to be used
-s int
filter by status codes (default 200)

  • SSRF Example

$ subfinder uber.com | gau | grep “=http” | Zin -c 80 -p http://10.82.214.84:31386/foobar.js -g “SUP3R_S3cret_1337_K3y”

  • XSS Example

$ subfinder uber.com | gau| Zin -c 80 -p ‘”><script>alert(matchforthis)script>’ -g “matchforthis”

  • Inject Multiple Payloads

$ cat hosts | gau | grep “&” | Zin -c 80 -pL <payloadfile>

  • Subdomain Scanning

$ subfinder -dL domains –silent | gau | Zin -c 80 -p <payload>

  • Only Test Parameters

$ echo “google.com” | gau | grep “&” | Zin -c 80 -p ‘”><script>alert(matchthis)</script<“‘ -g “matchthis”

  • Multiple Hosts

$ cat hosts | gau | Zin -c 80 -p <payload>

R K

Recent Posts

Bomber : Navigating Security Vulnerabilities In SBOMs

bomber is an application that scans SBOMs for security vulnerabilities. So you've asked a vendor…

2 days ago

EmbedPayloadInPng : A Guide To Embedding And Extracting Encrypted Payloads In PNG Files

Embed a payload within a PNG file by splitting the payload across multiple IDAT sections.…

2 days ago

Exploit Street – Navigating The New Terrain Of Windows LPEs

Exploit-Street, where we dive into the ever-evolving world of cybersecurity with a focus on Local…

4 days ago

ShadowDumper – Advanced Techniques For LSASS Memory Extraction

Shadow Dumper is a powerful tool used to dump LSASS (Local Security Authority Subsystem Service)…

5 days ago

Shadow-rs : Harnessing Rust’s Power For Kernel-Level Security Research

shadow-rs is a Windows kernel rootkit written in Rust, demonstrating advanced techniques for kernel manipulation…

3 weeks ago

ExecutePeFromPngViaLNK – Advanced Execution Of Embedded PE Files via PNG And LNK

Extract and execute a PE embedded within a PNG file using an LNK file. The…

4 weeks ago