eblot / pybootd

A minimalist bootp/dhcp/pxe and tftp server

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Infinite loop traps code

swirhun opened this issue · comments

If tag = 0, you have an infinite loop in pxed.py:

while tail:
    tag = ord(tail[0])
    # padding
    if tag == 0:
        continue

Good catch, thanks.