Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Invariant violated: no value in mreceivers for ip #8

Closed
Alrighttt opened this issue Jun 2, 2020 · 2 comments
Closed

Invariant violated: no value in mreceivers for ip #8

Alrighttt opened this issue Jun 2, 2020 · 2 comments
Labels
bug Something isn't working

Comments

@Alrighttt
Copy link

[Error] Invariant violated: no value in mreceivers for ip

This error message can be reproduced with the following script. It is simply rapidly opening then closing sockets with the target.

#!/usr/bin/env python3
import socket
import binascii

def spam(peer):
    sends = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
    sends.connect(peer)
    sends.close()

target = ('<target IP>', <target port>) # your target 

while True:
    spam(target)
@ssadler
Copy link
Owner

ssadler commented Jun 2, 2020

Good find!

@ssadler
Copy link
Owner

ssadler commented Jun 6, 2020

So I have a test case for this using an exhaustive checker, and I believe I fixed the issue, but I found an issue in the checker so I'm waiting for closure on that: barrucadu/dejafu#323 (comment).

@ssadler ssadler added the bug Something isn't working label Jun 6, 2020
@ssadler ssadler changed the title [Error] Invariant violated: no value in mreceivers for ip Invariant violated: no value in mreceivers for ip Jun 8, 2020
@ssadler ssadler closed this as completed Jun 23, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants