投稿時間:2022-03-11 11:17:02 RSSフィード2022-03-11 11:00 分まとめ(23件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
TECH Engadget Japanese ヘアドライヤーのAmazon売れ筋ランキング。コスパモデルから高級機まで、メーカー各社の工夫が満載! https://japanese.engadget.com/ranking-hair-dryer-015541969.html amazon 2022-03-11 01:55:41
IT @IT 全フォーラム 最新記事一覧 富士通がレッドハットとの協業で、DXコンサルティング/開発支援サービスを提供 https://atmarkit.itmedia.co.jp/ait/articles/2203/11/news085.html 開発支援 2022-03-11 10:34:00
IT ITmedia 総合記事一覧 [ITmedia ビジネスオンライン] JR東、東京駅南側に「東西自由通路」本体工事に着手 29年の使用開始を見込む https://www.itmedia.co.jp/business/articles/2203/11/news047.html itmedia 2022-03-11 10:30:00
IT ITmedia 総合記事一覧 [ITmedia エンタープライズ] OKIとNTT Com、サプライチェーンのリスクマネジメントソリューションを共同提供 https://www.itmedia.co.jp/enterprise/articles/2203/11/news060.html itmedia 2022-03-11 10:27:00
IT ITmedia 総合記事一覧 [ITmedia ビジネスオンライン] 普段よく利用する冷凍食品 2位「チャーハン・ピラフ」、1位は? https://www.itmedia.co.jp/business/articles/2203/11/news081.html itmedia 2022-03-11 10:16:00
js JavaScriptタグが付けられた新着投稿 - Qiita Gatsbyで作るサイトに、use-shopping-cartを使ってStripe Checkoutを利用したECカート機能を実装する https://qiita.com/hideokamoto/items/4ffee50ed02a96c8e80c あとは、useShoppingCartフックを利用して、カート操作や注文のボタンを実装しましょう。 2022-03-11 10:56:17
技術ブログ Developers.IO [AWS CDK] AWS Secrets ManagerでAmazon Auroraのパスワードをローテーションしてみた https://dev.classmethod.jp/articles/aws-cdk-password-rotation-of-amazon-aurora-with-aws-secrets-manager/ amazon 2022-03-11 01:01:35
海外TECH DEV Community The Ultimate Guide to Hugo Sections https://dev.to/cloudcannon/the-ultimate-guide-to-hugo-sections-22ng The Ultimate Guide to Hugo SectionsBy Bryce WrayBecause URLs ideally should never change one of the critical steps in your early planning for a website project must be to decide on the site s structure Additionally if you re converting an existing website to a different platform you must make such decisions while also respecting the site s current URLs Sure redirects are possible if needed but their use should be a last resort The good news is that if you use the Hugo static site generator SSG you re the boss with a capital B when it comes to how you arrange a website A possibly challenging aspect to such power is that first you need to wrap your brain around Hugo s concept of sections Helping you do that is the purpose of this article Walk before we runFirst let s cover some basics about how content management works in Hugo One of the numerous pillars of Hugo is how completely it takes its orders from you concerning how to structure a site s content As the Hugo “Content Organization documentation says Hugo assumes that the same structure that works to organize your source content is used to organize the rendered site While this Hugo advantage is great enough if you re just starting with a new site it is utterly invaluable when you have to recreate an existing site ーparticularly one with “turtles all the way down levels of URLs When you look through the code of many existing websites even those built with SSGs you often may have some difficulty in determining the locations of those sites content That s not a problem with a Hugo site The default arrangement is beautifully logical content goes in a Hugo project s top level content folder and Hugo bases the overall site structure on what you put and where in that folder ーwhich we ll explain further as we move on to understanding Hugo sections Be advised that we depict content files as  md files in this article only because Markdown tends to be the most common content format in a typical Hugo project although Hugo supports several other formats The ABCs or XYZs of sectionsLet s say you re working on a website for XYZ Company with the main URL of xyzcompany com It needs the following top level URLs xyzcompany com about us xyzcompany com blog xyzcompany com contact xyzcompany com product xyzcompany com product xyzcompany com support Within most of those top levels will be separate lower level URLs with their own content and further on down as appropriate That s a pretty common setup right So in Hugo you could start by arranging content like so └ーcontent └ーabout us └ーblog └ーcontact └ーproduct └ーproduct └ーsupportA content folder is automatically a section if the folder has an index file called  index md Note the underscore in that name we ll say more about it later on This causes Hugo to create a navigable URL for the section For example if content about us index md exists Hugo would create xyzcompany com about us Want to create a subsection which Hugo documentation calls a nested section That s simple just add a subfolder with its own index md file You can do so for as many levels down as you want You could further enhance the structure of content blog  as follows └ーcontent └ーblog └ー index md └ー └ーfy results md └ーwelcome to our new blog md └ーxyz company and the pandemic md └ー └ー roadmap md └ーawards announcement md └ーfy results md └ーnew markets for xyz company md └ーproduct reaches eol md └ーproduct market share md └ーreleasing product md └ー └ー roadmap md └ーnew support policies mdSee those md files under content blog content blog and content blog Hugo automatically creates navigable pages from any content files within a section regardless of how many levels they may be below the section s top level in this case content blog Thus the XYZ Company s blog will include web pages at xyzcompany com blog fy results xyzcompany com blog awards announcement and so on This all happens because of the presence of that content blog index md file as we ll soon explain By default Hugo considers a section s top level web page to be a list of the web pages within the section Using the most recent example above this means xyzcompany com blog  would be a list of all the site s blog posts within content blog if you added a loop to display them that is Later we ll talk about how to exercise more control over what one would find at that URL Now look at this further breakdown of the overall example └ーcontent └ーabout us └ーleadershipIf the XYZ Company site is to have only one page for the “leadership content content about us leadership  needn t be a nested section So ーbecause content about us  is a section ーeither of the following will result in a regular single page at xyzcompany com about us leadership content about us leadership index md content about us leadership mdYou can see that in this case the index file is called index md rather than index md But why Read on Bundles ーand that pesky underscore We re now delving into a potentially puzzling aspect of Hugo site structure namely the ever popular “ index md vs  index md question which one do you use and why That brings us to Hugo s page bundles They re mainly a way to group content with any related resources such as images and PDFs Hugo uses a tree metaphor to define the two most commonly encountered bundle types Branch bundle ーIts index file is called index md It can have “children such as nested folders If there are additional md files within each will get its own navigable URL As we hinted earlier only a folder that s a branch bundle can be a section By default Hugo treats its index file as a list of the section s contents but as we ll see you can exercise more control over this Leaf bundle ーIts index file is called index md and at build time becomes a regular web page not a list It can t be a section and therefore can have no “children Any additional md file in a leaf bundle won t get its own navigable URL Other items within a leaf bundle are page resources for the index md file more on that in the following example Perhaps the XYZ Company website has this for product └ーcontent └ーproduct └ーindex md └ーprod brochure large pdf └ーprod brochure small pdf └ーprod hero img jpg └ーprod users img jpg └ーprod users img jpg └ーprod users img jpgBecause its index file is index md content product  is a leaf bundle If we add another md file to this folder it will not have its own navigable URL The other contents are available as “local page resources e g content product index md can link to the brochures PDFs as follows without having to give the entire path in each case Available brochures large prod brochure large pdf small prod brochure small pdf On the other hand suppose this is the product section └ーcontent └ーproduct └ー index md └ーawards └ー md └ー md └ー md └ーbrochures └ーindex md └ーprod brochure large pdf └ーprod brochure small pdf └ーextended warranty md └ーimages └ーprod awards img jpg └ーprod ext warr img jpg └ーprod hero img jpg └ーprod users img jpg └ーprod users img jpg └ーprod users img jpgThis is a branch bundle because it has index md in its top level so content product extended warranty md will become xyzcompany com product extended warranty And also because content product  is a branch bundle Hugo will convert any of its subfolders md files to navigable URLs e g content product awards md will become xyzcompany com product awards Is it best for xyzcompany com product  to be merely a list of its section s content Probably not So let s cover how you can make sure it s simply a regular web page with the content and appearance you want Taking the templating reinsA typical Hugo site has at the very least the following layout templates └ーlayouts └ー default └ーbaseof html └ーlist html └ーsingle html └ーindex html If you were using a theme called my theme all of the above would go under themes my theme but we ll stick with this more minimal example since it s easier to understand at a glance By default Hugo will assign layouts default single html as the template for a folder s index md while it makes layouts default list html the template for a section s index md layouts index html is for the site s home page if this layout isn t present the home page falls back to layouts default single html This standard behavior is unlikely to be suitable in all cases especially as a site s structure becomes more complex so this is where additional considerations come into the picture Once more we ll borrow from our earlier example └ーcontent └ーabout us └ー index md └ーcompany history md └ーoffice locations md └ーsupport └ーindex mdIf left as is this would mean xyzcompany com about us  would have the look and feel of the layouts default list html template xyzcompany com about us company history xyzcompany com about us office locations and xyzcompany com support each would use the look and feel of the layouts default single html template Moreover each of these md files resulting web pages would have only whatever content if any the applicable template allows That s probably not what you want Instead you can add new templates to get around Hugo s default behavior This is possible partly because Hugo assigns a content type to each content file and the type determines the layout it will take The type for a top level section s index md file is automatically the section s folder name For example the type for content about us index md is about us This is sufficient at the top level we ll discuss types and subsections in a bit You can manually assign the type for a content file whose immediate folder is not a section as would be the case for content about us offices index md How can we make a section s content files look different from the site s default templates The answer is we can create templates with the same nesting in layouts as the content files have in content When you do this it will make the content files use these templates instead of the site s defaults └ーcontent └ーabout us └ー index md └ーcompany history md └ーoffice locations md └ーlayouts └ーabout us └ーsection html └ーsingle htmlNote the presence of that about us section html file The about us index file will use it by default so you can make this section look and work in whatever manner works best for your site For safety s sake you may wish to refer to Hugo s lookup order documentation For the other md pages at the level of content about us ーcontent about us company history md and content about us office locations md ーthe layouts about us single html template comes into play ensuring that those pages won t rely on the site wide default single html template And what about a content file whose immediate folder is not a section like content support index md In that case create layouts support single html └ーcontent └ーsupport └ーindex md └ーlayouts └ーsupport └ーsingle htmlThen in the front matter for content support index md add a key of type and a value of support type support title XYZ Company Customer Support date T lastmod T As you go further down the levels just apply the appropriate procedure based on whether a folder is a section and where the desired template is located Let s say content about us has a subsection about how XYZ Company contributes to various charities └ーcontent └ーabout us └ー index md └ーcompany history md └ーoffice locations md └ーphilanthropy └ー index md └ー charity drive md └ーprevious years mdTo give xyzcompany com about us philanthropy  its own separate layout you d create layouts about us philanthropy section html because it s a section ーand specify type about us philanthropy  in the front matter of its index file If you neglect that last part its formatting will “cascade down from the layouts about us  level And what of the other two md files therein If it s acceptable for them to share one layout creating layouts about us philanthropy single html would be sufficient If you prefer they not look so similar you can create a leaf bundle subfolder for each underneath content about us philanthropy  and then make layouts at corresponding levels for each within layouts as explained earlier In either case you ll need to make the fitting type declaration in each md file s front matter so as to avoid the aforementioned “cascading effect from above Finally what about the templates themselves How do you give each page more complex content than what you could derive from a simple index md or index md file And what about those items which probably should be the same site wide like headers and footers Answering those questions would take us deeper into the general subject of Hugo template files than this article has the space or scope to cover Nonetheless we can make at least these two points The content for a one off page like our xyzcompany com support  example probably should exist largely in that page s template rather than only the page s index file While this approach does require much more use of HTML and CSS it also provides maximum control over where and how the content appears on the page Universal site wide content such as navigation elements and footers should reside in partial templates “partials ーwhich in our previous example would exist in layouts partials  and be called from there with the partial command e g partial footer html  if the partial template is layouts partials footer html And yes in case you re wondering considerations like these definitely could pose problems for your non technical clients at XYZ Company after you ve finished developing their site Fortunately one of the many advantages of choosing CloudCannon as the CMS for your Hugo project is that with CloudCannon your clients can build and edit pages visually without having to see much less write or edit a single line of code All together nowThis discussion of the nearly total control that Hugo gives you over a website s structure may have you remembering a famous line from the late Stan Lee “With great power comes great responsibility As you learn what we ve explained within you re already assuming that responsibility Good going But if you re also ruefully recalling the old saw “It s lonely at the top fear not when you make CloudCannon part of the project you re not alone at all In fact you have the leading SSG savvy CMS and its team at your side You can build that site with all the power Hugo gives you confident that CloudCannon will make it simple for your clients to use and maintain By the way it s also wise to learn from CloudCannon s excellent Hugo tutorial by Farrel Burns Regarding the subjects we covered in this article you ll particularly want to read the parts about content and page bundles 2022-03-11 01:14:07
海外TECH DEV Community What is cross-site scripting (XSS) and how does it work? https://dev.to/nevulo/what-is-cross-site-scripting-xss-and-how-does-it-work-369 What is cross site scripting XSS and how does it work ️This post is purely for explanatory purposesーyou should not attempt to perform any type of security attack on a website unless you have approval What is cross site scripting Cross site scripting is an attack performed on websites where an attacker can inject some malicious code or scripts that get executed to modify the behaviour of that website This is ultimately a security vulnerability and can be very dangerous if your website accepts and shows user input but isn t properly protected Cross site scripting is an old attack dating back to the s so the name is a bit outdated The scope of code injection has increased since then and so “cross site isn t as relevant these days you can often perform most XSS attacks directly within the website But it doesn t make it any less important today The Open Web Application Security Project OWASP have curated a list of the top ten web application security risks in and “injection which includes cross site scripting had thousand occurrences Types of XSSThere are two main types of cross site scripting Reflected non persistent XSS is where the malicious input comes from the current HTTP request in the form of query parameters or headers for example The malicious request reflects off the web server where the response reflects the attack back to the user s browser Only works for that request or anyone else who makes the same request Stored persistent XSS is where the malicious input gets stored in a permanent place like a database Each time the page gets requested the malicious input gets requested from the database and included in the response causing it to be rendered as raw HTML How is cross site scripting achieved Ultimately there s no single way to perform an XSS attack as there are many vectors to attack and considerations per website that can change what code will be required A common example includes something like this let s say there s a website with a search box that displays my search input back to me I search for “nevulo sending a request to the server with my query usually through query parameters but somewhere in the request I go to a new webpage containing my search results including the search term I usedThe important thing to understand is that the DOM contains your user input The problem starts to creep in when you consider that users can enter HTML code in the input and if the content returned is not sanitised properly meaning any user input gets stripped of HTML it won t just show the HTML code it will render it literally The browser doesn t know any different it will just execute whatever HTML it sees as long as it s valid If I type in lt div style background blue width px height px gt lt div gt It ends up showing we searched for a blue square This is an example of reflected XSS If the website takes the input from those request parameters and returns a new page containing your input as is the renderer doesn t know the difference between the real website code and the injected code So whatever code you write in the input box in this vulnerable website it will render the output as if the page as it would with your extra code But this is dangerous ️ Why is cross site scripting so dangerous Let s say you ve just built a new social media platform and your platform gives users the ability to post little pieces of content on their personal public wall I ll explain how you introduce this vulnerability in a site but for now just know your site is vulnerable to XSS I ll sign up for your social platform because it s wonderful Now that I ve got my account I want to post my first piece of content to my wall But I ve got a sneaky trick up my sleeve When I go to the input box to post on my wall I m going to type this in lt script gt alert JavaScript lt script gt And post Anyone who visits my profile won t see any content on my wall they ll just see an alert box in their browser that says “JavaScript This is an example of stored XSS XSS is a dangerous vulnerability because if you can inject any valid HTML into a website you can inject malicious elements like script which allows you to execute JavaScript in the context of the window and that s a lot of power Some examples of malicious things you can do with access to JavaScript include Stealing cookies which may contain session data or other sensitive information Changing how the page looks by modifying the DOM Document Object Model Redirecting users to another pageAll of these examples and more pose a serious threat to users of your website if vulnerable How does cross site scripting become a vulnerability on a website There are different types of XSS which can be used to attack websites so there s no one single way to introduce the vulnerability Reflected XSS is one of the most common types of attacks and it typically becomes a vulnerability on most websites when the website accepts user input typically query parameters which is not sanitised properly Then that user input gets rendered in the response Imagine if a site had search functionality it might look something like this A user visits a maliciously crafted URL containing HTML code to execute JavaScript in the query parameters script gt alert JavaScript lt script gt A request gets sent to the server which adds the search query parameter to the final HTML to be sent back to the user without any sanitisation lt html gt lt body gt lt p gt lt php echo You searched for GET search gt lt p gt lt body gt lt html gt The final HTML gets rendered in the browser and the script tag gets executed causing an alert to appear for the user Stored XSS on the other hand happens when some user input say for a comment on a blog is stored in a permanent location like a database and then that user content gets rendered back on the page If the input does not get sanitised properly and it contains HTML code it will load the user generated content and render the content as HTML Stored XSS might look something like this in action A user sends a request to a server to update create data that will be rendered on some page This contains malicious HTML input At some point a user makes a request and the server responds with the relevant data that the user tainted with raw HTML and that data gets used directly within the HTML response and sent back to the user The final page containing the injected HTML code renders in the user s browser and the JavaScript code executes How do you protect against XSS On most sites you don t want users to enter raw HTML code and return the user s input as code to be executed on your page Below is a non exhaustive list of options for preventing XSS attacks on your website if your website accepts user input and displays it back to them in any way through an input box query parameters etc Validating user inputThe first line of defence that can give some assurance that users won t be able to enter certain characters you don t want like lt gt angled brackets that are used in HTML This is obviously not fool proof there are many workarounds for entering HTML without strictly using angled brackets But if you re just setting out to store somebody s age and then display it back to them on their profile it s best to stop any malicious input at the start if you know the stored input will never need to use HTML characters Validation must be present on the backend and not just the frontend It s easy for users to bypass the frontend validation and send bogus malicious data to your backend Your backend acts as a source of truth since users cannot manipulate your backend logic Escaping your output where you use user inputIf you re returning a HTML document to users where the final result can be modified based on input parameters before you return the document you should escape any user input used within the document lt html gt lt body gt lt h gt Your name is lt php new htmlspecialchars userInput ENT QUOTES echo new gt lt h gt lt body gt lt html gt If the input is lt script gt alert lt script gt The final output will look something like this Your name is amp lt script amp gt alert amp lt script amp gt This is a lot better rather than running the malicious code in the users browser Generally when escaping content you ll be passing the user input you want to show on the page through a function that will return the same input just without any special characters used in HTML This will be different depending on which templating system you re using some do this by default automatically Make sure to look up a recent tutorial for escaping user input with whatever templating system you re using Implementing a Content Security policyA content security policy allows you to dictate where JavaScript and other resources can be loaded or executed from Since XSS attacks rely on the attacker being able to run scripts on a vulnerable website either by injecting scripts directly within the webpage or getting the browser to download scripts from an untrusted third party The content security policy works through “directives that allow you to create an allowlist of sources of trusted content and instructs the browser to only execute or render resources from those sources Adding a Content Security Policy to your website through the HTTP response headers looks like this Content Security Policy script src self You can also specify the Content Security Policy through the meta tag in your HTML document lt meta http equiv Content Security Policy content script src self gt In the policy above there is one directive script src which controls a set of script related privileges and self the current page is the only valid source By default it will also disable the ability to use inline scripts which is one of the biggest security implications of using the policy This effectively means that any attacker attempting to inject code in your site will be unsuccessful and see an error 2022-03-11 01:10:36
海外TECH Engadget DuckDuckGo reverses course, will demote Russian propaganda in search results https://www.engadget.com/duck-duck-go-reverses-course-will-demote-russian-propaganda-in-search-results-014336389.html?src=rss DuckDuckGo reverses course will demote Russian propaganda in search resultsThe search engine DuckDuckGo will be down ranking sites that spread Russian propaganda and disinformation In a tweet founder and CEO Gabriel Weinberg wrote that the privacy focused search engine would be releasing updates that would ensure Russian disinformation sites rank further down in search results Earlier this month DuckDuckGo announced it would pause its relationship with Russian state owned search engine Yandex Even if it s for the right reasons putting a thumb on the scales of search results is an uncharacteristic move for the Pennsylvania based search company Unlike Google and major social media platforms DuckDuckGo has neglected to filter out misleading content on vaccines or elections A number of platforms including the Meta owned Facebook and Instagram have started to demote posts from Russian state media Google has been down ranking search results from Russian state news agencies since Known for being a “privacy minded search engine DuckDuckGo does not track its users or sell data to third parties The company primarily makes money from affiliate links and non targeted ads DuckDuckGo which regularly donates to digital rights groups like the Electronic Frontier Foundation and non profit newsroom The Markup has also been embraced by conspiracy theorists and far right groups in recent years A number of studies highlighted in the New York Times found that Bing s search algorithm which powers DuckDuckGo surfaces more sites that promote conspiracy theories than Google Many fans of DuckDuckGo criticized the search engine for its decision on Russia likening it to “censorship It s unclear whether DuckDuckGo will make a wider effort to down rank disinformation nbsp Weinberg did not detail in his tweet which Russian propaganda sites DuckDuckGo would target or whether the search engine will target other types of disinformation such as on climate change or Covid Engadget has reached out to DuckDuckGo with these questions and will update when we hear back 2022-03-11 01:43:36
海外科学 NYT > Science Flu Vaccine Was Not Very Effective This Season, the C.D.C. Says https://www.nytimes.com/2022/03/10/health/flu-vaccine-effectiveness.html Flu Vaccine Was Not Very Effective This Season the C D C SaysThe vaccine was only about percent effective at reducing a person s chance of getting a mild or moderate infection the agency said Experts said a good rate would be at least percent 2022-03-11 01:47:11
金融 生命保険協会 「愛の献血活動協力月間」を展開しました(京都府協会) https://www.seiho.or.jp/info/social/2022/cr_20220311_4.html 献血 2022-03-11 12:00:00
海外ニュース Japan Times latest articles Ukraine crisis highlights Europe’s history of treating some refugees differently https://www.japantimes.co.jp/news/2022/03/11/world/europe-refugees-treated-differently/ Ukraine crisis highlights Europe s history of treating some refugees differentlyIn the frantic exodus to flee a war that s become increasingly brutal people of all ethnicities have been facing challenges 2022-03-11 10:41:34
ニュース BBC News - Home Jussie Smollett sentenced to 150 days in jail in attack hoax case https://www.bbc.co.uk/news/world-us-canada-60695975?at_medium=RSS&at_campaign=KARANGA upside 2022-03-11 01:28:30
ニュース BBC News - Home North Korea recently tested intercontinental missile system: US https://www.bbc.co.uk/news/world-asia-60702463?at_medium=RSS&at_campaign=KARANGA korea 2022-03-11 01:54:59
GCP Google Cloud Platform Japan 公式ブログ Google、Mandiant 買収の意向を発表 https://cloud.google.com/blog/ja/products/gcp/google-announces-intent-to-acquire-mandiant/ Mandiantが加わることにより、GoogleCloudはこれらのサービスを強化し、クラウドとオンプレミス全体でお客様を支援する、より優れた機能を備えたエンドツーエンドのセキュリティオペレーションスイートを提供します。 2022-03-11 02:00:00
北海道 北海道新聞 インド、北西部でミサイル実験か パキスタンに飛翔体落下 https://www.hokkaido-np.co.jp/article/655641/ 飛翔体 2022-03-11 10:22:00
北海道 北海道新聞 【道スポ】日本ハム・新庄監督、球宴に夢プラン 「監督もファン投票を」 https://www.hokkaido-np.co.jp/article/655640/ 新庄剛志 2022-03-11 10:18:00
北海道 北海道新聞 ロシア軍、核研究施設に再び攻撃 攻勢強める東部ハリコフ https://www.hokkaido-np.co.jp/article/655639/ 研究施設 2022-03-11 10:18:00
北海道 北海道新聞 東京の城南信金で震災写真展 復興願い、ロビーに17点 https://www.hokkaido-np.co.jp/article/655623/ 城南信用金庫 2022-03-11 10:10:00
北海道 北海道新聞 景況感、3期ぶりマイナス 1~3月、原材料費が上昇 https://www.hokkaido-np.co.jp/article/655622/ 原材料費 2022-03-11 10:09:00
マーケティング AdverTimes 大阪ガス、DX企画部長に吉村氏(22年4月1日付) https://www.advertimes.com/20220311/article379007/ 大阪ガス 2022-03-11 01:57:25
GCP Cloud Blog JA Google、Mandiant 買収の意向を発表 https://cloud.google.com/blog/ja/products/gcp/google-announces-intent-to-acquire-mandiant/ Mandiantが加わることにより、GoogleCloudはこれらのサービスを強化し、クラウドとオンプレミス全体でお客様を支援する、より優れた機能を備えたエンドツーエンドのセキュリティオペレーションスイートを提供します。 2022-03-11 02:00:00

コメント

このブログの人気の投稿

投稿時間:2021-06-17 05:05:34 RSSフィード2021-06-17 05:00 分まとめ(1274件)

投稿時間:2021-06-20 02:06:12 RSSフィード2021-06-20 02:00 分まとめ(3871件)

投稿時間:2020-12-01 09:41:49 RSSフィード2020-12-01 09:00 分まとめ(69件)