mirror of
				https://github.com/autistic-symposium/sec-pentesting-toolkit.git
				synced 2025-10-30 19:09:18 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
	
		
			175 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
	
		
			175 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| #!/usr/bin/env python
 | |
| 
 | |
| __author__ = "Mia Stein"
 | |
| 
 | |
| from scapy.all import *
 | |
| 
 | |
| packet = IP(dst="192.168.1.114")/ICMP()/"Helloooo!"
 | |
| #send(packet, loop=1)
 | |
| send(packet)
 | |
| packet.show()
 | 
