Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

edit packet in scapy

from scapy import *

def chgSend(x):
    x[IP].dst = '192.168.1.1'
    send(x)
while 1:
    sniff(prn=chgSend)
Comment

PREVIOUS NEXT
Code Example
Python :: numpy generlized ufunc 
Python :: pandas exploring dataframe 
Python :: python empty array length n grepper 
Python :: save datetime day in seperate column 
Python :: Python[17586:513448] ApplePersistenceIgnoreState: Existing state will not be touched. New state will be written to 
Python :: Which function is used to write all the characters? 
Python :: json on desktop python 
Python :: how to take input a matrix using map in python 
Python :: return positon of ele in list python 
Python :: what is quit block in python 
Python :: python import problem fix 
Python :: sklearn make iterator cv object 
Python :: datetime 
Python :: install cs50 library python 
Python :: python scrapy browser headers to dictionary 
Python :: opening aws images with pillow 
Python :: json file download 
Python :: Python Tkinter Scrollbar Widget Syntax 
Python :: How To Remove Elements From a Set using discard() function in python 
Python :: how many three-letter words with or without meaning can be formed using the letters of the word "python"? 
Python :: relative ranks in python 
Python :: How to swapcase of string in python 
Python :: python convert polygone to centroid 
Python :: pyqt5 running string and clock stackoverfloww 
Python :: using ipfn in python 
Python :: Python create time slot within duration 
Python :: if else ifadesi 
Python :: clustermap subplots 
Python :: is : and :: the same in python slice 
Python :: python scrape data from aspx page 
ADD CONTENT
Topic
Content
Source link
Name
5+9 =