We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
original code in line 71 temp_list = phase['phase_name']
temp_list = phase['phase_name']
Because many att&ck techniques can be used in several phases of kill chain, so you should use append for variable 'temp_list'
Code in line 71 should be changed to : temp_list.append(phase['phase_name'])
temp_list.append(phase['phase_name'])
The text was updated successfully, but these errors were encountered:
#3 #2 - Fixed issue related to appending techniques correctly
bf3366c
Merge pull request #4 from swimlane/fixed_appending_techniques_issue
7b17d0a
This should be fixed - pushing to pypi soon
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
original code in line 71
temp_list = phase['phase_name']
Because many att&ck techniques can be used in several phases of kill chain, so you should use append for variable 'temp_list'
Code in line 71 should be changed to :
temp_list.append(phase['phase_name'])
The text was updated successfully, but these errors were encountered: