Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 839 Bytes

File metadata and controls

23 lines (18 loc) · 839 Bytes

CB Protection API Toolkit for PowerShell

This toolkit was written specifically for PowerShell 5.1. As such, it uses code that is NOT compatible with anything below 5.0.

How to use

Import these modules with the new import method introduced in PowerShell 5.0

using module .\CBEPAPI****.psm1

To create a new object from the class definitions use the method introduced in PowerShell 5.0

$object = [CBEP****]::new()

To use methods of classes, simply reference them in 'dot' notation. Methods that will return data for consumption will be typecast as something OTHER than [void] in the class definitions.

$object.GetSomethingCool('variable1','variable2','variable3)

Future implements

  • File analysis class
  • Create VirusTotal script for performing analysis and making decisions based on the results.