mayukojpn / force-update-translations

Download WordPress theme/plugin translations and apply them to your site manually even their language pack haven't been released or reviewed on translate.wordpress.org
https://wordpress.org/plugins/force-update-translations/
12 stars 6 forks source link

エスケープ漏れその他 #3

Closed miya0001 closed 4 years ago

miya0001 commented 6 years ago

たまたま目についたのでつっこみを。笑

https://github.com/mayukojpn/force-update-translations/blob/master/force-update-translations.php#L34

https://github.com/mayukojpn/force-update-translations/blob/master/force-update-translations.php#L52

https://github.com/mayukojpn/force-update-translations/blob/master/force-update-translations.php#L138-L139

https://github.com/mayukojpn/force-update-translations/blob/master/force-update-translations.php#L71-L72

https://github.com/mayukojpn/force-update-translations/blob/master/force-update-translations.php#L89

https://github.com/mayukojpn/force-update-translations/blob/master/force-update-translations.php#L105

https://github.com/mayukojpn/force-update-translations/blob/master/force-update-translations.php#L125

エスケープは実際にそれが必要かどうかに関係なく使うシチュエーションにあわせてとりあえずやると決めるのが良いです。たとえばHTMLの属性に使うなら esc_attr() 、リンクに使用する URL なら esc_url() などのように利用目的に応じて問答無用でエスケープするのがよいです。

あとファイルに書き込むとかファイルを読み込むとかする場合は、特に慎重にやったほうがいいです。 https://ja.wikipedia.org/wiki/%E3%83%87%E3%82%A3%E3%83%AC%E3%82%AF%E3%83%88%E3%83%AA%E3%83%88%E3%83%A9%E3%83%90%E3%83%BC%E3%82%B5%E3%83%AB

mayukojpn commented 6 years ago

@miya0001 わかりやすくありがとうございます!直してみます!

mayukojpn commented 4 years ago

Escaping is my pain point that I haven't studied enough. 😭 Thanks for helping!