This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export LESS_TERMCAP_mb=$'\E[01;31m' | |
export LESS_TERMCAP_md=$'\E[01;38;5;74m' | |
export LESS_TERMCAP_me=$'\E[0m' | |
export LESS_TERMCAP_so=$'\E[38;5;246m' | |
export LESS_TERMCAP_se=$'\E[0m' | |
export LESS_TERMCAP_us=$'\E[04;38;5;146m' | |
export LESS_TERMCAP_ue=$'\E[0m' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def split_string(source,splitlist): | |
output = [] | |
atsplit = True | |
for char in source: | |
if char in splitlist: | |
atsplit = True | |
else: | |
if atsplit: | |
output.append(char) | |
atsplit = False |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## This file is not now part of Scapy | |
## Look iniqua.com for more informations | |
## ffranz <[email protected]> | |
## This program is published under a GPLv2 license | |
import time | |
import logging | |
from scapy.packet import * | |
from scapy.fields import * |