OpenRCE / sulley

A pure-python fully automated and unattended fuzzing framework.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

In graph.py, 290 line, "edges" or "edge" ?

Tengfei1010 opened this issue · comments

hi,I recently learn sulley . I find in graph.py,290 line, as:


    else:
        for edges in self.edges.values():
            if hasattr(edge, attribute):
                if getattr(edge, attribute) == value:
                    return edge   

I think "edges" should be "edge"?

I think so. It should be a slip.

commented

It is indeed. I'll fix that.

The new branch of sulley (2.0) is actually doing away with all the graph stuff as everything was built upon those and it introduces a huge amount of un-necessary complexity.

ok, thank you.