Powershell to Update Custom URL Category

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Announcements
Please sign in to see details of an important advisory in our Customer Advisories area.

Powershell to Update Custom URL Category

L0 Member

Wanted to contribute back with some powershell I put together to update a custom url category on a firewall.  I used several posts here, as well as some code from a Nessus Powershell script and the pan-python project as a basis for this script.  Also on GitHub: wesallen/PaloAlto-Powershell · GitHub

# Carlos Perez provided this bit of code to help with ignoring the self-signed

# certificate on Nessus. If you are not using a self-signed certificate you

# don't need this bit of code.

if ([System.Net.ServicePointManager]::CertificatePolicy.ToString() -ne 'IgnoreCerts')

{

    $Domain = [AppDomain]::CurrentDomain

    $DynAssembly = New-Object System.Reflection.AssemblyName('IgnoreCerts')

    $AssemblyBuilder = $Domain.DefineDynamicAssembly($DynAssembly, [System.Reflection.Emit.AssemblyBuilderAccess]::Run)

    $ModuleBuilder = $AssemblyBuilder.DefineDynamicModule('IgnoreCerts', $false)

    $TypeBuilder = $ModuleBuilder.DefineType('IgnoreCerts', 'AutoLayout, AnsiClass, Class, Public, BeforeFieldInit', [System.Object], [System.Net.ICertificatePolicy])

    $TypeBuilder.DefineDefaultConstructor('PrivateScope, Public, HideBySig, SpecialName, RTSpecialName') | Out-Null

    $MethodInfo = [System.Net.ICertificatePolicy].GetMethod('CheckValidationResult')

    $MethodBuilder = $TypeBuilder.DefineMethod($MethodInfo.Name, 'PrivateScope, Public, Virtual, HideBySig, VtableLayoutMask', $MethodInfo.CallingConvention, $MethodInfo.ReturnType, ([Type[]] ($MethodInfo.GetParameters() | % {$_.ParameterType})))

    $ILGen = $MethodBuilder.GetILGenerator()

    $ILGen.Emit([Reflection.Emit.Opcodes]::Ldc_I4_1)

    $ILGen.Emit([Reflection.Emit.Opcodes]::Ret)

    $TypeBuilder.CreateType() | Out-Null

    # Disable SSL certificate validation

    [System.Net.ServicePointManager]::CertificatePolicy = New-Object IgnoreCerts

}

##Firewall URL

$HostPA = "https://x.x.x.x"

##API Key

$apiKey = "your_api_key"

##Name for custom URL Category

$category = "your_category"

## input file, one url per line, formated like this:  <member>somesite.com</member>

$urls = (Get-Content .\urls.xml) -join""

##Send new list, replaces all items within the category

[xml]$content = Invoke-RestMethod "$HostPA/api/?xpath=/config/devices/entry/vsys/entry/profiles/custom-url-category/entry[@name='$category']/list&action=edit&type=config&element=<list>$urls</list>&key=$apiKey"

##Print response code

$content.response

##Commit Changes

[xml]$content = Invoke-RestMethod "$HostPA/api/?type=commit&cmd=<commit></commit>&key=$apiKey"

##Print response code

$content.response

1 REPLY 1

L1 Bithead

Hey WesAllen,

 

This is great!  Exactly what I needed.

 

I'm wanting to use action=set instead of edit.  Though its providing an error indicating it may need to override template object first. 

 

EDIT:  Figured it out.

  • 2627 Views
  • 1 replies
  • 2 Likes
Like what you see?

Show your appreciation!

Click Like if a post is helpful to you or if you just want to show your support.

Click Accept as Solution to acknowledge that the answer to your question has been provided.

The button appears next to the replies on topics you’ve started. The member who gave the solution and all future visitors to this topic will appreciate it!

These simple actions take just seconds of your time, but go a long way in showing appreciation for community members and the LIVEcommunity as a whole!

The LIVEcommunity thanks you for your participation!