Jump to content
  • 0

Представление javascript-кода как текста


huntex
 Share

Question

Приветствую.

Разрабатываю игровую статистику, которая отображает ники онлайн-участников серверa

Столкнулся со следующей проблемой:

Решил проверить догадку, поставив в игре никнейм

<script>alert('xss')</script>

Что не заставило себя долго ждать выполнив яваскрипт и отобразив сообщение.

<table width=250>
<tr>
<th>Никнейм</th>
<th>Сервер</th>
</tr>
<tr>
<td><script>alert('xss')</script></td> <————— вот тут и получаем "сюрприз"
<td>TeamSpeak</td>
</tr>
<tr>
<td>HunteX</td>
<td>CS:GO</td>
</tr>
</table>

Помогите решить проблему, так как не знаю коим образом сформулировать вопрос и отдать на съедение гуглу :)

Edited by huntex
Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

нашёл в гугле


function htmlspecialchars(text)
{
var chars = Array("<", ">", "&");
var replacements = Array("<", ">", "&");
for(var i=0; i<chars.length; i++)
{
var re = new RegExp(chars[i], "gi");
if(re.test(text))
{
text = text.replace(re, replacements[i]);
}
}
return text;
}

суть в том что кажый опасный символ коих тут три: <, >, & заменяется на спецсимвол html

в php для таких целей есть стандартная функция htmlspecialchars

Edited by CalvinKlein
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy