{"id":104,"date":"2025-11-30T01:47:36","date_gmt":"2025-11-30T01:47:36","guid":{"rendered":"https:\/\/windows-vps.org\/blog\/?p=104"},"modified":"2026-07-31T22:20:47","modified_gmt":"2026-07-31T22:20:47","slug":"understanding-windows-vps-security-policy-do-you-block-any-ports-from-the-windows-vps-accuweb","status":"publish","type":"post","link":"https:\/\/windows-vps.org\/blog\/understanding-windows-vps-security-policy-do-you-block-any-ports-from-the-windows-vps-accuweb\/","title":{"rendered":"Windows VPS Port Security: What to Open, What to Block, and How to Lock Down RDP"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">When you first log into a Windows VPS over Remote Desktop, the port map is effectively your server&#8217;s front door. Providers ship Windows Server with RDP listening on TCP 3389, a handful of system services bound to loopback, and a firewall that is enabled by default. Everything else is a decision you make. The difference between a server that gets probed by thousands of bots within an hour of deployment and one that stays quiet is almost always a deliberate port policy, not luck. This guide walks through which ports should be open, which should stay closed, and how to lock down RDP specifically.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What Is Open on a Fresh Windows VPS?<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">A stock Windows Server image opens only a handful of inbound ports. RDP on 3389 is the obvious one \u2014 it has to be, or you could never get in. Beyond that, most providers allow ICMP echo requests (ping) so you can confirm the machine is reachable, and some control panels add their own management ports. If you want an exact answer for your own box, run <code>netstat -an | findstr LISTENING<\/code> from an elevated PowerShell session and compare the output against the table below.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><thead><tr><th>Port<\/th><th>Service<\/th><th>Default State<\/th><th>Recommendation<\/th><\/tr><\/thead><tbody><tr><td>3389\/TCP<\/td><td>RDP (Remote Desktop)<\/td><td>Open<\/td><td>Keep, but harden (see below)<\/td><\/tr><tr><td>80\/TCP, 443\/TCP<\/td><td>HTTP\/HTTPS (IIS)<\/td><td>Closed until installed<\/td><td>Open when hosting web apps<\/td><\/tr><tr><td>1433\/TCP<\/td><td>SQL Server<\/td><td>Closed<\/td><td>Restrict to app servers or VPN only<\/td><\/tr><tr><td>445\/TCP, 139\/TCP<\/td><td>SMB \/ NetBIOS<\/td><td>Closed by firewall<\/td><td>Keep closed on public interfaces<\/td><\/tr><tr><td>ICMP<\/td><td>Ping<\/td><td>Usually allowed<\/td><td>Optional; disable if you prefer stealth<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Which Ports Your Workloads Actually Need<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Open ports in proportion to what the server does, nothing more. A Windows VPS running IIS for a .NET application needs 80 and 443 inbound, plus 3389 for administration. A SQL Server instance serving an external application should not expose 1433 to the whole internet \u2014 bind it to a private network, restrict it by source IP, or front it with a VPN. Game servers, custom VoIP software, and monitoring agents each add their own port, and each one is a new attack surface you are responsible for defending. The general rule: if a port is not in active use, it should be closed in Windows Defender Firewall.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Locking Down RDP: The Highest-Value Changes<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">RDP is the single most attacked service on any Windows VPS because it is the guaranteed way in. The default posture \u2014 port 3389 open to the world with only a password protecting it \u2014 is precisely what brute-force botnets look for. These four changes eliminate most of the risk:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><strong>Enable Network Level Authentication (NLA):<\/strong> requires authentication before a full RDP session is established, which blocks most unauthenticated scans and cuts resource consumption from connection floods.<\/li><li><strong>Set an account lockout policy:<\/strong> in Local Security Policy, configure a threshold of 5 failed attempts with a 15-minute lockout. This single setting defeats credential-stuffing scripts that hammer the login prompt.<\/li><li><strong>Change the default port:<\/strong> moving RDP from 3389 to a high, non-standard port (e.g. 54389) in the registry is not real security, but it filters out the vast majority of automated scans that only probe 3389.<\/li><li><strong>Restrict by source IP:<\/strong> if your team connects from a static office IP or a VPN endpoint, add an inbound firewall rule that only permits RDP from those addresses and blocks everything else.<\/li><\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">For multi-user teams, consider putting an RD Gateway or a VPN in front of RDP so that port 3389 is not exposed publicly at all. That architecture is more work up front, but it turns your administration channel into a controlled, auditable entry point instead of an open door. If you are comparing providers to host this setup, <a href=\"https:\/\/windows-vps.org\/#providers\">our Windows VPS comparison table<\/a> lists which hosts include RD Gateway support, network firewalls, and DDoS protection as standard features.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">SMB and Other Services: Close Them on Public Interfaces<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Windows file sharing (SMB on 445) is the service behind the most damaging Windows exploits of the last decade, including WannaCry and EternalBlue. Windows Server&#8217;s default firewall blocks SMB from external interfaces, and that default should stay. If you need file transfers between your VPS and your workstation, use SFTP, a VPN, or an encrypted tunnel rather than opening 445. The same logic applies to 135 (RPC), 139 (NetBIOS), and 389 (LDAP) \u2014 each is a legitimate service that becomes a liability the moment it is reachable from the public internet.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Provider-Level Filtering and Network Firewalls<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Port policy does not end at the guest OS. Most Windows VPS providers offer an additional network-level firewall or security group in their control panel, which filters traffic before it ever reaches your server&#8217;s NIC. Layering a network allowlist on top of the guest firewall is strictly better than relying on the OS alone: even a fully compromised or misconfigured Windows firewall cannot expose a port that the provider&#8217;s edge already blocks. Check whether your host supports IP allowlists, and if it does, put your RDP and management ports behind them.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Verifying Your Final Port Map<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">After making changes, verify from the outside rather than trusting the local view. Services like <code>canyouseeme.org<\/code> or a simple <code>Test-NetConnection<\/code> from a second machine confirm which ports are actually reachable. Inside the server, <code>Get-NetFirewallRule<\/code> in PowerShell lists every active rule so you can audit the exceptions you have created. A clean final state looks like this: only 80\/443 (if hosting), 3389 (hardened or moved), and your monitoring agent ports open from the internet.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Getting the port policy right matters more than which provider you pick \u2014 but the provider determines how much network-level protection you get for free. Budget hosts like <a href=\"https:\/\/interserver.net\/r\/1067805?url=interserver.net\/vps\/windows-vps.html\" rel=\"noreferrer noopener sponsored\" target=\"_blank\">InterServer (Windows VPS from $0.01 for the first month with code TRYINTERSERVER)<\/a> include a basic firewall, while higher-tier options such as <a href=\"https:\/\/vultr.com\/?ref=9804308-9J\" rel=\"noreferrer noopener sponsored\" target=\"_blank\">Vultr<\/a> add configurable firewall groups on every instance. For a side-by-side view of network security features across hosts, <a href=\"https:\/\/windows-vps.org\/#providers\">compare Windows VPS plans on our comparison table<\/a> before you commit.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>A critical question that users frequently ask\u2014especially those planning to run specific services like game servers, custom VoIP software, or non-standard web ports\u2014is: do you block any ports from the windows vps accuweb? This is a question about network policy, which directly impacts how you deploy and manage your applications. This tutorial will provide a deep-dive, authoritative answer, explaining the standard security practices of quality Windows VPS providers and how you can manage your server\u2019s accessibility for optimal performance and protection.<\/p>\n","protected":false},"author":1,"featured_media":105,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"iawp_total_views":0,"footnotes":""},"categories":[5],"tags":[],"class_list":["post-104","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials-guides"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v26.1 (Yoast SEO v26.1) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Windows VPS Port Security: What to Open, What to Block, and How to Lock Down RDP - Windows VPS Blog<\/title>\n<meta name=\"description\" content=\"A critical question that users frequently ask\u2014especially those planning to run specific services like game servers, custom VoIP software, or non-standard web ports\u2014is: do you block any ports from the windows vps accuweb? This is a question about network policy, which directly impacts how you deploy and manage your applications. This tutorial will provide a deep-dive, authoritative answer, explaining the standard security practices of quality Windows VPS providers and how you can manage your server\u2019s accessibility for optimal performance and protection.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/windows-vps.org\/blog\/understanding-windows-vps-security-policy-do-you-block-any-ports-from-the-windows-vps-accuweb\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Windows VPS Port Security: What to Open, What to Block, and How to Lock Down RDP\" \/>\n<meta property=\"og:description\" content=\"Windows VPS Port Security: What to Open, What to Block, and How to Lock Down RDP\" \/>\n<meta property=\"og:url\" content=\"https:\/\/windows-vps.org\/blog\/understanding-windows-vps-security-policy-do-you-block-any-ports-from-the-windows-vps-accuweb\/\" \/>\n<meta property=\"og:site_name\" content=\"Windows VPS Blog\" \/>\n<meta property=\"article:published_time\" content=\"2025-11-30T01:47:36+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-07-31T22:20:47+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/windows-vps.org\/blog\/wp-content\/uploads\/2025\/11\/kevin-ache-2JJ3wBHu4_0-unsplash.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"640\" \/>\n\t<meta property=\"og:image:height\" content=\"427\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"windows-vps\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"windows-vps\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/windows-vps.org\/blog\/understanding-windows-vps-security-policy-do-you-block-any-ports-from-the-windows-vps-accuweb\/\",\"url\":\"https:\/\/windows-vps.org\/blog\/understanding-windows-vps-security-policy-do-you-block-any-ports-from-the-windows-vps-accuweb\/\",\"name\":\"Windows VPS Port Security: What to Open, What to Block, and How to Lock Down RDP - Windows VPS Blog\",\"isPartOf\":{\"@id\":\"https:\/\/windows-vps.org\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/windows-vps.org\/blog\/understanding-windows-vps-security-policy-do-you-block-any-ports-from-the-windows-vps-accuweb\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/windows-vps.org\/blog\/understanding-windows-vps-security-policy-do-you-block-any-ports-from-the-windows-vps-accuweb\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/windows-vps.org\/blog\/wp-content\/uploads\/2025\/11\/kevin-ache-2JJ3wBHu4_0-unsplash.jpg\",\"datePublished\":\"2025-11-30T01:47:36+00:00\",\"dateModified\":\"2026-07-31T22:20:47+00:00\",\"author\":{\"@id\":\"https:\/\/windows-vps.org\/blog\/#\/schema\/person\/44caceed916d0db318aa08d5623a7a58\"},\"description\":\"A critical question that users frequently ask\u2014especially those planning to run specific services like game servers, custom VoIP software, or non-standard web ports\u2014is: do you block any ports from the windows vps accuweb? This is a question about network policy, which directly impacts how you deploy and manage your applications. This tutorial will provide a deep-dive, authoritative answer, explaining the standard security practices of quality Windows VPS providers and how you can manage your server\u2019s accessibility for optimal performance and protection.\",\"breadcrumb\":{\"@id\":\"https:\/\/windows-vps.org\/blog\/understanding-windows-vps-security-policy-do-you-block-any-ports-from-the-windows-vps-accuweb\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/windows-vps.org\/blog\/understanding-windows-vps-security-policy-do-you-block-any-ports-from-the-windows-vps-accuweb\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/windows-vps.org\/blog\/understanding-windows-vps-security-policy-do-you-block-any-ports-from-the-windows-vps-accuweb\/#primaryimage\",\"url\":\"https:\/\/windows-vps.org\/blog\/wp-content\/uploads\/2025\/11\/kevin-ache-2JJ3wBHu4_0-unsplash.jpg\",\"contentUrl\":\"https:\/\/windows-vps.org\/blog\/wp-content\/uploads\/2025\/11\/kevin-ache-2JJ3wBHu4_0-unsplash.jpg\",\"width\":640,\"height\":427},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/windows-vps.org\/blog\/understanding-windows-vps-security-policy-do-you-block-any-ports-from-the-windows-vps-accuweb\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/windows-vps.org\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Windows VPS Port Security: What to Open, What to Block, and How to Lock Down RDP\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/windows-vps.org\/blog\/#website\",\"url\":\"https:\/\/windows-vps.org\/blog\/\",\"name\":\"Windows VPS Blog\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/windows-vps.org\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/windows-vps.org\/blog\/#\/schema\/person\/44caceed916d0db318aa08d5623a7a58\",\"name\":\"windows-vps\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/windows-vps.org\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/3f2573db5afcd1a6ab9abcc5d48fc8e42584bc87ab9d98cc156e5b2097766dd9?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/3f2573db5afcd1a6ab9abcc5d48fc8e42584bc87ab9d98cc156e5b2097766dd9?s=96&d=mm&r=g\",\"caption\":\"windows-vps\"},\"sameAs\":[\"https:\/\/windows-vps.org\/blog\"],\"url\":\"https:\/\/windows-vps.org\/blog\/author\/myxiechengxuan\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Windows VPS Port Security: What to Open, What to Block, and How to Lock Down RDP - Windows VPS Blog","description":"A critical question that users frequently ask\u2014especially those planning to run specific services like game servers, custom VoIP software, or non-standard web ports\u2014is: do you block any ports from the windows vps accuweb? This is a question about network policy, which directly impacts how you deploy and manage your applications. This tutorial will provide a deep-dive, authoritative answer, explaining the standard security practices of quality Windows VPS providers and how you can manage your server\u2019s accessibility for optimal performance and protection.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/windows-vps.org\/blog\/understanding-windows-vps-security-policy-do-you-block-any-ports-from-the-windows-vps-accuweb\/","og_locale":"en_US","og_type":"article","og_title":"Windows VPS Port Security: What to Open, What to Block, and How to Lock Down RDP","og_description":"Windows VPS Port Security: What to Open, What to Block, and How to Lock Down RDP","og_url":"https:\/\/windows-vps.org\/blog\/understanding-windows-vps-security-policy-do-you-block-any-ports-from-the-windows-vps-accuweb\/","og_site_name":"Windows VPS Blog","article_published_time":"2025-11-30T01:47:36+00:00","article_modified_time":"2026-07-31T22:20:47+00:00","og_image":[{"width":640,"height":427,"url":"https:\/\/windows-vps.org\/blog\/wp-content\/uploads\/2025\/11\/kevin-ache-2JJ3wBHu4_0-unsplash.jpg","type":"image\/jpeg"}],"author":"windows-vps","twitter_card":"summary_large_image","twitter_misc":{"Written by":"windows-vps","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/windows-vps.org\/blog\/understanding-windows-vps-security-policy-do-you-block-any-ports-from-the-windows-vps-accuweb\/","url":"https:\/\/windows-vps.org\/blog\/understanding-windows-vps-security-policy-do-you-block-any-ports-from-the-windows-vps-accuweb\/","name":"Windows VPS Port Security: What to Open, What to Block, and How to Lock Down RDP - Windows VPS Blog","isPartOf":{"@id":"https:\/\/windows-vps.org\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/windows-vps.org\/blog\/understanding-windows-vps-security-policy-do-you-block-any-ports-from-the-windows-vps-accuweb\/#primaryimage"},"image":{"@id":"https:\/\/windows-vps.org\/blog\/understanding-windows-vps-security-policy-do-you-block-any-ports-from-the-windows-vps-accuweb\/#primaryimage"},"thumbnailUrl":"https:\/\/windows-vps.org\/blog\/wp-content\/uploads\/2025\/11\/kevin-ache-2JJ3wBHu4_0-unsplash.jpg","datePublished":"2025-11-30T01:47:36+00:00","dateModified":"2026-07-31T22:20:47+00:00","author":{"@id":"https:\/\/windows-vps.org\/blog\/#\/schema\/person\/44caceed916d0db318aa08d5623a7a58"},"description":"A critical question that users frequently ask\u2014especially those planning to run specific services like game servers, custom VoIP software, or non-standard web ports\u2014is: do you block any ports from the windows vps accuweb? This is a question about network policy, which directly impacts how you deploy and manage your applications. This tutorial will provide a deep-dive, authoritative answer, explaining the standard security practices of quality Windows VPS providers and how you can manage your server\u2019s accessibility for optimal performance and protection.","breadcrumb":{"@id":"https:\/\/windows-vps.org\/blog\/understanding-windows-vps-security-policy-do-you-block-any-ports-from-the-windows-vps-accuweb\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/windows-vps.org\/blog\/understanding-windows-vps-security-policy-do-you-block-any-ports-from-the-windows-vps-accuweb\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/windows-vps.org\/blog\/understanding-windows-vps-security-policy-do-you-block-any-ports-from-the-windows-vps-accuweb\/#primaryimage","url":"https:\/\/windows-vps.org\/blog\/wp-content\/uploads\/2025\/11\/kevin-ache-2JJ3wBHu4_0-unsplash.jpg","contentUrl":"https:\/\/windows-vps.org\/blog\/wp-content\/uploads\/2025\/11\/kevin-ache-2JJ3wBHu4_0-unsplash.jpg","width":640,"height":427},{"@type":"BreadcrumbList","@id":"https:\/\/windows-vps.org\/blog\/understanding-windows-vps-security-policy-do-you-block-any-ports-from-the-windows-vps-accuweb\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/windows-vps.org\/blog\/"},{"@type":"ListItem","position":2,"name":"Windows VPS Port Security: What to Open, What to Block, and How to Lock Down RDP"}]},{"@type":"WebSite","@id":"https:\/\/windows-vps.org\/blog\/#website","url":"https:\/\/windows-vps.org\/blog\/","name":"Windows VPS Blog","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/windows-vps.org\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/windows-vps.org\/blog\/#\/schema\/person\/44caceed916d0db318aa08d5623a7a58","name":"windows-vps","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/windows-vps.org\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/3f2573db5afcd1a6ab9abcc5d48fc8e42584bc87ab9d98cc156e5b2097766dd9?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/3f2573db5afcd1a6ab9abcc5d48fc8e42584bc87ab9d98cc156e5b2097766dd9?s=96&d=mm&r=g","caption":"windows-vps"},"sameAs":["https:\/\/windows-vps.org\/blog"],"url":"https:\/\/windows-vps.org\/blog\/author\/myxiechengxuan\/"}]}},"_links":{"self":[{"href":"https:\/\/windows-vps.org\/blog\/wp-json\/wp\/v2\/posts\/104","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/windows-vps.org\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/windows-vps.org\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/windows-vps.org\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/windows-vps.org\/blog\/wp-json\/wp\/v2\/comments?post=104"}],"version-history":[{"count":2,"href":"https:\/\/windows-vps.org\/blog\/wp-json\/wp\/v2\/posts\/104\/revisions"}],"predecessor-version":[{"id":504,"href":"https:\/\/windows-vps.org\/blog\/wp-json\/wp\/v2\/posts\/104\/revisions\/504"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/windows-vps.org\/blog\/wp-json\/wp\/v2\/media\/105"}],"wp:attachment":[{"href":"https:\/\/windows-vps.org\/blog\/wp-json\/wp\/v2\/media?parent=104"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/windows-vps.org\/blog\/wp-json\/wp\/v2\/categories?post=104"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/windows-vps.org\/blog\/wp-json\/wp\/v2\/tags?post=104"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}