Example of network programming using the original socket in Python

Source: Internet
Author: User
This article mainly introduces the example of using the original socket for network programming in Python. using sock_raw to accept and send packets can avoid many restrictions on the network protocol, you can refer to the experiment where you need to construct a separate HTTP data packet, and use SOCK_STREAM to send data packets, you need to complete TCP interaction.

Therefore, we want to use the original socket for programming, construct data packets directly, and send data at the IP layer, that is, use SOCK_RAW for data transmission.

The advantage of SOCK_RAW is that it can completely modify the data packets, process all data packets on the IP layer, and modify fields without the limitations of UDP and TCP.

The following describes how to construct an HTTP packet,

The IP layer and TCP layer use the python Impacket library, and fill in the http content.

#!/usr/bin/env python #-------------------------------------------------------------------------------# Name:   raw_http.py# Purpose:    construct a raw http get packet## Author:  Yangjun## Created:    08/02/2014# Copyright:  (c) Yangjun 2014# Licence:    
 
  #------------------------------------------------------------------------------- import sysimport socketfrom impacket import ImpactDecoder, ImpactPacket def main():   if len(sys.argv) < 3:    print "Use: %s 
   
   
    " % sys.argv[0]    print "Use: %s 
     
      
      
       " % sys.argv[0] sys.exit(1) elif len(sys.argv) == 3: src = sys.argv[1] dst = sys.argv[2] cnt = 1 elif len(sys.argv) ==4: src = sys.argv[1] dst = sys.argv[2] cnt = sys.argv[3] else: print "Input error!" sys.exit(1)#print src, dst ip = ImpactPacket.IP() ip.set_ip_src(src) ip.set_ip_dst(dst) # Create a new ICMP packet of type ECHO. icmp = ImpactPacket.ICMP() tcp = ImpactPacket.TCP() tcp.set_th_sport(55968) tcp.set_th_dport(80) tcp.set_th_seq(1) tcp.set_th_ack(1) tcp.set_th_flags(0x18) tcp.set_th_win(64) tcp.contains( ImpactPacket.Data("GET /att/DIYLife/41264/528 HTTP/1.1\r\nHost: 192.168.111.1\r\nAccept-Encoding: identity\r\n\r\n")) ip.contains(tcp) # Open a raw socket. Special permissions are usually required. s = socket.socket(socket.AF_INET, socket.SOCK_RAW, socket.IPPROTO_TCP) s.setsockopt(socket.IPPROTO_IP, socket.IP_HDRINCL, 1) seq_id = 0 while cnt >= 1: # Calculate its checksum. seq_id = seq_id + 1 tcp.set_th_seq(seq_id) tcp.calculate_checksum() # Send it to the target host. s.sendto(ip.get_packet(), (dst,80)) cnt= cnt -1 if __name__ == '__main__': main()
      
     
    
   
  
 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.