This document provides examples for each option available in the options.go
file.
-il 3 -sd "example"
Insert 3 letters into the seed text "example".
-in 2 -sd "example"
Insert 2 numbers into the seed text "example".
-is 1 -sd "example"
Insert 1 special character into the seed text "example".
-dl 2 -sd "example"
Delete 2 letters from the seed text "example".
-dn 1 -sd "example"
Delete 1 number from the seed text "example".
-ds 1 -sd "example"
Delete 1 special character from the seed text "example".
-cc 2 -sd "example"
Perform 2 case change operations on the seed text "example".
-vc 1 -sd "example"
Change 1 vowel in the seed text "example".
-fw 1 -sd "example"
Generate 1 fake word based on the seed text "example".
-sw 2 -sd "example"
Swap 2 characters in the seed text "example".
-du 3 -sd "example"
Duplicate 3 characters in the seed text "example".
-rv -sd "example"
Reverse the seed text "example".
-pk 5 -sd "example"
Pick 5 characters from the seed text "example".
-he 2 -sd "example"
Insert 2 HTML elements into the seed text "example".
-bd 1 -sd "example"
Apply 1 boundary value operation on the seed text "example".
-rl 2 -sd "example"
Replace 2 letters in the seed text "example".
-rn 1 -sd "example"
Replace 1 number in the seed text "example".
-rs 1 -sd "example"
Replace 1 special character in the seed text "example".
-p "prefix-" -sd "example"
Add "prefix-" before the seed text "example".
-s "-suffix" -sd "example"
Add "-suffix" after the seed text "example".
-st "static" -sd "example"
Insert "static" into the seed text "example".
-w "wordlist.txt" -rw 1
Generate 1 random word from the wordlist "wordlist.txt".
-rj 2
Generate 2 random JSON objects.
-n 4
Custom operation with the number 4.
-a
Perform a random operation.
-tcp "localhost:8080"
Send the result to the TCP host:port "localhost:8080".
-udp "localhost:8080"
Send the result to the UDP host:port "localhost:8080".
-bt-mac "AA:BB:CC:DD:EE:FF"
Use the Bluetooth MAC address "AA:BB:CC:DD:EE:FF".
-bt-scan
Scan for Bluetooth devices.
-il 3 -dl 2 -sd "example"
Insert 3 letters and delete 2 letters from the seed text "example".
-cc 2 -vc 1 -sd "example"
Perform 2 case changes and 1 vowel change on the seed text "example".
-p "prefix-" -s "-suffix" -sd "example"
Add "prefix-" before and "-suffix" after the seed text "example".
-rv -pk 5 -sd "example"
Reverse the seed text and then pick 5 characters from it.
-il 2 -is 1 -du 3 -sd "example"
Insert 2 letters, insert 1 special character, and duplicate 3 characters in the seed text "example".
-rl 2 -rn 1 -sd "example"
Replace 2 letters and 1 number in the seed text "example".