diff --git a/py/Aireplay.py b/py/Aireplay.py index 7965212..5249254 100644 --- a/py/Aireplay.py +++ b/py/Aireplay.py @@ -291,7 +291,8 @@ class Aireplay(Thread): ''' Finds the last .xor file in the directory ''' xor = None for fil in os.listdir(Configuration.temp()): - if fil.startswith('replay_') and fil.endswith('.xor'): + if fil.startswith('replay_') and fil.endswith('.xor') or \ + fil.startswith('fragment-') and fil.endswith('.xor'): xor = fil return xor