投稿時間:2023-06-12 22:24:46 RSSフィード2023-06-12 22:00 分まとめ(28件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
IT 気になる、記になる… Microsoft、Xboxのワイヤレス コントローラーとワイヤレスヘッドセットのStarfield リミテッドエディションを発表 https://taisy0.com/2023/06/12/172926.html starf 2023-06-12 12:16:19
IT InfoQ .NET Hot Reload Adds Support for Modifying Generics https://www.infoq.com/news/2023/06/dotnet-hot-reload-generics/?utm_campaign=infoq_content&utm_source=infoq&utm_medium=feed&utm_term=global NET Hot Reload Adds Support for Modifying GenericsIn the NET Preview release NET Hot Reload implements support for modifying generic methods reducing the number of changes that require restarting for the change to take effect By Giorgi Dalakishvili 2023-06-12 12:30:00
python Pythonタグが付けられた新着投稿 - Qiita プライベートリポジトリの変化を検知しteamsに通知を送るツール https://qiita.com/engishoma/items/81f95d3a8657e78f2a65 develop 2023-06-12 21:18:17
AWS AWSタグが付けられた新着投稿 - Qiita AWS IAM Identity Centerでユーザを追加したときのメモ https://qiita.com/zumax/items/c59004b6c9d2b89f9338 awsiamidentitycenter 2023-06-12 21:09:38
Git Gitタグが付けられた新着投稿 - Qiita [Git] 動作を試す 実行例56:remote・pushでローカルリポジトリ間同士でpush送信(要設定変更) https://qiita.com/dl_from_scratch/items/c898d7cc2ef7c3e9ce8a remote 2023-06-12 21:36:53
海外TECH MakeUseOf What Is Apple’s Face ID and How Does It Work? https://www.makeuseof.com/apple-face-id-explained/ facial 2023-06-12 12:15:18
海外TECH MakeUseOf How to Play the Original Diablo in 2023 https://www.makeuseof.com/how-to-play-original-diablo/ diablo 2023-06-12 12:15:13
海外TECH DEV Community Integrating Keycloak as my Identity Provider for IAM Identity Centre: Part two, configuring Keycloak as my Identity provider https://dev.to/aws/integrating-keycloak-as-my-identity-provider-for-iam-identity-centre-part-two-configuring-keycloak-as-my-identity-provider-1n0k Integrating Keycloak as my Identity Provider for IAM Identity Centre Part two configuring Keycloak as my Identity providerThis is the follow up post to Integrating Keycloak as my Identity Provider for IAM Identity Centre Part one deploying Keycloak on AWS where I looked at how to deploy Keycloak on AWS in order to have an Identity Provider to use when configuring AWS Identity Centre In this post I am going to use that setup and show you how I configured it to integrate with AWS Identity Centre to provide access to my AWS resources AWS Identity Centre is the new name for AWS Single Sign On In this walkthrough I have a test user developer bigdev com which I have configured in Keycloak Typically this might be any user that Keycloak is managing it supports a broad range of federated identity stores but I am keeping it simple for this walk through I want to be able to use this user account to log into my AWS account Let s see how we do this Pre reqsIn order to find this post useful you will need a Keycloak server up and running If you do not have this then you could try out my previous post Integrating Keycloak as my Identity Provider for IAM Identity Centre Part one deploying Keycloak on AWS Aside from a running Keycloak server you will need Admin access to your AWS Account where you want to integrate Keycloak as your IdpI have setup a test user and group in AWS IAM Identity Centre which maps to the external user in KeycloakUsers and Groups in AWS IAM Identity Centre Not in scope for this post but within AWS IAM Identity Centre you are able to define groups and permissions sets and then assign these to users that are created When you integrate an Idp with AWS IAM Identity Centre this is your control point to ensure you define and control what these federated users have permissions to do In this walkthrough I created the simplest setup A group called Dev Users which have a subset of AWS permissions in my case PowerUsers who can do a lot but not everything and assigned a user called developer bigdev com which I have created in my Keycloak environment I can log into Keycloak as developer bigdev com but this account currently cannot log into my AWS account Starting off at the AWS IAM Identity CentreFrom IAM Identity Centre I click on STEP Choose your Identity Source From the first option that comes up I select External Identity Provider I then DOWNLOAD the metadata file under the Service Provider Metadata section I will need this in the next section Switching to Keycloak AdministratorI now switch to Keycloak logging in as my admin user From the Clients menu option on the left I click on IMPORT CLIENT From the screen that appears I use the BROWSE button to select the metadata file I download from the AWS Service Provider Metadata section This should popular the CLIENT ID field Click on SAVE which will now present a more comprehensive set of configuration settings that you can change There are a few options we need to add NAME I set this to amazon aws ROOT URL As I am using a fresh vanilla installation of Keycloak I used the default Realm This means that I needed to set this option to if you change your Realm then update the master to whatever your Realm is called IDP Initiated SSO URL Name is set to amazon aws Note The settings I have used are only illustrative for the purpose of this blog post and showing you have to get this running You should absolutely take care in setting these options and understand what they mean to ensure that what you get is what you expect Go to REALM SETTINGS from Keycloak s main menu and under the GENERAL tab right click and save the SAML IDENTITY PROVIDER METADATA information I saved this as provider idp metadata xml Back to AWS IAM Identity CentreBack to the AWS IAM Identity Centre still at the Configure external Identity Provider screen we can now use the Idp SAML Metadata button to upload the file we just downloaded provider idp metadata xml Once completed you can click on NEXT You will now be asked to review and then confirm changes by typing into the confirmation box Review and then if happy type in ACCEPT and then click on the CHANGE IDENTITY SOURCE button AWS IAM Identity Centre will now confirm that your provided metatdata file is valid and the complete the configuration in a few seconds If all successful you will be returned back to the AWS IAM Identity Centre console Testing the setupFrom the AWS IAM Identity Centre Dashboard I can see my AWS access portal URL which is the link you would share to enable your federated users to log in When I click on this I am redirected to a Keycloak login screen After entering credentials for my test user developer bigdev com I am taken to the AWS screen that allows me to view and access the various resources I have been assigned In this case this is just the single AWS account I can access my AWS Account via the console or via the cli and I am provided with the temporary access tokens to do that This test user has been assigned the PowerUserAccess set of permissions which provides a lot of access but blocks IAM When I try and view the IAM console we can see that the privileges this user has been assigned match the PowerUserAccess permissions ConclusionIn these two blog posts I showed you how you can deploy Keycloak on AWS and then integrate it with AWS Identity Centre to provide SSO for your AWS accounts One improvement to this setup would be to automate the provisioning of users within AWS IAM Identity Centre from Keycloak This is typically achieved using System for Cross domain Identity Management SCIM which IAM Identity Center supports If this is something that interests you let me know and I will add it as a third post to complete the set If you have found this blog post helpful please give me some feedback by completing this very short survey here 2023-06-12 12:25:17
海外TECH DEV Community From Inspiration to Impact https://dev.to/opensauced/from-inspiration-to-impact-5a41 From Inspiration to ImpactWelcome back to our final post in this series about Open Source in Science Fiction We ve looked at imaginary worlds inspiring real world innovation and real life concepts inspiring science fiction In this last post we ll dive into the impact of open source in science fiction and the influence on the genre and tech landscape Collaborative World Building Transforming the Science Fiction LandscapeScience fiction has long been a genre of creativity with authors crafting intricate worlds and universes But in many cases it s been a solitary experience If we apply open source principles we can open up new worlds together Collaborative platforms like World Anvil allow writers and contributors to collaborate to build shared universes These platforms allow for crowd sourced contributions where writers artists and fans collaborate to develop detailed mythologies create expansive maps and flesh out the intricate histories of their fictional worlds Open source storytelling tools like Twine provide accessible platforms for interactive storytelling enabling anyone to contribute to the narrative tapestry Through open source world building science fiction has become a collective endeavor resulting in richer and more immersive fictional universes Open Source Fan Fiction A Creative ContinuationI don t know about you but I know some really passionate science fiction fans So passionate in fact that they re eager to contribute to the story Open source has taken fan fiction to new heights empowering fans to engage in creative collaborations and expand upon existing science fiction narratives Projects like Star Wars Uncut are a great example of open source fan fiction In this ambitious undertaking Star Wars fans from around the world were invited to recreate the original Star Wars movie scene by scene Each contributor brought their unique style interpretation and creativity to the project resulting in a stunning mosaic of fan made scenes that captured the collective love for the franchise Open source fan fiction allows fans to not only explore their creativity but also to contribute to the ongoing development of science fiction worlds Ethical Considerations in Open Source Science FictionWith the fast paced technology landscape we need to be continually mindful about the ethical considerations that arise While open source fosters collaboration and innovation it also raises important questions about copyright intellectual property and inclusivity within the genre How do creators navigate the fine line between encouraging fan participation and protecting their original work Open source fan fiction often operates in a legal gray area and it is essential for creators and fans to respect the boundaries set by copyright laws while finding ways to embrace collaboration My past experience as a college English teacher collided with my life in tech for this series and I couldn t be more excited to see the continued collisions between open source and science fiction in the future If you re ready to start your own journey into open source and make an impact get started with OpenSauced today 2023-06-12 12:25:00
海外TECH DEV Community Let's RickRoll! https://dev.to/derlin/lets-rickroll-23ei Let x s RickRoll I while back I was looking for a fun project to test open source best practices docker GitHub Actions etc I came up with rickroller the perfect tool to rickroll your friends like a pro In this article I want to share with you my vision of a perfect RickRoll prank demo ⮕ and some interesting aspects of its implementation If you want to learn more about open source best practices have a look at the README ⮕ In this article What is RickRolling My vision of a perfect rickrollerThe final resultHow to Rick Roll your friends like a proRendering the original pageInstrumenting the page ie redirect The You got rick rolled pageThe URL shortener disguiseAvoiding SSRF attacksThe deploymentConclusionTOC generated with bitdowntoc using the devto profile Read more at Finally a clean and easy way to add Table of Contents to dev to articles What is RickRolling I am sure you already got RickRolled at least once in your life But for the lucky ones out there Rick Roll is an internet prank that started around on online bulletin boards like chan and Reddit where users would post a link that unexpectedly directed to a video of Rick Astley s Never Gonna Give You Up Since the prank bubbled and it is now everywhere There are so many fun websites and tools available around Rick Roll such as r mtdv me a Rick Roll Link generator or rickrollrc a Bash script playing the video with ANSI color coded UTF characters audio if available There is even an AntiRickroll Chrome Extension My vision of a perfect rickrollerMost of the tools out there are based on disguising a link that opens directly on Rick s video Which is fine but lacks subtlety I wanted to go further The idea Have people think they are on a real and interesting website before getting redirected More precisely here is how I envision the prank you send a link to a friend that looks like the shortened URL of a very interesting web page the friend opens the link and lands on what looks like the real stuff the friend interacts with the page click scroll and BOOM RickRoll This makes for a more subtle and fun Rick Roll don t you think To make this prank possible because of course I implemented it I need a web server with three different views View is the prankster interface where he can choose which original URL web page to fake In view the server determines the original URL to masquerade e g thanks to a query parameter keep reading and renders the original URL content but with slight changes making it redirect to view upon interaction That s rickroller The final resultMy Rickroller implementation is a simple Python Flask app You can test it at hosted by the awesome PaaS Divio Here is the view to create a rickroll view Try to enter a URL then interact with the fake page You should end up on Cherries on the cake the social preview from the original site shows up when you share the fake link Here is the result of sharing the malicious URL on Telegram The best is to try it yourself it will become clearer The code and much more details are available on GitHub ⮕ IMPORTANT the fake links may become obsolete after a few days How to Rick Roll your friends like a proSo how did I end up with this I won t go into all the details but let s dive into some interesting points Rendering the original pageThe first challenge is to render a clone of the original URL We can easily get the HTML from the original URL and return it However without modifications it will be completely broken Why most pages use relative links to images scripts CSS etc some pages load resources protected by CORS cross origin request sharing For we can t do much For though my first idea was to go through all the links in the HTML and absolutize them prepend the original URL to it The full implementation is available here but basically import requestsfrom bs import BeautifulSoupfrom urllib parse import urljoindef absolutize tagname attr soup url for elt in soup find all tagname attr True elt attrs attr urljoin url elt attrs attr get the original HTMLresponse requests get original url if response status code raise soup BeautifulSoup response text html parser absolutize all important tagsargs soup original url absolutize a href args absolutize link href args absolutize script src args absolutize img src args fix img with srcset or else images using it won t loadGood but complex and error prone And it won t work for relative URLs located inside scripts or CSS How could we make it better Meet the lt base gt tag The lt base gt HTML element specifies the base URL to use for all relative URLs in a document Yup just adding a lt base href base gt in the header can replace all the code from my first attempt Cherries on the cake it will also work for relative links in CSS files def absolutize soup url add lt head gt if missing base soup head find base if base is None tag soup new tag base tag attrs href url soup head insert tag else base attrs href urljoin url base attrs href Done Instrumenting the page ie redirect Now that we rendered a clone it is time to modify it so it redirects to a rickrolled page At first I just wanted to redirect the user on click I thus naturally thought about changing all the links on the page to some Rick Roll video Since I already got a soup BeautifulSoup object I can easily alter all the lt a gt elements in the body This last part is important because the lt head gt contains links to resources CSS js etc that need to be loaded properly for the page to look remotely normal for a in soup find body find all a a attrs href RICK ROLL URL Simple enough but the result is far from perfect Most problems are caused by this increasingly in vogue habit of using lt a gt elements for page logic instead of real navigation opening a popup animating a menu controlling accordions etc In this case changing the href breaks the original behaviour the menu doesn t work or the accordion stays closed and doesn t redirect the user either because of a sneaky JS event handler in the original page calling event preventDefault on click So how do you ensure any click on an a element redirects to Astley s without breaking the page Javascript Instead of changing links I can insert a JS script that hijacks all click events and redirects to the rickrolled page If I add it at the very bottom of the page it will take precedence over everything else The Javascript looks like this document addEventListener DOMContentLoaded function event document addEventListener click e gt e stopPropagation e preventDefault window location s true And can be inserted as the last child of the body with tag soup new tag script tag attrs type text javascript tag string JS SNIPPET soup body insert len soup body contents tag I went further to also redirect on scroll I won t talk about it here but have a look at the code if you are interested The You got rick rolled pageI talked about redirecting a lot But redirecting where Usually a RickRoll means redirecting to a YouTube video Apart from choosing one from the zillions available there are two things I don t like advertisements and mobile behaviour On mobile YouTube links slowly open in the YouTube app tipping the prankee before the video even starts So I will redirect to a page of mine which plays the rickroller video I first thought of using a video embed such as a YouTube embed However did you know it is now nearly impossible to autoplay a video with sound From Chrome s blog web browsers are moving towards stricter autoplay policies in order to improve the user experience minimize incentives to install ad blockers and reduce data consumption on expensive and or constrained networks In Chrome autoplay with sound is only allowed on very strict conditions and always requires some action from the user All other major browsers are implementing similar policies This was a huge bummer No sound it is Even worse the amp autoplay parameter on YouTube embeds is buggy as hell the video started neither on my mobile phone nor my Vivaldi browser Instead I got a dumb preview with a play button I played with other sources providing embeds for the Astley video but none offered a good enough experience And more problematic those obscure websites could go down anytime But wait if a video doesn t autoplay a GIF definitely will If we can t have sound anyway a good quality GIF is as good as any I thus ended up using a giphy Rick Roll GIF embedded into a very simple web page It worked perfectly for a while until the GIF disappeared from giphy leaving in its place To avoid another abrupt disappearance I downloaded a gif from tenor com that is now served directly by my server This is what you see in the final result The URL shortener disguiseFor rickroller to work the original URL needs to be retrievable in some way from the URL that is shared with your friends view in the schema so that rickroller knows what to instrument display I can t use sessions since the URL is meant to be shared The easiest is to use a query parameter url lt escaped url gt It works but asking a friend to click on an URL that looks like u https A discuss kotlinlang org t react in kotlin js what i learned long but useful read is unlikely to land Without adding a layer of persistence there is however nothing we can t do there is no lossless compression that exists for URL strings If I have a database though I could disguise rickroller into an URL shortener The idea is simple when a prankster inputs a URL in view I generate a unique and short UUID for it and store the tuple URL UUID The prankster can then use When the prankee requests a simple lookup for UuIDxxxx in the database returns the original URL that rickroller can then display Since I didn t know how and where I would deploy the final version of RickRoller I decided to provide multiple persistence layers SQLite in memory →can be used for local testing SQL like SQLite PostgreSQL MySQL MongoDB only because mongodb com has a free plan Avoiding SSRF attacksSince rickroller does HTTP GET on URLs provided by the users it is a perfect target to Server Side Request Forgery SSRFs To give you an example let s say rickroller is deployed on an AWS EC instance and a malicious user passes the URL the metadata service The user doesn t have access but rickroller does This could leak very sensitive information security groups user data If this is unclear Hacking the Cloud Steal EC Metadata Credentials via SSRF gives a more thorough explanation Long story short I need some kind of security in place The easiest is to simply deny any private URL But checking the URL provided by the user is not enough Why Because by default requests get will follow redirects A hacker could set up a small server with a public address that answers with a redirect to a private URL My solution is thus do the requests get call and record the history that is all the potential redirects or hops ensure that no private URL is found in the historyHere is the code from ipaddress import ip addressfrom socket import gethostbynamefrom urllib parse import urlparseimport requestsdef ensure is safe url str hostname urlparse url hostname if hostname is None raise Exception url f Could not extract hostname from url ip gethostbyname hostname if ip is None or ip address ip is private raise Exception url f url maps to an unknown or private ip address ip def safe get url response requests get url timeout ensure is safe r url for r in response history return responseprint safe get The deploymentWith all this in place time to deploy I manage the release cycle and the publication of the docker images ARM AMD to DockerHub with GitHub Actions I have one instance running on Google Cloud Run that uses the free MongoDB database from mongodb com I can redeploy it at any time using a manually triggered GitHub Action However since I do not want to invest too much into it I use the cheapest Cloud Run instance and everything is slow the instance stops and starts for each request I explain everything at length in the README if you want more details For the actual demo I host another instance on divio com which is an awesome PaaS with far better response times More precisely divio deploys rickroller on AWS for me I chose the European region taking care of all the heavy work CloudFront DNS backups security etc It also comes with a nice UI and CLI ConclusionWhat started as a dumb and easy project code wise turned up to be a bit challenging I really enjoyed going the extra mile deployment release management etc and learned a lot along the way I can only encourage you to start your own fun project and do the same I hope you enjoyed the read and learned something Please go ahead and play with the demo Long live RickRoller With love derlin 2023-06-12 12:10:00
海外TECH DEV Community What's the best feedback you've ever received? https://dev.to/bekahhw/whats-the-best-feedback-youve-ever-received-39o4 What x s the best feedback you x ve ever received I m a firm believer in the importance of feedback but I also think it doesn t happen nearly enough BekahHW bekahhw I think one of the most underutilized tools we have is giving feedback I also think that we don t spend enough time developing this skill which is good for the whole team if it s done right One of the best ways to ensure that you both give and receive effective feedback is…twitter com i web status … PM Jun What s the best feedback you ve received 2023-06-12 12:04:15
Apple AppleInsider - Frontpage News macOS Sonoma beta review: Few major updates, but very welcome https://appleinsider.com/articles/23/06/12/macos-sonoma-beta-review-few-major-updates-but-very-welcome?utm_medium=rss macOS Sonoma beta review Few major updates but very welcomeIn its initial beta version the new macOS Sonoma only presents a few significant features ーsuch as Presenter Overlay and desktop widgets ーbut they re well done and they will make you want to update Just don t update your macOS yet As well as Apple making the new macOS seem like the best thing in the world ever it has also this year made it much easier to get an early copy Read more 2023-06-12 12:59:55
Apple AppleInsider - Frontpage News WWDC Feature Roundup, Apple Vision Pro, & Aqara U100 on the HomeKit Insider podcast https://appleinsider.com/articles/23/06/12/wwdc-feature-roundup-apple-vision-pro-aqara-u100-on-the-homekit-insider-podcast?utm_medium=rss WWDC Feature Roundup Apple Vision Pro amp Aqara U on the HomeKit Insider podcastOn the latest Homekit Insider podcast your hosts roundup the WWDC changes go hands on with the Aqara U lock and cover more smart home news HomeKit InsiderAs usual we roundup all the changes in Apple s new software post WWDC For HomeKit there aren t a ton of changes this year but still a few worth mentioning Read more 2023-06-12 12:57:55
Apple AppleInsider - Frontpage News Automation giant ABB acquires smart home device maker Eve https://appleinsider.com/articles/23/06/12/automation-giant-abb-acquires-smart-home-device-maker-eve?utm_medium=rss Automation giant ABB acquires smart home device maker EveEve Systems the maker of numerous smart home devices that support HomeKit has been acquired by automation and electrification firm ABB Eve MotionConfirmed by ABB on Monday the purchase of the German Eve Systems brings the company under the ownership of the Swedish Swiss ABB based in Switzerland Read more 2023-06-12 12:56:25
Apple AppleInsider - Frontpage News Apple's iPhone propels smartphones into top five of India's exports https://appleinsider.com/articles/23/06/12/apple-propels-smartphones-into-top-five-of-indias-exports?utm_medium=rss Apple x s iPhone propels smartphones into top five of India x s exportsIndian authorities say the country is now exporting double its previous annual number of smartphones entirely because of the iPhone Tim Cook in IndiaPreviously Apple made iPhones in India at least chiefly for sale within that country Now that it is moving iPhone production to India and away from China it s manufacturing them for export Read more 2023-06-12 12:39:58
Apple AppleInsider - Frontpage News Brooklyn's Mac Support Store to close after 17 years, auction forthcoming https://appleinsider.com/articles/23/06/12/brooklyns-mac-support-store-to-close-after-17-years-auction-forthcoming?utm_medium=rss Brooklyn x s Mac Support Store to close after years auction forthcomingA long running Apple reseller and support store in Brooklyn is shutting down and is marking its closure with an online auction The flag will be coming down on Brooklyn s famous Mac Support Store source Apple Maps The Mac Support Store officially opened in the mid s ーthe company itself variously cites and ーand is now based at th Street Brooklyn Since its inception the company has been both an Apple reseller and an authorized repair center Read more 2023-06-12 12:33:38
Apple AppleInsider - Frontpage News Why Apple Vision Pro has a chance at being the future of work https://appleinsider.com/articles/23/06/12/why-apple-vision-pro-has-a-chance-at-being-the-future-of-work?utm_medium=rss Why Apple Vision Pro has a chance at being the future of workIt s too early to definitively say Apple Vision Pro is the future of work but its initial proposition of unlimited project windows rapid user interface navigation and wide software support all suggest it can be a productivity machine Vision Pro at Apple ParkInstead ofintroducing its Vision Pro headset by touting new games or fitness classes it did so with a heavy dose of multitasking and emphasis on how we work Read more 2023-06-12 12:41:32
Apple AppleInsider - Frontpage News watchOS 10 feature roundup: widgets, cycling, enterprise, and more https://appleinsider.com/articles/23/06/12/watchos-10-feature-roundup-widgets-cycling-enterprise-and-more?utm_medium=rss watchOS feature roundup widgets cycling enterprise and moreApple introduced quite a few changes to watchOS during WWDC with the milestone release including a very widget heavy approach for the Apple Watch software watchOS News from WWDC was dominated by the Apple Vision Pro headset but Apple did take time to tell developers what to expect from its main operating systems in the fall Read more 2023-06-12 12:04:52
Apple AppleInsider - Frontpage News Apple faces trademark fight over the name 'Vision Pro' in China https://appleinsider.com/articles/23/06/12/apple-faces-trademark-fight-over-the-name-vision-pro-in-china?utm_medium=rss Apple faces trademark fight over the name x Vision Pro x in ChinaChina s Huawei registered a trademark for the name Vision Pro four years before the unveiling of the Apple Vision Pro ーbut it s not the first time Apple has had such naming issues Apple has long since moved away from prefixing new device names with an i but Apple TV was originally announced as iTV Until that is the major British broadcaster ITV objected Then the name iPad was first licensed to Fujitsu and iOS was a trademark of Cisco ーas was iPhone Read more 2023-06-12 12:02:23
海外TECH Engadget Former Samsung executive accused of trying to copy an entire chip plant in China https://www.engadget.com/former-samsung-executive-accused-of-trying-to-copy-an-entire-chip-plant-in-china-121008690.html?src=rss Former Samsung executive accused of trying to copy an entire chip plant in ChinaSouth Korean President Yoon Suk Yeol recently declared the chip manufacturing industry to be in an quot all out war quot and the latest developments certainly support that statement Prosecutors in the Suwon District have indicted a former Samsung executive for allegedly stealing semiconductor plant blueprints and technology from the leading chipmaker BusinessKorea reports They didn t name the year old defendant who also previously served as vice president of another Korean chipmaker SK Hynix but claimed he stole the information between and The leak reportedly cost Samsung about million The defendant allegedly planned to build a semiconductor in Xi an China less than a mile from an existing Samsung plant He hired employees from SK Hynix and Samsung to obtain their trade secrets while also teaming up with an unnamed Taiwanese electronics manufacturing company that pledged billion to build the new semiconductor plant ーthe partnership fell through However the defendant was able to secure about million from Chinese investors which he used to create prototypes in a Chengdu China based plant The plant was reportedly also built using stolen Samsung information according to prosecutors nbsp quot It s so serious that it s difficult to compare it in terms of the scale of the crime and the degree of damage with previous individual semiconductor technology leakage cases quot the prosecutor s office said in a statement quot It s a grave crime that could deal a heavy blow to our economic security by shaking the foundation of the domestic chip industry at a time of intensifying competition in chip manufacturing quot Six co conspirators including one Samsung sub contractor were indicted alongside the lead defendant These charges follow continued efforts from China to acquire South Korea s technologies across a range of industries and Korea creating stricter punishments for related offenses This article originally appeared on Engadget at 2023-06-12 12:10:08
金融 金融庁ホームページ 令和5年行政事業レビュー(公開プロセス)を実施します。 https://www.fsa.go.jp/news/r4/20230613/20230613.html 行政事業レビュー 2023-06-12 14:00:00
ニュース BBC News - Home Woman arrested on suspicion of murder after two children found dead https://www.bbc.co.uk/news/uk-england-stoke-staffordshire-65875658?at_medium=RSS&at_campaign=KARANGA deada 2023-06-12 12:10:21
ニュース BBC News - Home Boris Johnson: Attacks on Partygate inquiry are out of order, says MP https://www.bbc.co.uk/news/uk-politics-65874224?at_medium=RSS&at_campaign=KARANGA court 2023-06-12 12:09:44
ニュース BBC News - Home Media watchdog Ofcom latest victim of mass hack https://www.bbc.co.uk/news/technology-65877210?at_medium=RSS&at_campaign=KARANGA attack 2023-06-12 12:31:45
ニュース BBC News - Home Nicola Sturgeon will not be suspended from SNP - Yousaf https://www.bbc.co.uk/news/uk-scotland-65879317?at_medium=RSS&at_campaign=KARANGA yousaf 2023-06-12 12:49:10
ニュース BBC News - Home Silvio Berlusconi: How the former Italian PM changed Italy https://www.bbc.co.uk/news/world-europe-65878269?at_medium=RSS&at_campaign=KARANGA berlusconi 2023-06-12 12:10:05
ニュース BBC News - Home Chloe Mitchell: Brandon John Rainey, 26, on murder charge https://www.bbc.co.uk/news/uk-northern-ireland-65875297?at_medium=RSS&at_campaign=KARANGA ballymena 2023-06-12 12:10:07
ニュース BBC News - Home How four children survived 40 days in hostile jungle https://www.bbc.co.uk/news/world-europe-65871238?at_medium=RSS&at_campaign=KARANGA amazon 2023-06-12 12:10:06

コメント

このブログの人気の投稿

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