keepass.info
No paid content found
Categories: Security & Privacy
KeePass is a free open source password manager. Passwords can be stored in an encrypted database, which can be unlocked with one master key.
Related questions
More questions →What Does Security Mean for a CDN and Edge Platform?
Security on a CDN and edge platform means filtering and absorbing malicious traffic at edge nodes before it reaches your origin server. Instead of only hardening the origin, you distribute protection across a global network so attacks are mitigated closer to their source. This matters most when your site faces volumetric attacks, application-layer exploits, or automated abuse, and when you want to avoid exposing your origin IP directly. Tencent EdgeOne, for example, positions security alongside acceleration, serverless, and video delivery as a core edge capability.
The core security layers
A CDN/edge platform typically bundles several distinct protections. They address different threats and are often enabled independently.
| Layer | What it does | Threat it addresses | When you need it |
|---|---|---|---|
| DDoS mitigation | Absorbs and disperses high-volume traffic across edge nodes | Volumetric floods (L3/L4 and large L7 floods) | Any public-facing site; critical for sites that attract attention or have thin origin capacity |
| WAF (Web Application Firewall) | Inspects HTTP requests against rule sets | SQL injection, XSS, command injection, known exploit patterns | Sites with login forms, APIs, CMS platforms, or user input |
| Bot management | Distinguishes human traffic from automated clients | Credential stuffing, scraping, inventory hoarding, spam | Sites with accounts, e-commerce, or valuable content |
| TLS/SSL | Encrypts traffic between client and edge (and often edge to origin) | Eavesdropping, tampering, man-in-the-middle | Every site handling any user data or requiring trust |
These layers are complementary. DDoS mitigation keeps your service online under flood; WAF blocks exploit attempts that slip past volume-based defenses; bot management handles low-and-slow abuse that looks like normal traffic; TLS protects data in transit.
How edge-based security differs from origin-only protection
With origin-only protection, every request reaches your server before it is evaluated. Your origin absorbs the full attack volume, and its IP is often discoverable.
With edge-based security, requests terminate at an edge node first. The edge:
- Filters or challenges suspicious requests before forwarding.
- Absorbs volumetric attacks across many nodes rather than one server.
- Hides the origin IP when configured correctly, so attackers cannot target it directly.
The practical difference: origin-only defenses fail when the attack exceeds origin capacity. Edge defenses scale with the network, so capacity is less of a bottleneck. The trade-off is that you must route traffic through the edge consistently — if your origin IP leaks or is reachable directly, attackers can bypass the edge entirely.
Which protection addresses which threat
- Volumetric DDoS: needs DDoS mitigation with enough edge capacity to absorb the flood. Origin-only rate limiting usually fails here because the pipe itself saturates.
- Application exploits (injection, XSS): needs WAF rules. These attacks are small in volume, so DDoS mitigation alone will not stop them.
- Credential stuffing and scraping: needs bot management. These requests often look legitimate at the network level, so volume-based defenses miss them.
- Data interception: needs TLS end-to-end. Terminating TLS only at the edge without re-encrypting to origin leaves the edge-to-origin leg exposed.
A site can need all four, or only some. A static marketing site with no login may only need DDoS mitigation and TLS. An e-commerce site with accounts and checkout needs all four.
Practical steps to evaluate and enable security on a CDN/edge platform
- Inventory your exposure. List public endpoints, login flows, APIs, and any user input. This tells you which layers are relevant.
- Confirm origin IP is not directly reachable. If it is, edge security is bypassable. Restrict origin to accept traffic only from edge nodes.
- Enable TLS end-to-end. Configure certificates at the edge and verify the edge-to-origin leg is encrypted, not plaintext.
- Turn on DDoS mitigation. Usually always-on; verify the platform's capacity and whether it auto-scales.
- Deploy WAF in monitor mode first. Log what would be blocked before enforcing, to avoid breaking legitimate traffic.
- Add bot management where accounts or content value exist. Start with detection, then move to challenge/block.
- Test with a controlled request. Send a known-malicious pattern (e.g., a test SQLi string) and confirm it is blocked. Send normal traffic and confirm it passes.
Common misconfigurations and how to verify
- Origin IP exposed. Verify by resolving your domain and checking whether the origin responds directly. If it does, lock it down.
- WAF in monitor-only mode left on. Check logs for blocked vs. logged events; if nothing is ever blocked, enforcement may be off.
- TLS terminated at edge but plaintext to origin. Inspect the edge-to-origin connection; if it is HTTP, data is exposed internally.
- Bot rules too aggressive. Watch for legitimate users getting challenged; tune thresholds against real traffic.
- DDoS protection untested. Run a controlled load test within allowed limits to confirm mitigation engages.
Verification is the same for each layer: send a request that should be blocked and confirm it is, then send a request that should pass and confirm it is not blocked. If both behave as expected, the layer is working.
Choosing what matters for your site
Match protections to your actual risk rather than enabling everything by default. A brochure site needs TLS and DDoS mitigation. A site with logins and payments needs WAF and bot management too. The decision hinges on whether you have user input, accounts, or valuable content — those are the conditions that make WAF and bot management worth the configuration effort. EdgeOne bundles these capabilities with its CDN and edge platform, so the evaluation question becomes which layers your site actually requires, not whether the platform offers them.
What Is Password Auditing and Recovery?
Password auditing and password recovery are two sides of the same technical capability: testing how easily credentials can be guessed or cracked. Auditing is the proactive, authorized practice of measuring password strength across accounts you control; recovery is the reactive practice of regaining access to an account or file when the password is lost. Both rely on the same underlying techniques—dictionary, brute-force, and rule-based attacks—and both require authorization. LCPSoft, a vendor of cross-platform password auditing and recovery applications, frames its tools around exactly these use cases, including Linux user accounts and Oracle Database credentials.
Auditing vs. recovery: what actually differs
The techniques overlap almost completely. What changes is intent, timing, and who is allowed to run them.
| Dimension | Password auditing | Password recovery |
|---|---|---|
| Goal | Find weak passwords before an attacker does | Regain access to a locked or forgotten credential |
| Timing | Proactive, scheduled | Reactive, after access is lost |
| Typical owner | Security team, sysadmin, compliance auditor | Account owner, IT support |
| Success metric | Percentage of weak/reused passwords found | Whether the target credential is recovered |
| Authorization | Written scope from system owner | Proof of ownership or delegated authority |
A practical consequence: an audit that finds nothing weak is still a success, while a recovery attempt that fails is a failure. Don't conflate the two when reporting results.
How the common techniques work
All three approaches take a hash or encrypted credential as input and test candidate passwords against it. The difference is how candidates are generated.
Dictionary attacks
The tool tries passwords from a wordlist—common passwords, leaked lists, or a custom list built from the organization's vocabulary. Fast and effective against human-chosen passwords. The expected result is a quick hit rate on weak accounts and near-zero on strong ones.
Brute-force attacks
The tool enumerates every combination in a character set up to a length limit. Exhaustive but slow: each added character multiplies the search space. Useful for short passwords and PINs, impractical for long passphrases.
Rule-based (hybrid) attacks
Start from a dictionary and apply transformations—capitalization, appended digits, leetspeak substitutions, year suffixes. This mirrors how people actually "strengthen" weak passwords and catches far more real credentials than a plain dictionary.
Mask and combinator attacks
A mask specifies the pattern (for example, uppercase + lowercase + four digits), and combinator attacks join two wordlists. These sit between dictionary and brute-force in cost and coverage.
The practical takeaway: run dictionary and rule-based attacks first, then escalate to masks or brute-force only for accounts that survive. This ordering keeps audit time proportional to the value of the target.
Supported targets
LCPSoft's stated scope covers cross-platform password auditing and recovery, with Linux user accounts and Oracle Database credentials among the named targets. In practice this means:
- Linux user accounts — credentials stored in the local shadow file or validated through PAM. Auditing here tests the password policy actually enforced on the host.
- Oracle Database credentials — database user accounts, where the audit checks whether schema or application accounts use guessable passwords.
- Other systems — the same techniques apply to any credential store you are authorized to test, but confirm the tool supports the specific hash or authentication format before planning an engagement.
Verify format support before you start. A tool that handles one hash type may not handle another, and a failed run is often a format mismatch rather than a strong password.
Legal and ethical boundaries
Only audit or recover credentials on systems you own or have explicit written authorization to test. This is not a formality—unauthorized password cracking is illegal in most jurisdictions regardless of intent.
Practical rules:
- Get scope in writing: which hosts, which accounts, what time window.
- Never run recovery against third-party services; use their official account-recovery process instead.
- Store any recovered plaintext securely and destroy it once the audit or recovery is complete.
- Report findings to the system owner, not to a wider audience.
If you cannot produce authorization, stop.
Interpreting results and fixing weak passwords
Raw crack counts are not the deliverable. What matters is what the results tell you about policy and user behavior.
Look for:
- Crack rate by account group — a high rate among admin or service accounts is a priority finding.
- Time-to-crack — passwords that fall in seconds under a rule-based attack are effectively absent.
- Reuse and patterns — repeated base words or predictable suffixes signal a training problem, not just individual weak choices.
Then act:
- Force a reset on every cracked account.
- Tighten the policy: minimum length, block known-breached passwords, and rate-limit authentication attempts.
- Re-audit after the reset to confirm the fix holds.
- Move high-value accounts to multi-factor authentication so a single weak password is no longer sufficient.
The goal of an audit is not a clean report—it's a measurable reduction in the number of credentials an attacker could guess.
What Is the MESON Chess Problem Database and How Do You Use It?
MESON is a free, online database of chess problems and endgame studies hosted on the BDS Website (bstephen.me.uk), run by Brian Stephenson. According to the site, it has been free and online since 2006 and currently contains more than 256,000 items. It is the right resource if you want to look up composed problems, search for a specific composer's work, or study endgame studies — rather than browse casual tactics puzzles.
What MESON actually contains
MESON is a chess problem database, not a game database. That distinction matters:
- Chess problems are composed positions with a stipulated task (for example, "mate in 2" or "mate in 3"), usually with a unique solution the composer designed.
- Endgame studies are composed endgame positions where the task is normally to win or draw, again with a constructed, often surprising solution.
The site describes MESON as containing "more than 256,000 items," covering this kind of composed material. It does not claim to be a record of played games, so don't expect opening statistics or tournament results here.
How to access it
Access is through the BDS Website's navigation menu:
- Go to the BDS Website (bstephen.me.uk).
- Select the MESON menu item.
- You land in the database itself, where you can search and browse.
The site states MESON has been free and online since 2006. No pricing, account, or login requirement is mentioned in the available site information, so treat access as open browsing unless the site itself tells you otherwise when you arrive.
How to search for problems and studies
The site's own description does not spell out the search fields, so the practical approach is to work from what a problem database of this kind is built to answer. Typical ways to use it:
- By composer — if you already know whose problems you want (for example, work by a specific problemist), a composer search is the fastest route.
- By problem type or stipulation — mate-in-2, mate-in-3, helpmate, selfmate, study, and similar categories let you narrow to the genre you care about.
- By position — entering the pieces or a diagram position lets you find whether a given setting already exists, which is useful if you are checking a composition or studying a theme.
Because the exact field names and menu labels are not documented in the source material, verify them on the MESON search page itself rather than assuming a fixed layout. The database is implemented with MySQL and Perl (with CGI::Simple, HTML::Template and XML::LibXML) and a jQuery/Bootstrap/DataTables front end, which is consistent with a searchable, table-driven interface.
What else is on the BDS Website
MESON is one part of a larger site, and the surrounding sections are useful if you want context or related material:
| Section | What it offers |
|---|---|
| Chess Problems | Brian Stephenson's own compositions, published since 1977 and being added gradually |
| Endgame Studies | His articles on endgame studies, written in Chess since 2006 and, with Roland Ott, in Schweizerische Schachzeitung since 2014 |
| MESON | The main problem database (256,000+ items) |
| BDS Ladder | A former problem-solving competition, now closed, but the problems used are still available to try |
| IT | Notes on the software and tools used to build the site |
| Blog, Audio Drama, Photos | Non-chess personal content |
If your interest is specifically endgame studies, the Endgame Studies menu and MESON together cover both the articles and the underlying positions.
Practical tips
- Start narrow. With 256,000+ items, searching by composer or stipulation first will get you to relevant material faster than browsing.
- Use the Ladder problems for practice. The BDS Ladder is closed as a competition, but the site keeps its problems available if you want solving practice.
- Check the composer's own page for context. Stephenson has composed and published problems since 1977, and his Chess Problems section is a small, curated complement to the much larger MESON collection.
- Contact route. The site points to the BCPS Website contact page, where Stephenson is listed as magazine curator, if you need to reach him.
MESON is best understood as a specialist reference for composed chess problems and studies: free, long-running, and large enough that targeted searching beats casual browsing.
Cascadeur Free vs Paid Plans: What You Get and When to Upgrade
Cascadeur's site offers a free way to try the software and links to paid plans, but the public page does not spell out exactly what the free tier includes or where its limits sit. What it does confirm is the feature set — AI-assisted keyframe animation, AutoPosing, AutoPhysics, Ragdoll, Inbetweening, AI motion generation, rigging, retargeting, and UE Live Link — plus file compatibility with .FBX, .DAE, .GLB/.GLTF, and .USD. If you need a definitive free-vs-paid breakdown, treat the Plans page and the trial start as the two places to check, because the homepage itself doesn't publish export limits, watermark rules, or commercial-use terms.
What the public page actually tells you
The homepage positions Cascadeur as "the easiest way to animate" and invites you to "Try for free" or "Watch demo." It lists these capabilities without marking any as paid-only:
- Inbetweening — AI interpolation that generates motion between keyframes
- Ragdoll — procedural reactions to impacts, falls, and collisions
- AutoPosing — get natural poses by moving fewer control points
- Quadrupeds — rigging, AutoPosing, and one-click retargeting for four-legged animals
- AI Motion Generation — running, jumping, combat, acrobatics, idles, and more
- AutoPhysics — a character double showing a physically accurate result, for tuning secondary motion and inertia
- Rigging — drag-and-drop joints to auto-generate a rig for humanoids and quadrupeds
- Retargeting — copy/paste animation between characters regardless of skeleton or proportions
- UE Live Link — stream animation to Unreal Engine with real-time updates
It also names the solution areas: mocap cleanup, previz, animation editing, AI, video games, prototyping, and markerless mocap. Mocap cleanup is described as fixing foot sliding, knee pops, geometry penetration, poses via AutoPosing, weight via AutoPhysics, and edits via Animation Layers.
None of this is labeled "free" or "paid" on the page, so don't assume the list equals the free tier.
The two "free" paths are different things
The page shows two separate entry points, and mixing them up is the most common source of confusion:
| Entry point | What it is | What to expect |
|---|---|---|
| "Try for free" | A trial-style access route | Time-limited or feature-limited evaluation; check the Plans page for terms |
| A long-term free tier | A persistent no-cost version | Not described on the homepage; verify on the Plans page |
The trial link points to cascadeur.com/plans#trial, which means trial terms live on the pricing page, not the homepage. If your decision depends on whether you can keep using it indefinitely at no cost, that answer has to come from the Plans page — the homepage doesn't provide it.
When the free route is likely enough
Based on the feature list alone, a free or trial route is worth starting with if you are:
- Learning the workflow — testing AutoPosing and Inbetweening on a simple humanoid before committing
- Evaluating mocap cleanup — checking whether the foot-sliding and knee-pop fixes fit your pipeline
- Prototyping — blocking previz or game animation without a production deadline
- Testing file compatibility — confirming your .FBX, .DAE, .GLB/.GLTF, or .USD assets import cleanly
When upgrading becomes the real question
Upgrade pressure usually comes from constraints the homepage doesn't state, so verify each against the Plans page before paying:
- Export restrictions — if the free tier limits resolution, format, or adds a watermark, that alone can force an upgrade for client work.
- Commercial use — confirm whether free-tier output can be used in shipped products. The page doesn't say.
- Team or pipeline needs — UE Live Link and retargeting matter more in production; check whether they're gated.
- Volume of work — a single test animation and a full game's combat set have very different tolerance for limits.
A concrete example: if you're cleaning up a markerless mocap take for a game prototype and the free route lets you fix foot sliding and apply AutoPhysics, you may never need to pay. If you're delivering that animation into a commercial build and the free tier restricts export or licensing, the upgrade decision is made for you by the terms, not the feature list.
How to decide without guessing
- Open the Plans page and read the actual tier comparison — this is the only authoritative source in the material provided.
- Start the trial and test the specific features your project needs: AutoPosing, AutoPhysics, Ragdoll, Inbetweening, retargeting, and UE Live Link.
- Test an export end-to-end with your real file format (.FBX, .DAE, .GLB/.GLTF, or .USD) and inspect the output for watermarks or quality loss.
- Check the commercial-use terms in writing before shipping anything.
- Only then compare cost against the limits you actually hit.
The homepage is useful for understanding what Cascadeur does — AI-assisted keyframe animation for character work, mocap cleanup, and game pipelines. It is not a pricing document. For the free-vs-paid question specifically, the Plans page is the answer, and the trial is how you verify it against your own project.
What Are Open-Source UI Element Libraries and How Do They Differ From UI Frameworks?
An open-source UI element library is a collection of individual, ready-made interface pieces—buttons, cards, inputs, toggles, loaders—that you copy into your own project and adapt. A UI framework, by contrast, is a structured system of components, conventions, and often a theming layer that governs how your whole interface is built. The practical difference: an element library gives you a snippet; a framework gives you a way of working. If you need a polished button in ten minutes, reach for the element library. If you're building a 40-screen product with a team, you probably want the framework.
What "open-source UI element library" actually means
The term gets used loosely, so it helps to separate the parts:
- Open-source: the code is publicly available, and the license tells you what you may do with it—copy, modify, redistribute, or use commercially.
- UI element: a single, self-contained piece of interface, usually small enough to read in one sitting. A button with hover states, a pricing card, a search field.
- Library: a browsable, searchable collection of those elements, typically contributed by many different people.
On a site like Uiverse, elements are shared by a community and written in plain CSS or Tailwind. You find one you like, copy the markup and styles, paste them into your project, and adjust colors, spacing, and text to fit. There's no package to install and no build step required—which is exactly the appeal, and also the source of most of the confusion.
Element library vs. UI framework: the core differences
| Dimension | Open-source UI element library | UI framework / design system |
|---|---|---|
| Unit of reuse | A single snippet you copy | A component you import or call |
| Installation | None; paste into your code | Package install, config, sometimes a provider |
| Consistency | Depends on you; each element may look different | Enforced by shared tokens and APIs |
| Theming | Manual edits per element | Central theme/config file |
| Updates | You own the copy; no upstream updates | Version bumps bring fixes and changes |
| Accessibility | Varies per contributor; must be checked | Usually tested and documented |
| Best for | Prototypes, landing pages, small sites, one-off needs | Multi-page apps, teams, long-lived products |
| Learning curve | Low—read the CSS | Higher—learn the API and conventions |
The table isn't a verdict. It's a map of trade-offs. Element libraries win on speed and freedom; frameworks win on consistency and maintenance.
Licensing and attribution: what to check before you paste
This is where people get into trouble, and it's worth slowing down for.
- Find the license. Every element or collection should state one. Common open-source licenses include MIT, Apache-2.0, and BSD. Some projects use copyleft licenses like GPL, which can impose obligations if you redistribute your code.
- Understand what the license permits. MIT and Apache-2.0 are permissive: you can typically use the code in commercial and closed-source projects. Copyleft licenses may require you to release derivative source under the same terms.
- Check attribution requirements. Permissive licenses usually require you to keep the copyright notice and license text somewhere in your project. That's a real obligation, not a formality.
- Look for per-element terms. On community sites, the site's overall terms and the individual contributor's stated wishes may differ. If a contributor asks for credit, honor it.
- When in doubt, ask or avoid. If a snippet has no license at all, you don't have clear permission to reuse it. Treat "no license" as "not open source," even if the code is publicly visible.
This article is general information, not legal advice. For commercial products with real exposure, have someone qualified review the licenses you're relying on.
How to use a community element in your project: a practical workflow
Here's a repeatable process that avoids most of the usual mess.
1. Start from a real need, not a browsing session
Decide what you need first—"a compact primary button with a loading state"—then search. Browsing aimlessly produces a pile of pretty snippets that don't fit together.
2. Copy the smallest version that works
Take the markup and the styles. Strip anything you don't need: demo wrappers, extra animations, decorative layers. Less code means fewer surprises.
3. Convert it to your conventions
If your project uses design tokens or CSS variables, replace hard-coded values:
/* Before: hard-coded */
.button { background: #4f46e5; border-radius: 8px; }
/* After: token-based */
.button { background: var(--color-primary); border-radius: var(--radius-md); }
This one step is what keeps a copied element from looking like a foreign object in your UI.
4. Check accessibility before you ship
Community elements vary widely here. Verify at minimum:
- Keyboard focus is visible and the element is reachable by Tab.
- Color contrast meets WCAG AA (4.5:1 for normal text).
- Interactive elements use semantic HTML (
<button>, not a clickable<div>). - Form inputs have associated labels.
- Motion respects
prefers-reduced-motion.
5. Test in context
Paste it into a real page with real content. Long labels, small screens, and dark mode break more copied elements than anything else.
6. Note where it came from
Keep a short comment or an internal credits file: source, license, date. Future you—and your legal reviewer—will be grateful.
Where element libraries genuinely shine
- Prototypes and demos: you need something clickable today, not a design system.
- Landing pages and marketing sites: a handful of distinctive elements, each custom.
- Filling gaps: your framework lacks one specific component, and you don't want to build it from scratch.
- Learning: reading well-made CSS is one of the fastest ways to improve.
- Small projects: a personal site doesn't need a theming architecture.
Where they fall short
- Consistency at scale: ten elements from ten contributors rarely look like one product.
- Maintenance: you own every copy. When your design changes, you edit each one.
- Accessibility debt: you inherit whatever the contributor did or didn't do.
- No upstream fixes: a bug fixed in the original won't reach your copy.
- Integration friction: different naming conventions, different units, different assumptions about resets.
When to choose which
Choose an element library when the scope is small, the timeline is short, or you need a few distinctive pieces rather than a whole system.
Choose a framework or design system when multiple people build multiple screens over months, when consistency is a product requirement, or when accessibility and theming need to be guaranteed rather than checked.
A hybrid works well for many teams: adopt a framework for the structural components—forms, navigation, layout—and borrow individual elements for the places where you want personality. Just route every borrowed element through the same token and accessibility checks, so it lands as part of your system rather than beside it.
The short version: open-source UI element libraries are a fast, flexible way to get good-looking interface pieces into a project. They are not a substitute for a design system, and the license and accessibility details are the part worth reading carefully.
Website Overview
An established domain and managed infrastructure suggest continuity of operations and may support dependable delivery, although neither guarantees service quality. Several search or sharing settings need attention. Together they may make snippets, preview images or preferred URLs less consistent across platforms.
Domain and Registration
Registered in 2006, this domain has about 19 years of history. That suggests continuity, although ownership and purpose may have changed. Transfer-protection status is present, helping reduce the risk of unauthorized domain transfers. The domain uses the common .info extension, which is not an independent safety signal.
DNS and Email
The observed email authentication setup is incomplete: DMARC is missing. Nameservers are provided by GoDaddy, indicating managed DNS hosting. MX records point to the Microsoft 365 email service. No CNAME was found; the observed records resolve directly to addresses. DNSSEC signatures were not detected, so this additional DNS authenticity protection is not confirmed.
TLS and Certificates
The certificate uses an RSA 2048-bit public key, offering broad client compatibility. The server supplied a complete certificate chain. No organization name is present in the certificate; the available fields are consistent with domain validation. The certificate is valid for about 371 days in total, with 28 days remaining. The certificate covers the main domain and its usual www hostname.
HTTP and Browser Security
The checked browser-security headers were not detected, leaving fewer explicit browser-side safeguards. No X-Powered-By header was found, reducing one common source of backend fingerprinting information. No obvious internal addresses or debug information were found in the headers. The Server header identifies Apache without an exact version. No explicit CDN or WAF marker was found in the response headers.
Technology Stack Analysis
The public page identifies Apache without precise versions, leaving fewer clues for version-specific scanning.
Search and Social Sharing
No viewport meta tag was detected, which may affect mobile layout behavior. No homepage canonical URL was detected. If duplicate URLs exist, consolidation may be less explicit. No Open Graph metadata was detected, so social previews may depend on platform inference. The title has 21 characters, within a common display range. A meta description is present, with 140 characters.
Hosting and Email
Pages, Search and Sharing
| Meta description | KeePass is a free open source password manager. Passwords can be stored in an encrypted database, which can be unlocked with one master key. |
|---|---|
| Canonical URL | Not detected |
| Language | English (default) |
| Twitter Card | Not detected |
Unknown
robots.txt (opens in a new tab)
HTTP 404No robots.txt found
Sitemaps
0No sitemaps found
Registration details RDAP / WHOIS
| Registrar | Mesh Digital Limited |
|---|---|
| Registered | 2006-12-27 |
| Expires | 2026-12-27 |
| Domain status | client delete prohibited、client transfer prohibited、client update prohibited |
| Nameservers | ns71.domaincontrol.com、ns72.domaincontrol.com |
| DNSSEC | unsigned |
DNS records
| Type | Name | Value | TTL | Priority |
|---|---|---|---|---|
| A | keepass.info | 92.205.250.36 | 3600 | — |
| MX | keepass.info | keepass-info.mail.protection.outlook.com | 3600 | 0 |
| NS | keepass.info | ns71.domaincontrol.com | 3600 | — |
| NS | keepass.info | ns72.domaincontrol.com | 3600 | — |
| TXT | keepass.info | NETORGFT19294625.onmicrosoft.com | 3600 | — |
| TXT | keepass.info | v=spf1 include:secureserver.net mx a include:ispgateway.de -all | 3600 | — |
| DMARC | _dmarc.keepass.info | v=spf1 include:secureserver.net mx a include:ispgateway.de -all | 3600 | — |
TLS and certificates
| Assessment | Normal configuration |
|---|---|
| Supported protocols | TLSv1.2 |
| Negotiated protocol | TLSv1.2 |
| Certificate subject | www.keepass.info |
| Issuer | Starfield Technologies, Inc. |
| Valid until | 2026-10-24T12:26 · Remaining when checked: 28 days |
| Verification details | Certificate trust: Passed · Hostname match: Passed |
HTTP response headers
| Header | Value |
|---|---|
| content-type | text/html |
| cache-control | max-age=120 |
| server | Apache |
Identified technologies
Recent Updates
- Website images
- Screenshots
- Network details
- Website Technologies
- Pages and Search Information
- HTTP Response Information
- TLS and certificates
- DNS Information
- Domain Registration
- Website profile
- Website Description
- Website Name
User reviews (0)