Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How does Facebook put this formatted text in JavaScript console?

enter image description here

By opening JavaScript console on Facebook it warns you not to put anything there, to be safe from scam. This seems a very good counter measure against "make your victim do the work for you" attacks. How do they do this?

like image 784
Ákos Nikházy Avatar asked Nov 17 '14 11:11

Ákos Nikházy


1 Answers

console.log() can be formatted with inline CSS

This:

console.log("%cThis will be formatted with large, blue text", "color: blue; font-size: x-large");

Will look like this: enter image description here

Source

like image 92
Ákos Nikházy Avatar answered Oct 31 '22 21:10

Ákos Nikházy