René's URL Explorer Experiment


Title: [System.Convert]::FromBase64String causes memory leak with large strings · Issue #21473 · PowerShell/PowerShell · GitHub

Open Graph Title: [System.Convert]::FromBase64String causes memory leak with large strings · Issue #21473 · PowerShell/PowerShell

X Title: [System.Convert]::FromBase64String causes memory leak with large strings · Issue #21473 · PowerShell/PowerShell

Description: Prerequisites Write a descriptive title. Make sure you are able to repro it on the latest released version Search the existing issues. Refer to the FAQ. Refer to Differences between Windows PowerShell 5.1 and PowerShell. Steps to reprodu...

Open Graph Description: Prerequisites Write a descriptive title. Make sure you are able to repro it on the latest released version Search the existing issues. Refer to the FAQ. Refer to Differences between Windows PowerSh...

X Description: Prerequisites Write a descriptive title. Make sure you are able to repro it on the latest released version Search the existing issues. Refer to the FAQ. Refer to Differences between Windows PowerSh...

Opengraph URL: https://github.com/PowerShell/PowerShell/issues/21473

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"[System.Convert]::FromBase64String causes memory leak with large strings","articleBody":"### Prerequisites\n\n- [X] Write a descriptive title.\n- [X] Make sure you are able to repro it on the [latest released version](https://github.com/PowerShell/PowerShell/releases)\n- [X] Search the existing issues.\n- [X] Refer to the [FAQ](https://github.com/PowerShell/PowerShell/blob/master/docs/FAQ.md).\n- [X] Refer to [Differences between Windows PowerShell 5.1 and PowerShell](https://learn.microsoft.com/powershell/scripting/whats-new/differences-from-windows-powershell).\n\n### Steps to reproduce\n\nThis was tested on PowerShell 7.4.2\r\n1. Download the .NET 8.0 installer for Windows x64 to use as the test file, the direct link to this is here: https://dotnet.microsoft.com/en-us/download/dotnet/thank-you/sdk-8.0.204-windows-x64-installer\r\n2. Save this file into a folder on your computer somewhere\r\n3. Create a PowerShell script with the following contents in the same folder as the .NET 8.0 installer:\r\n\r\n```powershell\r\nGet-Date\r\nWrite-Host \"Creating Path to dotnet.exe test file\"\r\n$file = Join-Path -Path $PSScriptRoot -ChildPath \"dotnet.exe\"\r\nWrite-Host \"Reading all file bytes into memory\"\r\n$bytes = [System.IO.File]::ReadAllBytes( $file )\r\nWrite-Host \"Converting file bytes to base64 string\"\r\n$base64 = [System.Convert]::ToBase64String( $bytes )\r\nWrite-Host \"Converting base64 string back to file bytes\"\r\n$bytes = [System.Convert]::FromBase64String( $base64 )\r\nWrite-Host \"Test complete\"\r\nGet-Date\r\n```\r\n\r\nNOTE: That if you test this with a newer version of the .NET 8.0 installer, you may have to modify the test script to pick the correct file for the test since the filename is hard coded on line 3.\r\n\r\n4. Open a PowerShell window in the folder with the script and test file\r\n5. Run the PowerShell script\r\n6. Open Task Manager and observe the memory usage of PowerShell\r\n7. Note the time required to complete the conversion from Base64 and the usage of upwards of 3.5 GB of RAM to do so\r\n\r\nThe .NET 8.0 installer for Windows x64 is approximately 222 MB in size.  Reading into memory and converting to base64 then converting back should require about 790 MB of RAM with all variables remaining in scope during the process and no garbage collection happening or object disposal happening.  The observed behavior appears to be memory-leak related as the amount of memory used once the conversion eventually completes is about 3.4 GB of RAM.  These data points can be see in the attached screen shots.\n\n### Expected behavior\n\n```console\nWhen you run the same script in PowerShell 7 and Windows PowerShell 5.1, you see two very different behaviors:\r\n\r\nIn PowerShell 7.4.2, the time to complete is 82 seconds and memory used is 3.4 GB\r\nIn PowerShell 5.1, the time to complete is 7 seconds and memory used is 1.0 GB\r\n\r\nThis suggests there is an error in the PowerShell 7.4.2 / .NET 8.0 implementation.\n```\n\n\n### Actual behavior\n\n```console\nIn PowerShell 7.4.2, the time to complete is 82 seconds and memory used is 3.4 GB.\n```\n\n\n### Error details\n\n_No response_\n\n### Environment data\n\n```powershell\nName                           Value\r\n----                           -----\r\nPSVersion                      7.4.2\r\nPSEdition                      Core\r\nGitCommitId                    7.4.2\r\nOS                             Microsoft Windows 10.0.22631\r\nPlatform                       Win32NT\r\nPSCompatibleVersions           {1.0, 2.0, 3.0, 4.0…}\r\nPSRemotingProtocolVersion      2.3\r\nSerializationVersion           1.1.0.1\r\nWSManStackVersion              3.0\n```\n\n\n### Visuals\n\n## Testing in PowerShell 7.4.2\r\n\r\n\u003cimg width=\"425\" alt=\"ps7-test\" src=\"https://github.com/PowerShell/PowerShell/assets/29439901/a8e1be27-4536-4d1b-a8c9-d95a4135d771\"\u003e\r\n\r\n## Testing in PowerShell 5.1\r\n\r\n\u003cimg width=\"396\" alt=\"ps5-test\" src=\"https://github.com/PowerShell/PowerShell/assets/29439901/0cf00507-a436-4de2-9e2b-54579a4f759a\"\u003e\r\n\r\n## PowerShell 7.4.2 Memory Usage\r\n\r\n\u003cimg width=\"518\" alt=\"ps7-mem\" src=\"https://github.com/PowerShell/PowerShell/assets/29439901/f3341828-a3c3-464b-b37e-b047c9dc3cb5\"\u003e\r\n\r\n## PowerShell 5.1 Memory Usage\r\n\r\n\u003cimg width=\"524\" alt=\"ps5-mem\" src=\"https://github.com/PowerShell/PowerShell/assets/29439901/4acacc9d-7b64-4a54-92da-5b88369f505c\"\u003e\r\n","author":{"url":"https://github.com/chopinrlz","@type":"Person","name":"chopinrlz"},"datePublished":"2024-04-15T15:26:00.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":74},"url":"https://github.com/21473/PowerShell/issues/21473"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:0bb74310-5a33-a995-d3a5-c3138f765cfa
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idD3DC:256E35:1047F6F:173A3C1:6A551E55
html-safe-noncea29df557fc40db83d6b8fe28e9e8b988ebca22682131574e9da91d4f37110869
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJEM0RDOjI1NkUzNToxMDQ3RjZGOjE3M0EzQzE6NkE1NTFFNTUiLCJ2aXNpdG9yX2lkIjoiMjAyNDAzNjYyMTcyNTUzOTkyNSIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmac036983938c6fe3ec3604fda37a7d62e714d6390b45aba2c8e9113a018fa476f3
hovercard-subject-tagissue:2243969672
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/PowerShell/PowerShell/21473/issue_layout
twitter:imagehttps://opengraph.githubassets.com/f6d316b7190ee3fc3f3e6435829663f85eccc99795acc8730ca75f0ebec5c4ce/PowerShell/PowerShell/issues/21473
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/f6d316b7190ee3fc3f3e6435829663f85eccc99795acc8730ca75f0ebec5c4ce/PowerShell/PowerShell/issues/21473
og:image:altPrerequisites Write a descriptive title. Make sure you are able to repro it on the latest released version Search the existing issues. Refer to the FAQ. Refer to Differences between Windows PowerSh...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernamechopinrlz
hostnamegithub.com
expected-hostnamegithub.com
None682d273eacb2ac51680c6eb9c0b270f029f7ce74c32090f319083c34497e28a5
turbo-cache-controlno-preview
go-importgithub.com/PowerShell/PowerShell git https://github.com/PowerShell/PowerShell.git
octolytics-dimension-user_id11524380
octolytics-dimension-user_loginPowerShell
octolytics-dimension-repository_id49609581
octolytics-dimension-repository_nwoPowerShell/PowerShell
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id49609581
octolytics-dimension-repository_network_root_nwoPowerShell/PowerShell
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release3b6d37c6470adadff4194742daaab9a817cc4980
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/PowerShell/PowerShell/issues/21473#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2FPowerShell%2FPowerShell%2Fissues%2F21473
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub Copilot appDirect agents from issue to mergehttps://github.com/features/ai/github-app
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
View all resourceshttps://github.com/resources
GitHub SponsorsFund open source developershttps://github.com/open-source/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/open-source/accelerator
GitHub Starshttps://stars.github.com
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/enterprise/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2FPowerShell%2FPowerShell%2Fissues%2F21473
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=PowerShell%2FPowerShell
Reloadhttps://github.com/PowerShell/PowerShell/issues/21473
Reloadhttps://github.com/PowerShell/PowerShell/issues/21473
Reloadhttps://github.com/PowerShell/PowerShell/issues/21473
Please reload this pagehttps://github.com/PowerShell/PowerShell/issues/21473
PowerShell https://github.com/PowerShell
PowerShellhttps://github.com/PowerShell/PowerShell
Notifications https://github.com/login?return_to=%2FPowerShell%2FPowerShell
Fork 8.4k https://github.com/login?return_to=%2FPowerShell%2FPowerShell
Star 54.4k https://github.com/login?return_to=%2FPowerShell%2FPowerShell
Code https://github.com/PowerShell/PowerShell
Issues 1.2k https://github.com/PowerShell/PowerShell/issues
Pull requests 288 https://github.com/PowerShell/PowerShell/pulls
Discussions https://github.com/PowerShell/PowerShell/discussions
Actions https://github.com/PowerShell/PowerShell/actions
Projects https://github.com/PowerShell/PowerShell/projects
Security and quality 3 https://github.com/PowerShell/PowerShell/security
Insights https://github.com/PowerShell/PowerShell/pulse
Code https://github.com/PowerShell/PowerShell
Issues https://github.com/PowerShell/PowerShell/issues
Pull requests https://github.com/PowerShell/PowerShell/pulls
Discussions https://github.com/PowerShell/PowerShell/discussions
Actions https://github.com/PowerShell/PowerShell/actions
Projects https://github.com/PowerShell/PowerShell/projects
Security and quality https://github.com/PowerShell/PowerShell/security
Insights https://github.com/PowerShell/PowerShell/pulse
[System.Convert]::FromBase64String causes memory leak with large stringshttps://github.com/PowerShell/PowerShell/issues/21473#top
Needs-TriageThe issue is new and needs to be triaged by a work group.https://github.com/PowerShell/PowerShell/issues?q=state%3Aopen%20label%3A%22Needs-Triage%22
WG-Engine-Performancecore PowerShell engine, interpreter, and runtime performancehttps://github.com/PowerShell/PowerShell/issues?q=state%3Aopen%20label%3A%22WG-Engine-Performance%22
WG-NeedsReviewNeeds a review by the labeled Working Grouphttps://github.com/PowerShell/PowerShell/issues?q=state%3Aopen%20label%3A%22WG-NeedsReview%22
WG-Securitysecurity related areas such as JEAhttps://github.com/PowerShell/PowerShell/issues?q=state%3Aopen%20label%3A%22WG-Security%22
https://github.com/chopinrlz
chopinrlzhttps://github.com/chopinrlz
on Apr 15, 2024https://github.com/PowerShell/PowerShell/issues/21473#issue-2243969672
latest released versionhttps://github.com/PowerShell/PowerShell/releases
FAQhttps://github.com/PowerShell/PowerShell/blob/master/docs/FAQ.md
Differences between Windows PowerShell 5.1 and PowerShellhttps://learn.microsoft.com/powershell/scripting/whats-new/differences-from-windows-powershell
https://dotnet.microsoft.com/en-us/download/dotnet/thank-you/sdk-8.0.204-windows-x64-installerhttps://dotnet.microsoft.com/en-us/download/dotnet/thank-you/sdk-8.0.204-windows-x64-installer
https://private-user-images.githubusercontent.com/29439901/322535897-a8e1be27-4536-4d1b-a8c9-d95a4135d771.png?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3ODM5NjM1MjEsIm5iZiI6MTc4Mzk2MzIyMSwicGF0aCI6Ii8yOTQzOTkwMS8zMjI1MzU4OTctYThlMWJlMjctNDUzNi00ZDFiLWE4YzktZDk1YTQxMzVkNzcxLnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNjA3MTMlMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjYwNzEzVDE3MjAyMVomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPTFkNDAxZTM2ZDQ2MzM5MTJhMDU3YjEyODViMmFlNWQzY2ZkMzU1MmJhNzgxYzcxMjk4ZmNmMDgzZDI5ZWU2ZWYmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0JnJlc3BvbnNlLWNvbnRlbnQtdHlwZT1pbWFnZSUyRnBuZyJ9.y_TTqf7vY7gO2L7MNpD6yMeeIgHw5pzT55MyOSP9TbI
https://private-user-images.githubusercontent.com/29439901/322535959-0cf00507-a436-4de2-9e2b-54579a4f759a.png?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3ODM5NjM1MjEsIm5iZiI6MTc4Mzk2MzIyMSwicGF0aCI6Ii8yOTQzOTkwMS8zMjI1MzU5NTktMGNmMDA1MDctYTQzNi00ZGUyLTllMmItNTQ1NzlhNGY3NTlhLnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNjA3MTMlMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjYwNzEzVDE3MjAyMVomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPTVlYjg5Mjk5ODYzNzY0OWE1NDNjNzljMTNjNzgyN2U1ZThlMzFhY2QxYWVkYTZkN2U4NTYxNDFhMGY2NjIwYWEmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0JnJlc3BvbnNlLWNvbnRlbnQtdHlwZT1pbWFnZSUyRnBuZyJ9.vB69WGoDV545PSdPIiEdrSKF88cQRM8QDr6jfHJyy8E
https://private-user-images.githubusercontent.com/29439901/322536063-f3341828-a3c3-464b-b37e-b047c9dc3cb5.png?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3ODM5NjM1MjEsIm5iZiI6MTc4Mzk2MzIyMSwicGF0aCI6Ii8yOTQzOTkwMS8zMjI1MzYwNjMtZjMzNDE4MjgtYTNjMy00NjRiLWIzN2UtYjA0N2M5ZGMzY2I1LnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNjA3MTMlMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjYwNzEzVDE3MjAyMVomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPTQ5MjA3YzRiNzU1ODg5MGQ5OTc3MjUyYjYyMTg4NjNkMjRiNDBjOWE0OTZiZmYxY2Y3NzdhM2JmMjYxYTIyYjgmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0JnJlc3BvbnNlLWNvbnRlbnQtdHlwZT1pbWFnZSUyRnBuZyJ9.ng40uDTIUVyZY872KheUbeUB7LRqUBKnccWgVBihv-4
https://private-user-images.githubusercontent.com/29439901/322536129-4acacc9d-7b64-4a54-92da-5b88369f505c.png?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3ODM5NjM1MjEsIm5iZiI6MTc4Mzk2MzIyMSwicGF0aCI6Ii8yOTQzOTkwMS8zMjI1MzYxMjktNGFjYWNjOWQtN2I2NC00YTU0LTkyZGEtNWI4ODM2OWY1MDVjLnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNjA3MTMlMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjYwNzEzVDE3MjAyMVomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPTllNWJlYmVmMGVlODBmZmY1YjQ1NDU5YTg0NGRjMmQ2NGYzZDU4NWUwN2JlN2QzNmEzYTJhNTMwZTI1NDUwNjUmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0JnJlc3BvbnNlLWNvbnRlbnQtdHlwZT1pbWFnZSUyRnBuZyJ9.zmJN2D8K_F14CtqlNllD7VUXFRUwBku2SpPkRw41GAM
Needs-TriageThe issue is new and needs to be triaged by a work group.https://github.com/PowerShell/PowerShell/issues?q=state%3Aopen%20label%3A%22Needs-Triage%22
WG-Engine-Performancecore PowerShell engine, interpreter, and runtime performancehttps://github.com/PowerShell/PowerShell/issues?q=state%3Aopen%20label%3A%22WG-Engine-Performance%22
WG-NeedsReviewNeeds a review by the labeled Working Grouphttps://github.com/PowerShell/PowerShell/issues?q=state%3Aopen%20label%3A%22WG-NeedsReview%22
WG-Securitysecurity related areas such as JEAhttps://github.com/PowerShell/PowerShell/issues?q=state%3Aopen%20label%3A%22WG-Security%22
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.