udphex/README.md

42 lines
1.7 KiB
Markdown
Raw Permalink Normal View History

2021-01-07 14:59:34 -03:00
# udphex
2021-01-07 15:01:33 -03:00
This Is A UDP DoS Method Which Sends A Hex String.
# Use without compile
2021-04-29 23:02:49 -04:00
**Requires golang installed**\
`go run udphex.go HOST PORT`
# Compile :)
2021-04-29 23:02:49 -04:00
**Also requires golang installed, but you can use it in multiple machines without install golang in every machine**\
`go build`\
Then search for the udphex binary file
# Use the compiled file
`./udphex HOST PORT`\
Example: `./udphex 127.0.0.1 666`
# How to change the hex message (recommended) if you want a custom message
Why should you change the hex value?\
The program sends this message **(in this fork the message is replaced by "abc")** via UDP.\
![image](https://user-images.githubusercontent.com/61166695/116642459-f2b4d000-a93c-11eb-87fb-8794b8956823.png)\
You need modify the source code, the udphex.go file.
Go to line 18 and you will see something like this (in this fork)
```go
conn.Write([]byte("\x61\x73\x64"))
```
`\x61\x73\x64` equals to "abc"\
So if we want it to say "cba" we have to change it for `\x63\x62\x61`\
And now if you want a custom message you need a text to hex convertor, also you can use HxD\
![e9ez2DCXWl](https://user-images.githubusercontent.com/61166695/116642777-9bfbc600-a93d-11eb-8cab-a4858446f704.gif)\
Write what do you want and convert it to hex, in the gif i get `64 69 73 63 6F 72 64 2E 67 67 2F 61 61 61` as output\
So you need to delete the spaces and put `\x` every 2 numbers/letters and you should get something like this `\x64\x69\x73\x63\x6F\x72\x64\x2E\x67\x67\x2F\x61\x61\x61`\
Then copy that here and compile it or watever you want lol.\
![nERS00ObPL](https://user-images.githubusercontent.com/61166695/116643195-7de29580-a93e-11eb-9e94-bfa3f2a7a157.gif)
2021-01-07 15:02:23 -03:00
2021-01-08 23:58:58 -03:00
# Stop Attack
Ctrl+C
2021-01-09 00:31:04 -03:00
2021-04-29 22:06:09 -04:00
# Edited by
The one that forked this.
2021-05-26 18:58:27 -04:00
The original repository was deleted OMEGALUL