Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upAdd Google2016 unbreakable challenge to examples repo #194
Conversation
|
|
||
| # We are given in the challenge that the flag begins with CTF{ | ||
| # So we can apply constraints to ensure that is true | ||
| state.constraints.add(buffer[0] == ord('C')) |
offlinemark
Apr 27, 2017
Contributor
does this still work if we use state.add instead of state.constraints.add? if so, let's use that.
does this still work if we use state.add instead of state.constraints.add? if so, let's use that.
ctfhacker
Apr 27, 2017
Author
Contributor
Absolutely! Changed and pushed.
Absolutely! Changed and pushed.
state.add instead of state.constraints.add
|
Not sure what was happening, this script is now working for me. Almost ready to merge. |
|
|
||
| # We are given in the challenge that the flag begins with CTF{ | ||
| # So we can apply constraints to ensure that is true | ||
| state.add(buffer[0] == ord('C')) |
offlinemark
May 5, 2017
Contributor
Could you please update these calls to be state.constrain (newly added API) (http://manticore.readthedocs.io/en/latest/api.html#manticore.core.state.State.constrain)
Could you please update these calls to be state.constrain (newly added API) (http://manticore.readthedocs.io/en/latest/api.html#manticore.core.state.State.constrain)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
No description provided.