In Wildcard mode, * means any. *testufo.com would block everything that ends with testufo.com, but not testufo.com itself because * implies there is something before that. It would block abc.testufo.com and also things like abc.123testufo.com and 456testufo.com, but again, not testufo.com itself with nothing before it.
In order of suitability:
Ends with mode, .info.
Wildcard mode, *.info.
Contain mode, .info.
The other modes don't suit your use case; they work quicker but require an actual domain name. Though, maybe Domain mode, .info could work as well, unsure.