Skip to content

Commit 70897fc

Browse files
committed
πŸš€ RELEASE: v1.4.2
1 parent e19aa8b commit 70897fc

File tree

3 files changed

+15
-2
lines changed

3 files changed

+15
-2
lines changed

β€Žchangelog.mdβ€Ž

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Changelog
22

3+
## [1.4.2] - 2026-02-08
4+
5+
### Added
6+
7+
- **Custom DNS Server** - New "Advanced Options" panel below the scan input lets you specify a custom DNS server (e.g. `8.8.8.8` or `ns1.oldprovider.com`) for all DNS queries during a scan. Useful for checking records against a specific nameserver during migrations.
8+
- **DNS Server URL Parameter** - Custom DNS server can be set via `?dns_server=` URL parameter, and is persisted in the URL when set.
9+
- **DNS Server Indicator** - When a scan uses a custom DNS server, a banner is displayed in the results showing which server was used.
10+
- **Minnow CMS Detection** - Added detection for the Minnow CMS via the `X-Generator` response header, including version extraction.
11+
12+
### Fixed
13+
14+
- **Missing Response Headers** - Switched HTTP header fetching from `curl -I` (HEAD request) to `curl -D - -o /dev/null` (GET request with discarded body). Many servers return fewer headers for HEAD requests, causing headers like `set-cookie`, `report-to`, `nel`, and `alt-svc` to be missed.
15+
316
## [1.4.1] - 2026-01-28
417

518
### Added

β€Žengine.phpβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
}
1717

1818
// --- PLUGIN VERSION ---
19-
define('PERISCOPE_VERSION', '1.4.1');
19+
define('PERISCOPE_VERSION', '1.4.2');
2020

2121
// --- AUTOLOADER ---
2222
spl_autoload_register(function ($class) {

β€Žindex.htmlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1843,7 +1843,7 @@ <h3 class="text-lg font-medium text-slate-900 dark:text-white flex items-center
18431843
showFaviconPreview: false,
18441844
showMissingMetadata: false,
18451845
showPluginsModal: false,
1846-
version: '1.4.1',
1846+
version: '1.4.2',
18471847
pendingDeepLink: null,
18481848
}
18491849
},

0 commit comments

Comments
Β (0)