Open AnomalRoil opened 6 years ago
Here is an example of how to query the string we have to forge a signature for in the first challenge using curl
:
curl -s https://cryptochall.ks.kgc.io/chall1/flag
Note the https
, insecure connections are refused.
The same is possible using an API endpoint requiring POST data such as the sign
one:
curl -s https://cryptochall.ks.kgc.io/chall1/sign -d '{"data":"some message"}'
While the two first challenges are probably doable using only curl
, notice that using Python or any other scripting/programming language can greatly help you make your life easier.
I still haven't understood how to access the API, help me please!