[powershell]Sending access request to Tufin SecureChange REST API.

On previous post I have a code that use a text block to contain all the XML tags of a body, this method proved to be unsustainable, for some reasons variables cannot be parsed into the @" "@ block correctly. So I used another method. Create the base XML, then read this base XML and … Continue reading [powershell]Sending access request to Tufin SecureChange REST API.

Advertisement

[powershell]Creating access request on Tufin using REST API

This script uses a user filled in excel sheet (xlsx), the sheet contains 3 columns, source, destination and service. Since Tufin SecureChange cannot do remove or deny, asking user to choose remove or deny is meaningless. the below script has tested working, but a lot of exception handling and error handling has not been in … Continue reading [powershell]Creating access request on Tufin using REST API

[Powershell]Obfuscate password

This is a sample script to create a password file, the file is encrypted, however when you need to read from the files you can use it for your script to authenticate so that your script do not need to hardcode the password in plaintext. The credential.GetNetworkCredential().Password will display your encrypted password in plaintext. This … Continue reading [Powershell]Obfuscate password