Most engineers think…
Most engineers think BeyondInsight is just Password Safe’s installer and admin UI — a wrapper you click through once during setup, then ignore.
Wrong — BeyondInsight is the platform: it owns assets, discovery, Smart Rules, user groups and reporting, and Password Safe is a module riding on it. Skip the platform layer and you will hand-onboard every account, by hand, forever.
① What BeyondInsight actually is — the platform under Password Safe
Sneha joined ICICI Bank's PAM team on a Monday. Her first ticket: onboard 1,400 Linux servers into Password Safe by month-end. She opened a spreadsheet. Her senior closed it. Nobody hand-onboards 1,400 servers — BeyondInsight discovers them, sorts them and onboards them while you sleep. This lesson is about that machine.
Think of a housing society: Password Safe is the locker room, but the society management office keeps the member registry, hires the staff, runs the visitor register and decides who may enter which wing. BeyondInsight is that office. In one web console its left menu gives you Assets (everything you own), Discovery (how you found it), Smart Rules (auto-sorting), Managed Systems and Managed Accounts (what Password Safe controls), Password Safe and Secrets Safe (the vault modules), Analytics & Reporting, and Configuration. Interviewers love the one-liner: BeyondInsight is the platform; Password Safe is a module running on it — one console, two layers.
Deployment is a day-one interview question, so learn all three shapes. (1) U-Series appliance — a hardened physical or virtual box that ships with BeyondInsight/Password Safe pre-installed. For high availability you pair two: internal database replication copies data, and a heartbeat from the primary tells the secondary when to take over. (2) Software install — your own Windows Server plus SQL Server 2016 SP2 or higher; version 25.2 (the current line) supports Windows Server 2025 and direct upgrades from 23.2+. (3) Password Safe Cloud — BeyondTrust hosts the console at yoursite.ps.beyondtrustcloud.com, and you install Resource Brokers inside your network to do the local work.
The broker model is the part students get wrong. Each broker installs nine services (including the Discovery Scanner, Password Services and Session Monitoring) and groups into resource zones. Everything is outbound TCP 443 to your cloud site — your firewall team opens zero inbound ports. Sizing reality: 4 cores, 16 GB RAM minimum (32 recommended) and a 64 GB disk for session caching — undersize that disk and session recording dies first. Limits: the built-in Default zone cannot be edited, you can add up to 50 more zones, 200 brokers total, and BeyondTrust recommends 2+ brokers per zone so one reboot does not stop rotations.
Going deeper for multi-team estates: workgroups bind worker nodes to specific managed systems and accounts, so a node only processes its own group's work. In multi-tenant setups each organization needs at least one worker node, and a worker node belongs to exactly one organization — a favourite trick question in BeyondTrust University discussions.
The three deployment shapes (plus the worker that makes cloud possible)
Tap each card — front is the name, back is the one fact interviews check.
Hardened box, BI/PS pre-installed. HA = two appliances + replication + heartbeat. So what: you own patching and failover drills.
Your Windows Server + SQL Server 2016 SP2+. Most control, most upkeep. So what: DB health becomes YOUR pager duty.
BeyondTrust hosts the console and patches it (Dec 2024: cloud patched same week). So what: you still own the brokers.
Nine services in your DC: auth, discovery, rotation, session proxy. Outbound 443 only. So what: zero inbound firewall requests.
curl -s -c cookies.txt -X POST \ "https://bi.icici-lab.local/BeyondTrust/api/public/v3/Auth/SignAppIn" \ -H "Authorization: PS-Auth key=c479a66f93a3...d2c9484d; runas=icici-lab\sneha.k; pwd=[S0meP@ss];" curl -s -b cookies.txt \ "https://bi.icici-lab.local/BeyondTrust/api/public/v3/Configuration/Version"
HTTP/1.1 200 OK <- SignAppIn: session established, state kept between calls
HTTP/1.1 200 OK <- Configuration/Version
{"Version":"25.2.0"}Symptom: the secondary U-Series takes over and the vault is empty. Cause: HA only replicates databases for features that were enabled when HA was configured — Password Safe was switched on later, so its DB never joined replication. Fix: enable features first, then pair; if it is too late, re-establish HA.
Sneha's firewall team at ICICI asks: "Which inbound ports must we open from BeyondTrust's cloud to the data centre for these Resource Brokers?" What is the correct answer?
Pause & Predict
Predict: your U-Series HA pair was configured in January. Password Safe (the feature) was enabled in March. The primary dies in June — what does the secondary have? Type your guess.
② Discovery — you cannot protect what you cannot see
Every PAM rollout fails the same way: the vault is perfect, but half the estate never entered it. That is why the docs force a setup order — and why discovery comes before any onboarding. The Discovery Scanner is the engine for every scan; in Password Safe Cloud it ships as one of the nine services inside each Resource Broker. Picture a census enumerator going door-to-door: list every house (asset) and every resident (account) before the government issues ration cards (onboarding).
You aim a scan with an Address Group (say 10.20.0.0/22 for the Bengaluru DC), attach a schedule (nightly, weekly), and choose how deep to look. An uncredentialed scan only knocks: which hosts answer, which ports are open. A credentialed (detailed) scan walks in with authority: on Windows it mounts the IPC$ share, pushes a temporary discovery agent service, and makes WMI and remote-registry calls. What comes back is the gold: assets, local accounts, services, software, scheduled tasks and open ports — the raw material Smart Rules will turn into managed accounts.
Scan credentials deserve respect: they typically need local admin on Windows targets (that is what IPC$ + WMI + remote registry require) and they are stored AES-256 encrypted in BeyondInsight, set under Configuration → Discovery Management → Credentials. Treat them like the census officer's authority letter — with the wrong letter, doors stay shut, and worse: repeated wrong knocks lock accounts and light up the SOC. One more field-tested tip: since version 24.3 the Software collection checkbox ships unchecked, because software inventory often slowed or failed scans on big estates. Leave it off unless you genuinely need it.
# Before blaming the Discovery Scanner, test its two prerequisites yourself: net use \\10.20.30.41\IPC$ /user:ICICI-LAB\svc-discovery * Get-CimInstance -ClassName Win32_OperatingSystem -ComputerName 10.20.30.41 ` -Credential (Get-Credential ICICI-LAB\svc-discovery) | Select Caption,Version
The command completed successfully. Caption Version ------- ------- Microsoft Windows Server 2022 Standard 10.0.20348
Rahul at Wipro faces this
The nightly detailed scan of 10.20.30.0/24 reports "completed successfully", but hours later the new assets show ZERO local accounts, services or software — and no accounts ever onboard.
The scan credential is not a true local admin on the targets — IPC$/WMI/remote-registry calls are silently blocked by UAC remote restrictions, Windows Firewall or NTLM hardening. Port-level discovery succeeded, so the scan status still says success.
Manually test IPC$ and WMI as the scan account from the scanner host (the code block above). Then enable advanced scanner logging and re-scan one target.
BeyondInsight > Discovery (Scans grid) → scan details; credentials at Configuration > Discovery Management > CredentialsGrant the scan account real local admin on targets (GPO group), fix LocalAccountTokenFilterPolicy/UAC and firewall rules per BeyondTrust KB0017022, then re-run the detailed scan.
The asset's details now list local accounts, services and software — and your Managed Account Smart Rule starts matching candidates from the scan.
A "detailed" credentialed discovery scan against Windows targets will…
Pause & Predict
Predict: a scan ends "completed successfully" but the asset's services and software tabs are empty. Success or failure? Type your guess.
③ Smart Groups & Smart Rules — the automation engine
Mumbai's dabbawalas route two lakh tiffins a day with painted codes: read the label, put the box in the right wagon, repeat at every station. A Smart Rule is that sorting code for your estate: IF the discovered thing matches my criteria, THEN group it, onboard it, configure it — and re-check forever. The output is a Smart Group, the unit you will later attach permissions and roles to. With a Password Safe license there are exactly four rule types: Asset, Managed Account, Managed System and Policy User.
Anatomy first, because every interview asks it. Selection Criteria (IF): for managed-account rules these include Directory Query, Microsoft Entra ID Query, Directory Attribute Match and Dedicated Account; asset rules match OS, name, IP range and more. Processing (WHEN): a rule runs when it is created or saved, on timer expiry, when asset changes are detected, or when you press Process on the grid — throttled by the Reprocessing Limit field in Details. Actions (THEN): the exact strings matter — Show managed account as Smart Group, Manage Account Settings, Link domain accounts to Managed Systems, Map Dedicated Accounts to a user group. That middle action is the auto-onboarder: it is how 1,400 servers' service accounts get rotation policies without a single manual edit.
Three platform behaviours to memorise before you build anything: (1) the rule wins — "the settings in a Smart Rule override the settings configured on the managed system", so an account onboarded by a rule must be edited in the rule; (2) built-ins are locked — built-in Smart Rules show a lock icon and cannot be deleted, and any rule referenced by another rule cannot be deleted or deactivated; (3) Quick Groups are frozen — handy for ad-hoc grouping, but their filters and actions cannot be modified later.
▶ Follow one account from discovery to the vault
Watch svc-backup travel the full automation pipeline — scan, match, act, onboard. Press Play for the healthy path, then Break it to see the failure.
Symptom: account settings flip back and forth, rotations storm, the Omni Worker is pegged. BeyondTrust's own warning: "be cautious about creating more than one Smart Rule with the same systems or accounts. If the Smart Rules have different actions, they will start continually overwriting each other in an endless loop." One population, one owning rule — use exclusion criteria and a naming convention like MA-LINUX-SVC-onboard so overlap is visible at a glance.
Priya at Flipkart faces this
Service accounts keep jumping between two Smart Groups; release durations flip between 60 and 120 minutes overnight; rotation jobs spike every few hours and the console crawls.
Two Managed Account Smart Rules — one per sub-team — both match svc-* accounts but carry different Manage Account Settings actions. Every reprocess, each rule "corrects" the other's work: the documented endless overwrite loop.
List all rules whose criteria touch the flapping accounts; compare their Selection Criteria and Actions side by side; check Last Processed timestamps ping-ponging.
BeyondInsight > Smart Rules (grid, sort by Last Processed) → open each rule → Selection Criteria + ActionsMake one rule the owner of svc-* (merge the needed settings into it); add an exclusion for svc-* in the second rule; set a sane Reprocessing Limit on both.
Settings stop flipping across two full processing cycles; rotation queue returns to normal; each account's settings now trace to exactly one rule.
curl -s -b cookies.txt \ "https://bi.icici-lab.local/BeyondTrust/api/public/v3/ManagedAccounts?systemName=BLR-APP-07"
[{"PlatformID":4,"SystemId":112,"SystemName":"BLR-APP-07",
"AccountName":"svc-backup","DomainName":null,
"DefaultReleaseDuration":120,"MaximumReleaseDuration":525600,
"ChangeTime":"23:30","AutoManagementFlag":true}]Aditya at HCL edits the release duration directly on an account that was onboarded by a Smart Rule using Manage Account Settings. Next morning his edit has reverted. Why?
Pause & Predict
Predict: you save a new Entra-ID-query Smart Rule at 10:00. At 13:00 its Smart Group is still empty. Broken? Type your guess.
④ Users, groups & roles — least privilege for the PAM team itself
Here is the uncomfortable truth your CISO already knows: the PAM console is the juiciest target in the building, because whoever controls it controls every password in it. So the same least-privilege discipline you enforce on others applies to your own team first. BeyondInsight grants nothing to individual users — permissions flow through groups, created under Configuration → Role Based Access → User Management. A group can be a BeyondInsight local group, or synced from Active Directory, LDAP or Microsoft Entra ID — so your existing IAM joiner/leaver process keeps working: HR removes Karthik from the AD group, and his vault access dies with it.
Rights come in two layers, and mixing them up fails interviews. Layer 1 — feature permissions: what a group may do in the console itself (full control, read-only or no access to areas like Smart Rules, Assets, Analytics & Reporting). Layer 2 — Password Safe roles, granted per Smart Group: Requestor (may ask for credentials/sessions), Approver (may grant), Requestor/Approver (both), and ISA (instant retrieval, no approval step at all). Think of a hotel's master-key register: housekeeping may request floor keys (Requestor), the duty manager signs the register (Approver), and the general manager's skeleton key (ISA) opens everything with no signature — which is exactly why you issue it to almost nobody.
Karthik at HCL faces this
An internal audit at HCL finds a fresh L1 joiner retrieved 14 production root passwords last month — with zero approval records. The joiner did nothing sneaky: the console simply let him.
The "PAM-L1-Helpdesk" group was granted ISA (instead of Requestor) on the Linux-Production Smart Group during a long-forgotten incident night — ISA retrievals skip the request/approve workflow, so no approvals exist by design.
Review the group's Password Safe roles per Smart Group, then pull the credential-release report and filter for releases without linked approval requests.
BeyondInsight > Configuration > Role Based Access > User Management > Groups > PAM-L1-Helpdesk → Smart Groups (roles)Replace ISA with Requestor on production Smart Groups for L1; bind an access policy that requires one approver; keep ISA only in a break-glass group with 2-3 named senior members.
Next month's report shows every release linked to an approved request; a test retrieval by an L1 account now lands in an approver's queue instead of returning the password.
Now close the loop with evidence. Analytics & Reporting (left menu) is where the platform pays rent: start with three views — coverage (discovered accounts vs managed accounts — the gap is your risk backlog), rotation health (failed password changes trending up means a functional-account or rights problem), and activity (who requested, who approved, who used ISA). Schedule the coverage and activity reports to email your team weekly; when the auditor arrives, the answer to "prove it" is a subscription, not a scramble. Everything you learned today — discovery feeding Smart Rules feeding role-scoped Smart Groups — becomes measurable on these dashboards.
Open Configuration → Role Based Access → User Management → your group → check its Smart Group roles: production Smart Groups should show Requestor (with an approver-backed access policy), never ISA. Then open Analytics & Reporting and confirm zero approval-less releases last month outside the break-glass group. If both checks pass, your PAM team passes its own audit.
BeyondTrust University's Password Safe Administration track leads to a cert exam: 40 questions, 75% to pass, two attempts only — fail both and you repurchase training. The BI-vs-PS layering, Smart Rule loop gotcha and broker outbound-443 model in this lesson are exactly the kind of items its pools draw from.
During a Sev-1 at 2 AM, Meera needs a production root password NOW, with no approver awake. Which Password Safe role — held by a tiny break-glass group — makes that possible by design?
Pause & Predict
Predict: you give the L1 helpdesk group ISA on the Windows-servers Smart Group "temporarily" during an incident and forget it. What does next month's audit report show? Type your guess.
🤖 Ask the AI Tutor
Tap any question — instant, scoped to this lesson. No login, no waiting.
Pre-curated from BeyondTrust docs + community Q&A, scoped to this lesson. For a live prod issue, paste your export into chat.techclick.in.
📝 Wrap-up assessment — six more
You've answered 4 inline. Six left. 70% (7 of 10) marks the lesson complete on your profile. Tap Submit all answers at the end.
🧠 In your own words
Type one line: Your manager asks: we bought Password Safe — why are you spending the first week on BeyondInsight assets and Smart Rules instead of vaulting passwords? Then compare to the expert version.
🗣 Teach a friend
Best way to lock it in — explain it in one line to a teammate. Tap to generate a paste-ready summary.
📖 Glossary
- BeyondInsight
- The management platform — assets, discovery, Smart Rules, users, reports — that Password Safe runs on.
- U-Series appliance
- Hardened physical/virtual appliance shipping BI/PS pre-installed; pair two for HA (replication + heartbeat).
- Resource Broker
- Outbound-443 worker in your network doing auth, discovery, rotation and session proxy for Password Safe Cloud.
- Resource Zone
- A named collection of Resource Brokers; the cloud round-robins work across the zone’s brokers.
- Discovery Scanner
- The engine that performs all discovery scans and feeds findings into the Assets grid.
- Address Group
- A saved list of IPs, ranges or names that a discovery scan targets.
- Smart Rule
- A continuously re-evaluated IF→THEN rule: selection criteria → processing → actions.
- Smart Group
- The dynamic group a Smart Rule maintains — membership recomputes on every reprocess.
- ISA
- Information Systems Administrator role — retrieves credentials instantly with no approval workflow.
- Omni Worker
- BeyondInsight’s background job service that processes Smart Rules and other queued work.
- Functional account
- The worker account Password Safe uses to change other accounts’ passwords — never checked out by humans.
- Analytics & Reporting
- BeyondInsight’s reporting layer — coverage, rotation health and activity evidence for audits.
📚 Sources
- BeyondInsight & Password Safe Getting Started Guide — mandatory setup order, core definitions. docs.beyondtrust.com/bips/docs/ps-getting-started
- Password Safe Admin Guide — Smart Rules: types, criteria, actions, processing triggers and the endless-loop warning. docs.beyondtrust.com/bips/docs/ps-smart-rules
- BeyondInsight Discovery docs — scans grid, scan credentials (AES-256), Discovery Management paths. docs.beyondtrust.com/bips/docs/bi-on-prem-discovery-scans
- Password Safe Cloud Resource Broker install guide — nine services, zones/limits, outbound-443 model, sizing. docs.beyondtrust.com/bips/docs/ps-cloud-resource-broker-install
- U-Series Deployment and Failover Guide — appliance roles, HA pair model, features-at-pairing replication gotcha. docs.beyondtrust.com/bips/docs/u-series-deployment-and-failover-guide
- BeyondInsight and Password Safe 25.2 release notes — Windows Server 2025 support, upgrade path from 23.2+, SQL Server 2016 SP2+. docs.beyondtrust.com/bips/changelog/beyondinsight-and-password-safe-25-2-release-notes
- BeyondTrust Beekeepers community — discovery scan reports success but returns no services/software data (KB0017022). beekeepers.beyondtrust.com/general-40/discovery-scan-issue-6424
- BeyondInsight & Password Safe API usage — PS-Auth header, SignAppIn lifecycle, ManagedAccounts/Configuration endpoints. docs.beyondtrust.com/bips/reference/beyondinsight-and-password-safe-api-usage
- PeerSpot — BeyondTrust Password Safe pros and cons: Smart Rules bulk onboarding praised, console complexity flagged. peerspot.com/products/beyondtrust-password-safe-pros-and-cons
- BeyondTrust University — Get Certified: 40-question exam, 75% pass mark, two attempts. beyondtrust.com/services/beyondtrust-university/get-certified
What's next?
You now know how accounts get FOUND and onboarded. Next: what Password Safe actually does with them — the functional account, managed system and managed account trinity that makes rotation tick.