You've already forked SharedScripts
mirror of
https://github.com/jaapbrasser/SharedScripts.git
synced 2025-12-24 21:51:38 +02:00
42 lines
755 B
PowerShell
42 lines
755 B
PowerShell
|
|
|
||
|
|
<#PSScriptInfo
|
||
|
|
|
||
|
|
.VERSION 1.0.0
|
||
|
|
|
||
|
|
.GUID 58101b69-ce79-49ac-b675-890ad1932ba7
|
||
|
|
|
||
|
|
.AUTHOR Jaap Brasser
|
||
|
|
|
||
|
|
.COMPANYNAME PowerShell Community
|
||
|
|
|
||
|
|
.COPYRIGHT
|
||
|
|
|
||
|
|
.TAGS PowerShell Percent Encoding Obfuscation PowerShell Url Encoding Security
|
||
|
|
|
||
|
|
.LICENSEURI
|
||
|
|
|
||
|
|
.PROJECTURI https://github.com/jaapbrasser/SharedScripts/tree/master/ConvertFrom-EncodedUrl
|
||
|
|
|
||
|
|
.ICONURI
|
||
|
|
|
||
|
|
.EXTERNALMODULEDEPENDENCIES
|
||
|
|
|
||
|
|
.REQUIREDSCRIPTS
|
||
|
|
|
||
|
|
.EXTERNALSCRIPTDEPENDENCIES
|
||
|
|
|
||
|
|
.RELEASENOTES
|
||
|
|
|
||
|
|
|
||
|
|
#>
|
||
|
|
|
||
|
|
<#
|
||
|
|
|
||
|
|
.DESCRIPTION
|
||
|
|
This function can be used to extract Percent-Encoded information from urls and display that information and return that as a PowerShell custom object. This function is pipeline aware and urls can be piped directly into this function.
|
||
|
|
|
||
|
|
#>
|
||
|
|
Param()
|
||
|
|
|
||
|
|
|