You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
when using the example for iterating through the techniques i get the a keyword argument "socks_support"
for technique in attack.enterprise.techniques:
print(technique.id)
TypeError: attrs_init() got an unexpected keyword argument 'socks_support'
To Reproduce
Steps to reproduce the behavior:
Create a python script with the following code:
from pyattck import Attck
attack = Attck()
for technique in attack.enterprise.techniques:
print(technique.id)
Expected behavior
i would expect a print out of the current MITRE Techniques
currently using pyattck 7.1.1
The text was updated successfully, but these errors were encountered:
Describe the bug
when using the example for iterating through the techniques i get the a keyword argument "socks_support"
for technique in attack.enterprise.techniques:
print(technique.id)
TypeError: attrs_init() got an unexpected keyword argument 'socks_support'
To Reproduce
Steps to reproduce the behavior:
from pyattck import Attck
attack = Attck()
for technique in attack.enterprise.techniques:
print(technique.id)
Expected behavior
i would expect a print out of the current MITRE Techniques
currently using pyattck 7.1.1
The text was updated successfully, but these errors were encountered: