N18_大学におけるパンデミックからの復興 ~DX がパンデミック後の教育機関のコア価値を強化する [Microsoft Japan Digital Days]日本マイクロソフト株式会社
?
日本マイクロソフト株式会社
パブリックセクター事業本部 文教営業統括本部 シニアスペシャリスト
中田 寿穂
新型コロナウィルスのパンデミックは、すべての産業や分野に影響を与え、教育機関も例外ではありませんでした。各学校の文化、財務状況、ビジネスモデル、学生の多様性は、パンデミックの影響や対応にも同様の多様性をもたらしました。本講演では Educauseの 2021 TOP IT Issues をもとに マイクロソフト のソリューションでどのようにその課題を解決できるか、についてお話しします。
【Microsoft Japan Digital Daysについて】
Microsoft Japan Digital Days は、お客様が競争力を高め、市場の変化に迅速に対応し、より多くのことを達成することを目的とした、日本マイクロソフトがお届けする最大級のデジタル イベントです。4 日間にわたる本イベントでは、一人一人の生産性や想像力を高め、クラウド時代の組織をデザインするモダンワークの最新事例や、変化の波をうまく乗り切り、企業の持続的な発展に必要なビジネスレジリエンス経営を支えるテクノロジの最新機能および、企業の競争優位性に欠かせないクラウド戦略のビジョンなどデジタル時代に必要な情報をお届けいたしました。(2021年10月11日~14日開催)
Running Multiple Multilingual Websites at Kyoto University on WordCamp Kansai 2015.
Concretely, the case example is at Center for Southeast Asian Studies, Kyoto University. Various countries researchers have frequently come to the Center, so a multiple multilingual system construction is very important issue!
WordPress Handson on WordCamp Kansai 2015 - Let's begin the WordPress translation!
This session is to experience the Japanese translation from English on WordPress for beginners.
The aim is to raise the translation activity for WordPress!!
IoT Devices Compliant with JC-STAR Using Linux as a Container OSTomohiro Saneyoshi
?
Security requirements for IoT devices are becoming more defined, as seen with the EU Cyber Resilience Act and Japan’s JC-STAR.
It's common for IoT devices to run Linux as their operating system. However, adopting general-purpose Linux distributions like Ubuntu or Debian, or Yocto-based Linux, presents certain difficulties. This article outlines those difficulties.
It also, it highlights the security benefits of using a Linux-based container OS and explains how to adopt it with JC-STAR, using the "Armadillo Base OS" as an example.
Feb.25.2025@JAWS-UG IoT
27. 2. ログイン制限
②IP / ホスト制限
<Files ‘wp-config.php’>
deny from all
</Files>
wp-config.phpへの制限 (.htaccess)
このファイルにはDBアクセス情報
が入っている
28. 2. ログイン制限
②IP / ホスト制限
<Files ‘wp-login.php’>
Order Deny, Allow
Deny from all
Allow from 127.0.0.0/8
Allow from uqwimax.jp
</Files>
wp-login.phpへの制限 (.htaccess)
「IPアドレスチェック」で接続端末のインターネットから見え
るグローバルIPアドレスとクライアントホスト名をチェック
プロバイダ全体
でも効果あり
29. ログイン制限による予防
②IP / ホスト制限
<Limit GET POST>
Order Deny, Allow
Deny from all
Allow from 127.0.0.0/8
Allow from uqwimax.jp
</Limit>
<Files 'admin-ajax.php'>
Order Allow,Deny
Allow from all
Satisfy any
</Files>
/wp-admin/への制限 (wp-admin/.htaccess)
テーマ/プラグインによって、制限
で動作しなくなる可能性の排除
WordPress Codex 日本語版
http://wpdocs.osdn.jp/ブルート
フォース攻撃
30. 2. ログイン制限
②IP / ホスト制限
<Files ‘xmlrpc.php’>
Order Deny, Allow
deny from all
allow from jetpack.wordpress.com
allow from 192.0.0.0/255.255.0.0
</Files>
xmlrpc.phpへの制限 (wp-admin/.htaccess)
JetPack対策
wp-config.php
add_filter('xmlrpc_enabled','__return_false'); Pinbackは防げない
SiteGuard WP Pluginや WP Total Hacksプラグイン等のプラグインに
よるピンバックブロック機能も使えるかも
44. Acunetix WP Security
- Settings-
? Hide WordPress version for all users but administrators
? Remove various meta tags generators from the blog's head tag for
non-administrators
? Try to create the index.php file in the wp-content, wp-
content/plugins, wp-content/themes and wp-content/uploads
directories to prevent directory listing
? Remove the version parameter from urls
? Empty the content of the readme.html file from the root directory