ASIS-2019-Unicorn-shop
[ASIS 2019]Unicorn shop
1.题目:
2.过程:
题目要我们购买独角兽,实际上只有第四种可以购买……
只可以输入一个字符,如果不填入内容提交,网页会发生报错:
numeric:
语法:unicodedata.numeric(chr[, default])
描述:将Unicode字符(chr)转换为等效的数值。以浮点形式返回【与chr相对应的数值】。若未定义这样的值,则返回默认值default;若未指定默认值,则抛出ValueError异常。(把一个表示数字的字符转换为浮点数。比如,可将’5’、’五’转换数值输出。与digit()不同是numeric()可以转换任意表示数值的字符,不仅仅限于0到9的字符)
不同的Unicode字符可以对应不同的数值,可以在https://www.compart.com/en/unicode查询:
官方wp:https://github.com/hyperreality/ctf-writeups/tree/master/2019-asis
dalao:https://gality.cn/?p=123#%E7%AD%89%E4%BB%B7%E5%BD%A2%E5%BC%8F
……
ASIS-2019-Unicorn-shop