Let’s go through the steps and data flow when using `curl` to make an HTTPS request and check for an...
(Invoke-WebRequest -Uri https://www.cisco.com -Method Get).StatusCode This command sends a GET request to the specified URL and then returns the HTTP...
The `Test-Connection` command is a PowerShell cmdlet that sends Internet Control Message Protocol (ICMP) echo request packets, or “pings”, to...
To verify the connectivity and synchronization status of your Active Directory (AD) servers on a Palo Alto Networks firewall, you...
#!/usr/bin/env python3 import requests import json def user_input(): ip_address = input('Enter the IP address to query: ') return ip_address def...
DO YOU HAVE SSL OFFLOAD TO GET STATUS CODE SSL offloading, often performed by a load balancer or a reverse...
This script will scan an FQDN file, and based on the IP Address, it will tag it with either STP...
1. Import the Active Directory module: Import-Module ActiveDirectory 2. To get the list of Active Directory sites: Get-ADReplicationSite -Filter...
When trying to see what devices a Windows Server is communicating with on the network, there are several approaches you...
Command Prompt: for /L %i in (1,1,254) do @ping -n 1 4.2.2.%i | find "Reply" Powershell: 1..254 | % {...