投稿時間:2023-03-21 03:24:44 RSSフィード2023-03-21 03:00 分まとめ(36件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
AWS AWS Partner Network (APN) Blog Enhancing OpenText Axcelerate eDiscovery with Translation Capabilities on AWS https://aws.amazon.com/blogs/apn/enhancing-opentext-axcelerate-ediscovery-with-translation-capabilities-on-aws/ Enhancing OpenText Axcelerate eDiscovery with Translation Capabilities on AWSIntegrated eDiscovery software enables collection processing analysis classification review and production of electronically stored information in a single solution Learn how OpenText a global information management leader helps organizations manage and gain value from their business content OpenText Axcelerate enables customers to prioritize the most relevant documents for review reduce datasets and achieve higher efficiency and accuracy 2023-03-20 17:03:43
AWS AWS Security Blog How to use Amazon Macie to reduce the cost of discovering sensitive data https://aws.amazon.com/blogs/security/how-to-use-amazon-macie-to-reduce-the-cost-of-discovering-sensitive-data/ How to use Amazon Macie to reduce the cost of discovering sensitive dataAmazon Macie is a fully managed data security service that uses machine learning and pattern matching to discover and help protect your sensitive data such as personally identifiable information PII payment card data and Amazon Web Services AWS credentials Analyzing large volumes of data for the presence of sensitive information can be expensive due to … 2023-03-20 17:30:10
AWS AWS Security Blog How to use Amazon Macie to reduce the cost of discovering sensitive data https://aws.amazon.com/blogs/security/how-to-use-amazon-macie-to-reduce-the-cost-of-discovering-sensitive-data/ How to use Amazon Macie to reduce the cost of discovering sensitive dataAmazon Macie is a fully managed data security service that uses machine learning and pattern matching to discover and help protect your sensitive data such as personally identifiable information PII payment card data and Amazon Web Services AWS credentials Analyzing large volumes of data for the presence of sensitive information can be expensive due to … 2023-03-20 17:30:10
Git Gitタグが付けられた新着投稿 - Qiita Gitクライアント Fork 購入記 https://qiita.com/nokiyo8774/items/65590259ac033a9518f0 購入 2023-03-21 02:39:49
Git Gitタグが付けられた新着投稿 - Qiita テスト仕様書をGitで管理する https://qiita.com/KenjiOtsuka/items/6862fa9c26b053abfc4b excel 2023-03-21 02:38:38
技術ブログ Developers.IO AWSマネジメントコンソールのfaviconが新しい各サービスのアイコンになってた件 https://dev.classmethod.jp/articles/aws-favicon-update/ favicon 2023-03-20 17:20:40
技術ブログ Developers.IO [ChatGPT × Amazon Connect] ホームページに埋め込めるチャットボットシステムを構築してみた https://dev.classmethod.jp/articles/chatgpt-connect-chatbot/ amazon 2023-03-20 17:04:45
海外TECH MakeUseOf How to Configure the DNS Client Service in Windows 11 https://www.makeuseof.com/configure-dns-client-service-windows-11/ windows 2023-03-20 17:15:17
海外TECH DEV Community Guide: Installing New Relic Agent on Nginx https://dev.to/alexanderisora/guide-installing-new-relic-agent-on-nginx-44m2 Guide Installing New Relic Agent on NginxI was so excited when setting up New Relic The tool seemed so fresh and slick Everything was going smoothly until I started to setup nginx agent The process has been finished but there was an error ⊘NGINX Open Source Integration unsupported Installation incomplete Follow the instructions at the URL below to complete the installation process This happened on every machine Re installing did no help The docs they offered were too messy and also did not help I started to search their forum It turns out to be a popular problem The only solution they offered is to contact support But I need to pay before getting access to support Such a shame So I spend a few hours with ChatGPT and a barrel of coffee and figured it out Here is a step by step guide on how to install a New Relic agent on your nginx The guide Proceed with the agent install process as they say in the docs Use the generated cURL link or sudo apt install nri nginx Throw in those to create a config file cd etc newrelic infra integrations dsudo cp nginx config yml sample nginx config ymlsudo cp etc newrelic infra logging d nginx log yml example etc newrelic infra logging d nginx log yml Check if your nginx has the required monitoring module called http stub status module nginx V gt amp grep o with http stub status moduleIf your nginx does not have it get it Mine had Change the status URL cd etc newrelic infra integrations dsudo nano nginx config ymlSet STATUS URL to something like this STATUS URL where my domain com is a domain from your nginx config Restart it sudo systemctl restart newrelic infra Add the status page and the IP of your server cd etc nginx sites enabled amp amp nano defaultserver other stuff server name my domain com com location status stub status on access log off allow set your server IP here other stuff Reload nginx sudo service nginx reloadGo to New Relic and have fun 2023-03-20 17:53:06
海外TECH DEV Community chicago https://dev.to/ulisse/chicago-1hai chicago Challenge descriptionKeygenme sort ofAuthor akhbaar The keygenAs usual we start by trying to run the executable chicagobut unfortunately we get Bad lenght Opening the file with ghidra we see that the file is a rust compiled executable with A TON of functions I suppose from the rust standard library After some time we find the main with an interesting portion of code if local a lt FUN Bad length So the length of the input must be at least Also after some analysis and variable renaming we find thatactual num input i x x is the ascii code for So every character of the input must be a digit if i amp amp amp actual num actual num L lt uint input i actual num uint byte char actual num amp xff char actual num amp xff So if the index of the character is odd we multiply it by Also if the original number is greater than we replace it with x x where x is the original number Then at least that s what I thought it gets compared to the first character of the input and if it s equal we get the flag The real keygenAfter spending much more time than I should have and after writing a python script to bruteforce the flag I was so surprised when the first number it tried checked all the conditions As you could have guessed the first and most obvious string that my script tried was and it worked To get the flag I then just had to run the program with chicago 2023-03-20 17:42:43
海外TECH DEV Community padlock https://dev.to/ulisse/padlock-2egi padlock Challenge descriptionMindblown by ioccc How can someone write programs like this Anyway try open this padlock Author bronson First analysisThe source code is a C program that prints itself It s a quine a program that prints its own source code If we compile the program and run it we are welcomed by azsh segmentation fault quineMaybe it needs some arguments Let s try with quine X I won t repeat the program source code here but keep in mind that when I put it means that the source code of the program is repeated Let s try with a bigger number like quine XXXX So the program does print a variable number of Xs somewhat depending on the argument Let s try with quine abcd XXXX The output is the same so the number of Xs depends only on the length of the argument With the help of a little python we can find that sometimes instead of an X the program prints an O For example with quine b OThe first idea was to bruteforce the flag but as the number of Xs and Os could be gt it could take a long time So I decided to try to find a pattern in the output Finding the patternI wrote a python script that prints the output of the program for strings of N chars made of the same char for every char quine aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa XXXXXXXXXXXXXXXXXXOXXXXXXXXXXX quine bbbbbbbbbbbbbbbbbbbbbbbbbbbbbb OXXXXXXXXXXXXXXXXXXOXXXXXXXXXX The pattern starts to emerge We get an O when the char is the same as the flag char on that position We get an X when the char is different from the flag char on that position Finding the flagNow that we know the pattern we can find the flag We just need to bruteforce every letter and keep the one in the positions where we get an O import subprocessimport stringCHAR N flag CHAR Nfor ch in string printable proc subprocess Popen quine ch CHAR N stdin subprocess PIPE stdout subprocess PIPE stdout stderr proc communicate line stdout decode split n print line for i x in enumerate line if x O flag i chflag join flag print flag and we get the flag bctf qun s ll abut rptn nD mnpuln OwO OuO UwU 2023-03-20 17:11:38
Apple AppleInsider - Frontpage News Amazon drops new deals: AirTags, Apple Watch, iPads, Macs up to 31% off https://appleinsider.com/articles/23/03/20/amazon-drops-new-deals-airtags-apple-watch-ipads-macs-up-to-31-off?utm_medium=rss Amazon drops new deals AirTags Apple Watch iPads Macs up to offShoppers looking for a new iPad have plenty of deals to choose from at Amazon including an iPad Pencil bundle that s currently off retail price and includes an Apple Pencil iPads MacBooks and more on sale this week through Amazon Other great deals include the latest inch MacBook Pro with M Pro chip sitting at the lowest price we ve seen in the last month Pick one up for off retail at Amazon or off at Adorama You can also help yourself to a discount on an M MacBook Air Read more 2023-03-20 17:50:07
Apple AppleInsider - Frontpage News Apple increased grip on premium smartphone market in 2022 https://appleinsider.com/articles/23/03/20/apple-increased-grip-on-premium-smartphone-market-in-2022?utm_medium=rss Apple increased grip on premium smartphone market in The premium smartphone market make up more than half of global smartphone revenue in a report claims with Apple s iPhone providing the lion s share iPhone Sales in the overall global smartphone market dropped year on year between to due to a variety of macroeconomic difficulties However the premium end of the scale still performed well Read more 2023-03-20 17:02:55
海外科学 NYT > Science Earth to Hit Critical Global Warming Threshold by Early 2030s https://www.nytimes.com/2023/03/20/climate/global-warming-ipcc-earth.html Earth to Hit Critical Global Warming Threshold by Early sA new U N report says it is still possible to hold global warming to relatively safe levels but doing so will require global cooperation billions of dollars and big changes 2023-03-20 17:52:21
海外科学 NYT > Science The Secret Behind Japan’s Delicious Strawberries: Kerosene https://www.nytimes.com/2023/03/18/climate/japan-winter-strawberries-greenhouse.html The Secret Behind Japan s Delicious Strawberries KeroseneThe growing season has become completely reversed thanks to kerosene burning greenhouses and the big prices paid for the earliest best berries 2023-03-20 17:59:12
海外科学 NYT > Science Babesiosis, a Tick-Borne Disease, Is on the Rise in the Northeast, C.D.C. Reports https://www.nytimes.com/2023/03/16/health/babesiosis-tick-disease-northeast.html Babesiosis a Tick Borne Disease Is on the Rise in the Northeast C D C ReportsBabesiosis which can cause flulike symptoms could be spreading because of rising temperatures and the growing deer population 2023-03-20 17:18:07
海外TECH WIRED Senators Warn the Next US Bank Run Could Be Rigged https://www.wired.com/story/senators-warn-the-next-us-bank-run-could-be-rigged-russia-china/ media 2023-03-20 17:16:52
ニュース BBC News - Home Putin to Xi: We will discuss your plan to end the war in Ukraine https://www.bbc.co.uk/news/world-asia-65018657?at_medium=RSS&at_campaign=KARANGA moscow 2023-03-20 17:49:29
ニュース BBC News - Home Brexit: DUP will vote against Windsor Framework plans https://www.bbc.co.uk/news/uk-northern-ireland-65008991?at_medium=RSS&at_campaign=KARANGA framework 2023-03-20 17:30:40
ニュース BBC News - Home Ruth Perry: Ofsted urged to pause inspections after teacher death https://www.bbc.co.uk/news/uk-england-berkshire-65019341?at_medium=RSS&at_campaign=KARANGA ofsted 2023-03-20 17:45:21
ニュース BBC News - Home Boris Johnson submits evidence before Partygate grilling https://www.bbc.co.uk/news/uk-politics-65012967?at_medium=RSS&at_campaign=KARANGA covid 2023-03-20 17:28:59
ニュース BBC News - Home Strike averted as Royal College of Nursing members accept pay offer https://www.bbc.co.uk/news/uk-scotland-65019788?at_medium=RSS&at_campaign=KARANGA majority 2023-03-20 17:52:24
ニュース BBC News - Home XXXTentacion: Three men found guilty of murdering rapper in 2018 https://www.bbc.co.uk/news/world-us-canada-64825205?at_medium=RSS&at_campaign=KARANGA florida 2023-03-20 17:03:23
ニュース BBC News - Home Investor fears appear to ease as UK and US share prices rise https://www.bbc.co.uk/news/business-65012275?at_medium=RSS&at_campaign=KARANGA plunge 2023-03-20 17:10:13
ビジネス ダイヤモンド・オンライン - 新着記事 「勉強しなくても結果を出せる人」がやっている、たった1つの習慣 - 起業家の思考法 https://diamond.jp/articles/-/319057 「勉強しなくても結果を出せる人」がやっている、たったつの習慣起業家の思考法『起業家の思考法「別解力」で圧倒的成果を生む問題発見・解決・実践の技法』を出版した株式会社じげん代表取締役社長の平尾丈氏。 2023-03-21 02:50:00
ビジネス ダイヤモンド・オンライン - 新着記事 【春分×一粒万倍日×天赦日】2023年最強開運日の春分、運気が上がる吉方位に出かけよう - 開運大全 https://diamond.jp/articles/-/319471 一粒万倍日 2023-03-21 02:45:00
ビジネス ダイヤモンド・オンライン - 新着記事 【超最強開運日に、神様との[幸運。]1日1話】 「今年最高に開運する人」に共通するシンプルな習慣 - 1日1分見るだけで願いが叶う!ふくふく開運絵馬 https://diamond.jp/articles/-/319242 【超最強開運日に、神様との幸運。 2023-03-21 02:40:00
ビジネス ダイヤモンド・オンライン - 新着記事 ピカソが描いた「5人の娼婦」のあまりにリアルな姿【書籍オンライン編集部セレクション】 - 13歳からのアート思考 https://diamond.jp/articles/-/319178 ピカソが描いた「人の娼婦」のあまりにリアルな姿【書籍オンライン編集部セレクション】歳からのアート思考論理もデータもあてにならない時代、論理・戦略に基づくアプローチに限界を感じた人たちのあいだで、「知覚」「感性」「直感」などが見直されつつある。 2023-03-21 02:35:00
ビジネス ダイヤモンド・オンライン - 新着記事 アイデアが出てこなくなったときに、頭を一瞬でリフレッシュする方法とは? - ひとこと化 https://diamond.jp/articles/-/319636 記念 2023-03-21 02:30:00
ビジネス ダイヤモンド・オンライン - 新着記事 【91歳の医師が明かす】 記憶力が低下する!「歯周病菌」が脳に入り込む驚愕のメカニズム - 91歳の現役医師がやっている 一生ボケない習慣 https://diamond.jp/articles/-/318447 【歳の医師が明かす】記憶力が低下する「歯周病菌」が脳に入り込む驚愕のメカニズム歳の現役医師がやっている一生ボケない習慣映画『ダイ・ハード』シリーズなどのヒット作で知られる米俳優ブルース・ウィリスさん歳が認知症前頭側頭型認知症と診断されたことを家族が公表し、世界的に大きなニュースとなった。 2023-03-21 02:25:00
ビジネス ダイヤモンド・オンライン - 新着記事 【家庭運】がほしい人のインテリア風水 - どんな運も、思いのまま! 李家幽竹の風水大全 https://diamond.jp/articles/-/319583 【家庭運】がほしい人のインテリア風水どんな運も、思いのまま李家幽竹の風水大全「どんな人でも運がよくなれる」、それが風水の持つ力です。 2023-03-21 02:20:00
ビジネス ダイヤモンド・オンライン - 新着記事 中ロ「協力と対話で目標達成」 モスクワ到着の習氏 - WSJ発 https://diamond.jp/articles/-/319851 目標達成 2023-03-21 02:15:00
ビジネス ダイヤモンド・オンライン - 新着記事 「とにかく明るい会社」が強い理由 - あなたの会社は高く売れます https://diamond.jp/articles/-/319562 mampa 2023-03-21 02:15:00
ビジネス ダイヤモンド・オンライン - 新着記事 親世代とは違う、今どきの東大エリートの就職事情とは? - 大学図鑑!2024 有名大学82校のすべてがわかる! https://diamond.jp/articles/-/319657 選び 2023-03-21 02:10:00
ビジネス ダイヤモンド・オンライン - 新着記事 「努力がムダになった」を英語でどういう? - 5分間英単語 https://diamond.jp/articles/-/319351 「努力がムダになった」を英語でどういう分間英単語「たくさん勉強したのに英語を話せない……」。 2023-03-21 02:05:00
Azure Azure の更新情報 General Availability: ASP. NET web app migration to Azure App Service using PowerShell Scripts https://azure.microsoft.com/ja-jp/updates/general-availability-asp-net-web-app-migration-to-azure-app-service-using-powershell-scripts/ scripts 2023-03-20 17:47:40

コメント

このブログの人気の投稿

投稿時間: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件)