Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Jira and PAN-OS Doc Updates #70

Merged
merged 3 commits into from
Feb 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,6 @@ function Write-Log {
# Write Log data
$MessageString = "{0}`t| {1}`t| {2}`t| {3}" -f $Timestamp, $MessageLevel, $ApplicationName, $Message
$MessageString | Out-File -FilePath $LogFile -Encoding utf8 -Append -ErrorAction SilentlyContinue
# $Color = @{ 0 = 'Green'; 1 = 'Cyan'; 2 = 'Yellow'; 3 = 'Red'}
# Write-Host -ForegroundColor $Color[$ErrorLevel] -Object ( $DateTime + $Message)
}
}

Expand Down
2 changes: 1 addition & 1 deletion Scripts/SecretServer/Jira/Discovery/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ This document will cover adding a discovery source to Secret Server to allow rep
- ***Script:*** Jira Local Account Discovery script uploaded in pre-requisites
- ***Script Arguments:*** ```$[1]$Username $[1]$Password $[1]$URL $[1]$notes ```
- Click Save
- This completes the creation of the Jira Local Account Scanner
- This completes the creation of the Jira Local Account Scanner

### Create Discovery Source

Expand Down
14 changes: 7 additions & 7 deletions Scripts/SecretServer/Palo Alto Pan-OS/Discovery/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
- **Fields**
- Change HostRange to **tenant-url**
- Click Save
- This completes the creation of the PAN-OS Scan Template Creation
- This completes the creation of the PAN-OS Scan Template Creation


### Create PAN-OS Account Scan Template
Expand All @@ -33,7 +33,7 @@
- Add field: Local-Account (Leave Parent and Include in Match Blank)
- Add field: Admin-Account (Leave Parent and Include in Match Blank)
- Click Save
- This completes the creation of the PAN-OS Account Scan Template Creation
- This completes the creation of the PAN-OS Account Scan Template Creation

### Create Local Account Discovery Script

Expand Down Expand Up @@ -65,7 +65,7 @@
- **Input Template**: Discovery Source
- **Output Template:**: PAN-OS Tenant (Use Template that Was Created in the [PAN-OS Scan Template Section](#create-PAN-OS-scan-template))
- Click Save
- This completes the creation of the PAN-OS Tenant Scanner
- This completes the creation of the PAN-OS Tenant Scanner

### Create PAN-OS Account Scanner

Expand All @@ -88,14 +88,14 @@
$[1]$discovery-mode $[1]$tenant-url $[1]$username $[1]$password
```
- Click Save
- This completes the creation of the PAN-OS Account Scanner
- This completes the creation of the PAN-OS Account Scanner

### Create Discovery Source

- Navigate to **Admin | Discovery | Discovery Sources**
- Click **Create** drop-down
- Click **Empty Discovery Source**
-Enter the Values below
- Enter the Values below
- **Name:** (example: PAN-OS Test Tenant)
- **Site** (Select Site Where Discovery will run)
- **Source Type** Empty
Expand Down Expand Up @@ -132,7 +132,7 @@ In this section, There are instructions on creating an optional report to displa
- Navigate to the Reports module
- click on the New Report Button
- Fill in the following values:
- Name: The name of the Discovery Source you just Created in the [Create Discovery Source ](#create-discovery-source) Section (ex. MyDiscoverySource - Discovery )
- Name: The name of the Discovery Source you just Created in the [Create Discovery Source ](#create-discovery-source) Section (ex. MyDiscoverySource - Discovery)
- Description: (Enter something meaningful to your organization)
- Category: Select the Section where you would like the report to appear (ex. Discovery Scan)
- Report SQL: Copy and Paste the SQL Query below
Expand Down Expand Up @@ -179,4 +179,4 @@ You will now find this report under the section you chose in the Category field.
- Click the **Run Discovery Now** (Dropdown) and select **Run Discovery Now**
- Click on the **Network view** Button in the upper right corner
- Click on the newly created discovery source
- Click the **Domain \ Cloud Accounts** tab to view the discovered accounts
- Click the **Domain \ Cloud Accounts** tab to view the discovered accounts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ The steps below show how to Set up and configure a PAN-OS Remote Password Change
If you have not already done, so, please follow the steps in the **Instructions.md Document** found [Here](../Instructions.md)

## Disclaimer
** Heartbeat will work with any account that in the Administrator Accounts section of the PAN-OS dashboard (Device -> Administrator). It will not work for accounts that only exist in the Local User Database. If the account exits in both sections of the PAN-OS dashboard the Heartbeat will function correctly. Remote Password change will not work with any account in the Local User Database section of the PAN-OS dashboard. These accounts are unable to update their password once they are associated with a Authentication Profile.**
** Heartbeat will work with any account that is in the Administrator Accounts section of the PAN-OS dashboard (Device -> Administrator). It will not work for accounts that only exist in the Local User Database. If the account exits in both sections of the PAN-OS dashboard the Heartbeat will function correctly. Remote Password change will not work with any account in the Local User Database section of the PAN-OS dashboard. These accounts are unable to update their password once they are associated with a Authentication Profile.**

## Create Scripts

Expand All @@ -31,15 +31,15 @@ If you have not already done, so, please follow the steps in the **Instructions.
- Navigate to **ADMIN** > **Scripts**
- Click on **Create Script**
- Fill out the required fields
- **Name**: ( example PAN-OS Heartbeat)
- **Description**: (Enter something meaningful to your Organization)
- **Active** (Checked)
- **Script Type**: Powershell
- **Category**: Heartbeat
- **Merge Fields**: Leave Blank
- **Script**: Copy and paste the Script included in the file [PAN-OS Heartbeat.ps1](./PAN-OS%20Heartbeat.ps1)
- Click Save
- This completes the creation of the PAN-OS Heartbeat Script
- **Name**: ( example PAN-OS Heartbeat)
- **Description**: (Enter something meaningful to your Organization)
- **Active** (Checked)
- **Script Type**: Powershell
- **Category**: Heartbeat
- **Merge Fields**: Leave Blank
- **Script**: Copy and paste the Script included in the file [PAN-OS Heartbeat.ps1](./PAN-OS%20Heartbeat.ps1)
- Click Save
- This completes the creation of the PAN-OS Heartbeat Script

## Create Password Changer

Expand Down
Loading