-
Notifications
You must be signed in to change notification settings - Fork 69
UDP Generic module
Base protocol: UDP
Type: Stateless
Parent: Stateless
This is another basic transport module in the framework. The client sends only UDP packets to the server and that is it. All IP packets that were sent to the network on the client side will be captured and rerouted to this UDP channel. The server receives the IP packets, and forwards it to the original destination.
UDP is a stateless protocol, so each and every connection will be handled in the same thread. When a new packet received, it needs to be matched with a client, before forwarding the packet.
The client's network allows only some specific ports to use directly without filtering or intercepting it.
Common examples: 53
Hint: nmap -sU portquiz.net
[UDP_generic]
enabled = yes
serverport = 1338
The value of this attribute is either yes or no. If it was set to yes, then the module will be initiated when the framework is started.
The port that will be used by the module. By default it is udp/1338.
Allow incoming UDP connections to the port that was configured the config file.
XFLTReaT 2017-2020 Balazs Bucsay @xoreipeip
- Home - Introduction to XFLTReaT
- The framework - The framework explained
- Installation - How to install the tool
- Configuration - How to configure the framework
- Operating System support - See the supported Operating Systems
- Transport modules - Explanation of the transport modules
- Authentication modules - Explanation of the authentication modules
- Encryption modules - Explanation of the encryption modules
- Use Cases - Examples use cases
- Development - How to develop for the framework