Skip to content

Latest commit

 

History

History
287 lines (179 loc) · 3.86 KB

help.md

File metadata and controls

287 lines (179 loc) · 3.86 KB

USE

This document provides examples for each option available in the options.go file.

Options

Insert Letters

-il 3 -sd "example"

Insert 3 letters into the seed text "example".

Insert Numbers

-in 2 -sd "example"

Insert 2 numbers into the seed text "example".

Insert Special Characters

-is 1 -sd "example"

Insert 1 special character into the seed text "example".

Delete Letters

-dl 2 -sd "example"

Delete 2 letters from the seed text "example".

Delete Numbers

-dn 1 -sd "example"

Delete 1 number from the seed text "example".

Delete Special Characters

-ds 1 -sd "example"

Delete 1 special character from the seed text "example".

Case Change Operations

-cc 2 -sd "example"

Perform 2 case change operations on the seed text "example".

Vowel Change Operations

-vc 1 -sd "example"

Change 1 vowel in the seed text "example".

Fake Word Operations

-fw 1 -sd "example"

Generate 1 fake word based on the seed text "example".

Swap Operations

-sw 2 -sd "example"

Swap 2 characters in the seed text "example".

Duplicate Operations

-du 3 -sd "example"

Duplicate 3 characters in the seed text "example".

Reverse String

-rv -sd "example"

Reverse the seed text "example".

Pick Operations

-pk 5 -sd "example"

Pick 5 characters from the seed text "example".

HTML Element Insertion Operations

-he 2 -sd "example"

Insert 2 HTML elements into the seed text "example".

Boundary Value Operations

-bd 1 -sd "example"

Apply 1 boundary value operation on the seed text "example".

Replace Letters

-rl 2 -sd "example"

Replace 2 letters in the seed text "example".

Replace Numbers

-rn 1 -sd "example"

Replace 1 number in the seed text "example".

Replace Special Characters

-rs 1 -sd "example"

Replace 1 special character in the seed text "example".

Prefix

-p "prefix-" -sd "example"

Add "prefix-" before the seed text "example".

Suffix

-s "-suffix" -sd "example"

Add "-suffix" after the seed text "example".

Static Text

-st "static" -sd "example"

Insert "static" into the seed text "example".

Random Word

-w "wordlist.txt" -rw 1

Generate 1 random word from the wordlist "wordlist.txt".

Random JSON Objects

-rj 2

Generate 2 random JSON objects.

Number

-n 4

Custom operation with the number 4.

Any

-a

Perform a random operation.

TCP

-tcp "localhost:8080"

Send the result to the TCP host:port "localhost:8080".

UDP

-udp "localhost:8080"

Send the result to the UDP host:port "localhost:8080".

Bluetooth MAC

-bt-mac "AA:BB:CC:DD:EE:FF"

Use the Bluetooth MAC address "AA:BB:CC:DD:EE:FF".

Bluetooth Scan

-bt-scan

Scan for Bluetooth devices.

Combined Examples

Insert and Delete

-il 3 -dl 2 -sd "example"

Insert 3 letters and delete 2 letters from the seed text "example".

Case Change and Vowel Change

-cc 2 -vc 1 -sd "example"

Perform 2 case changes and 1 vowel change on the seed text "example".

Prefix and Suffix

-p "prefix-" -s "-suffix" -sd "example"

Add "prefix-" before and "-suffix" after the seed text "example".

Reverse and Pick

-rv -pk 5 -sd "example"

Reverse the seed text and then pick 5 characters from it.

Insert, Insert Special, and Duplicate

-il 2 -is 1 -du 3 -sd "example"

Insert 2 letters, insert 1 special character, and duplicate 3 characters in the seed text "example".

Replace Letters and Replace Numbers

-rl 2 -rn 1 -sd "example"

Replace 2 letters and 1 number in the seed text "example".