PoshCode Archive  Artifact [df37d653b7]

Artifact df37d653b75acbb7b86d79dfd70741fe5712ee54879a4c33d75caa7b3ac13ed7:

  • File New-Eicar.ps1 — part of check-in [db82f31ef1] at 2018-06-10 13:32:33 on branch trunk — A PowerShell function to test that an antivirus product is working. (user: Chris Campbell size: 2043)

# encoding: ascii
# api: powershell
# title: New-Eicar
# description: A PowerShell function to test that an antivirus product is working.
# version: 0.1
# type: function
# author: Chris Campbell 
# license: CC0
# function: New-Eicar
# x-poshcode-id: 3874
# x-archived: 2013-01-22T13:40:10
# x-published: 2013-01-10T19:24:00
#
#
function New-Eicar {
<#
.SYNOPSIS
 
    New-Eicar
       
    Author: Chris Campbell (@obscuresec)
    License: BSD 3-Clause
    
.DESCRIPTION

    A function that generates the EICAR string to test ondemand scanning of antivirus products.

.PARAMETER $Path

    Specifies the path to write the eicar file to.

.EXAMPLE

    PS C:\> New-Eicar -Path c:\test 

.NOTES

    During testing, several AV products caused the script to hang, but it always completed after a few minutes.

.LINK

    http://obscuresec.com/2013/01/New-Eicar.html
    https://github.com/obscuresec/random/blob/master/New-Eicar
    
#>
    [CmdletBinding()] Param(
        [ValidateScript({Test-Path $_ -PathType 'Container'})] 
        [string] 
        $Path = "$env:temp\"
        )            
            [string] $FilePath = (Join-Path $Path eicar.com)
            #Base64 of Eicar string
            [string] $EncodedEicar = 'WDVPIVAlQEFQWzRcUFpYNTQoUF4pN0NDKTd9JEVJQ0FSLVNUQU5EQVJELUFOVElWSVJVUy1URVNULUZJTEUhJEgrSCo='

            If (!(Test-Path -Path $FilePath)) {

                Try {
                    [byte[]] $EicarBytes = [System.Convert]::FromBase64String($EncodedEicar)
                    [string] $Eicar = [System.Text.Encoding]::UTF8.GetString($EicarBytes)
                    Set-Content -Value $Eicar -Encoding ascii -Path $FilePath -Force 
                }

                Catch {
                    Write-Warning "Eicar.com file couldn't be created. Either permissions or AV prevented file creation."
                }
            }
            
            Else {
                Write-Warning "Eicar.com already exists!"
            }

}