Compare commits
10 commits
20100cbf91
...
848b7a57a6
Author | SHA1 | Date | |
---|---|---|---|
|
848b7a57a6 | ||
|
9853be9003 | ||
|
30cc8bc61e | ||
|
24a93fa1d4 | ||
dd98981b9d | |||
|
f4f7bf571f | ||
|
61d0e46424 | ||
|
0392acae69 | ||
2e45a8c171 | |||
|
c750f6e6c7 |
4 changed files with 20 additions and 14 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -1,2 +1,2 @@
|
|||
.DS_Store
|
||||
**/.DS_Store
|
||||
/bin
|
||||
|
|
13
README.md
13
README.md
|
@ -1,5 +1,6 @@
|
|||
# ipaddrgen 👩💻
|
||||
### the funny ip address generator
|
||||
|
||||
## the funny ip address generator
|
||||
|
||||
a small cli program written in go that generates random ip addresses and "does things" to them.
|
||||
|
||||
|
@ -9,11 +10,11 @@ a small cli program written in go that generates random ip addresses and "does t
|
|||
|
||||
*legal disclaimer: no this isn't a "hacking" tool, it's a goofy piece of software that spits text out onto the screen and nothing more. I wholeheartedly encourage that this software be used in le funny hacking montage.*
|
||||
|
||||
# screenies 📸
|
||||
## screenies 📸
|
||||
|
||||

|
||||
|
||||
# use it! ✨
|
||||
## use it! ✨
|
||||
|
||||
[download](https://github.com/mellodoot/ipaddrgen/releases/latest) whichever version is compatible with your OS (if such a version isn't listed, I'm so sorry!), then run it via your terminal!
|
||||
|
||||
|
@ -21,14 +22,14 @@ i.e. `./ipaddrgen-PLATFORM-ARCH`
|
|||
|
||||
for help with command-line arguments (for some fun customisation), try `./ipaddrgen -h`!
|
||||
|
||||
# build it! 📀
|
||||
## build it! 📀
|
||||
|
||||
### requirements:
|
||||
### requirements
|
||||
|
||||
- [go](https://go.dev/) (currently using 1.17.6)
|
||||
- that's about it
|
||||
|
||||
### how:
|
||||
### how
|
||||
|
||||
windows: `go build -o ./bin/ipaddrgen.exe ./src`
|
||||
|
||||
|
|
|
@ -17,17 +17,12 @@ import (
|
|||
// === internal vars (no need to edit these!) ===
|
||||
|
||||
var running bool
|
||||
var i_was_IPv6 = false
|
||||
var i_was_ported = false
|
||||
var i_last_method string
|
||||
var i_methods []string
|
||||
|
||||
//go:embed methods.txt
|
||||
var i_methods_file embed.FS
|
||||
|
||||
//go:embed help.txt
|
||||
var i_help_file embed.FS
|
||||
|
||||
// === timings ===
|
||||
|
||||
// minimum wait for an update (ms).
|
||||
|
@ -50,7 +45,7 @@ var port_chance = 0.05
|
|||
|
||||
func main() {
|
||||
|
||||
if argIndex("h") >= 0 {
|
||||
if argIndex("h") >= 0 || argIndex("help") >= 0 {
|
||||
showHelp()
|
||||
return
|
||||
}
|
||||
|
|
|
@ -131,6 +131,16 @@ causing a ruckus on
|
|||
grossly offending
|
||||
nullnullnull
|
||||
doing indescribable things to
|
||||
doing unspeakable things to
|
||||
doing outrageous things to
|
||||
doing silly things to
|
||||
owning
|
||||
sending your minecraft base coordinates to
|
||||
melting
|
||||
melting
|
||||
dumping on
|
||||
'boutta bust a nut on
|
||||
exposing search history for
|
||||
sending prayers to
|
||||
saying night night to
|
||||
giving up on
|
||||
never gonna give up on
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue