Create an account

Very important

  • To access the important data of the forums, you must be active in each forum and especially in the leaks and database leaks section, send data and after sending the data and activity, data and important content will be opened and visible for you.
  • You will only see chat messages from people who are at or below your level.
  • More than 500,000 database leaks and millions of account leaks are waiting for you, so access and view with more activity.
  • Many important data are inactive and inaccessible for you, so open them with activity. (This will be done automatically)


Thread Rating:
  • 279 Vote(s) - 3.49 Average
  • 1
  • 2
  • 3
  • 4
  • 5
networking - 2

#1
networking 2
today i'll be talking about Subnet mask wild card (tcp client UDP client tcp server coded with python-,)
network sockets
A network socket is an internal endpoint for sending or receiving data at a single node in a computer network.
network address contains an IP (internet protocol) address and port number. In a very simple
way, a socket is a way to talk to other computers. By means of a socket, a process can
communicate with another process over the network.
In order to create a socket, use the socket.socket() function that is available in the
socket module. The general syntax of a socket function is as follows:
s = socket.socket (socket_family, socket_type, protocol=0)
Here is the description of the parameters:
socket_family: socket.AF_INET, PF_PACKET
AF_INET is the address family for IPv4. PF_PACKET operates at the device driver
layer. The pcap library for Linux uses PF_PACKET. These arguments represent
the address families and the protocol of the transport layer
Socket_type : socket.SOCK_DGRAM, socket.SOCK_RAW,socket.SOCK_STREAM
The socket.SOCK_DGRAM argument depicts that UDP is unreliable and
connectionless, and socket.SOCK_STREAM depicts that TCP is reliable and is
a two-way, connection-based service.
Server socket
In a client-server architecture, there is one centralized server that provides service,
and many clients request and receive service from the centralized server. Here are
some methods you need to know:
socket.bind(address): This method is used to connect the address
(IP address, port number) to the socket. The socket must be open before
connecting to the address.
socket.listen(q): This method starts the TCP listener. The q argument
defines the maximum number of lined-up connections.
socket.accept(): The use of this method is to accept the connection
from the client. Before using this method, the socket.bind(address) and
socket.listen(q) methods must be used. The socket.accept() method
returns two values: client_socket and address, where client_socket is a
new socket object used to send and receive data over the connection, and
address is the address of the client.
client socket
The only method dedicated to the client is the following:
socket.connect(address): This method connects the client to the server.

Socket methods
  • socket.recv(bufsize): This method receives a TCP message from thesocket. bufsize is the maximum data received,[/*]
  • socket.recvfrom(bufsize): This method receives data from the socket.The method returns a pair of values: the first value gives the received data,and the second value gives the address of the socket sending the data[/*]
  • socket.recv_into(buffer): This method receives data less than or equal to buffer. The buffer parameter is created by the bytearray() method[/*]
  • socket.recvfrom_into(buffer): This method obtains data from the socketand writes it into the buffer. The return value is a pair (nbytes, address),where nbytes is the number of bytes received, and the address is the addressof the socket sending the data[/*]
  • socket.send(bytes): This method is used to send data to the socket.Before sending the data, ensure that the socket is connected to a remotemachine. It returns the number of bytes sent[/*]
  • socket.sendto(data, address): This method is used to send data to the socket. Generally, we use this method in UDP. UDP is a connectionless protocol; therefore, the socket should not be connected to a remote machine[/*]
  • socket.sendall(data): As the name implies, this method sends all data to the socket. Before sending the data, ensure that the socket is connected to a remote machine. This method ceaselessly transfers data until an error is seen.If an error is seen, an exception would rise, and socket.close() would close the socket,[/*]

The server is in the listening mode, and the client connects to the server.
The following diagram shows how the client accepts a connection from the server
[Image: slide_11.jpg]

UDP client server connection
[Image: UDPsockets.jpg]

[Image: UDP_Connections.jpg]

TCP client

Hidden Content
You must

[To see links please register here]

or

[To see links please register here]

to view this content.

TCP server

Hidden Content
You must

[To see links please register here]

or

[To see links please register here]

to view this content.


UDP client

Hidden Content
You must

[To see links please register here]

or

[To see links please register here]

to view this content.


subnet addressing
IP networks can be divided into smaller networks called subnetworks (or subnets). Subnetting
provides the network administrator with several benefits, including extra flexibility, more efficient
use of network addresses, and the capability to contain broadcast traffic (a broadcast will not cross
a router.Subnets are under local administration. As such, the outside world sees an organization as a single
network and has no detailed knowledge of the organization’s internal structure.
A given network address can be broken up into many subnetworks. For example, 172.16.1.0,
172.16.2.0, 172.16.3.0, and 172.16.4.0 are all subnets within network 172.16.0.0. (All 0s in the host
portion of an address specifies the entire network,

subnet mask
A subnet address is created by using bits from the host field and designating them as the
subnet field. The number of borrowed bits varies and is specified by the subnet mask

questions suggestions? comment below
Reply

#2
Execellent tut!
























1
Reply

#3
It's nice to read you've defined a short, yet effective, post on subnets.

I still come across many users who don't understand the basics.
Reply



Forum Jump:


Users browsing this thread:
1 Guest(s)

©0Day  2016 - 2023 | All Rights Reserved.  Made with    for the community. Connected through