Reputation: 397
I stumbled upon this website right here, where I can simply enter a URL and get the exact version of the TYPO3 that's beeing used. How do I determine that without having any login data? Does this work for any TYPO3-Version?
Upvotes: 0
Views: 5424
Reputation: 8052
There is an FAQ page with details on how the version is detected. Among other mechanisms, the analyzer compares source files unique to each TYPO3 version:
How does t3versions determine the TYPO3 major version?
t3versions checks the TYPO3 frontend output, the TYPO3 backend login (if available) and the existence of files (fingerprinting), which are unique for each TYPO3 major version. In order to determine unique files for each TYPO3 major version, the files of all available TYPO3 versions (8+ GB of data excluding PHP files) have been analyzed of for uniqueness.
Upvotes: 2
Reputation: 1031
Typo3 current version can be find from here Typo3 source file.
typo3/sysext/core/Classes/Information/Typo3Version.php
Like
protected const VERSION = '11.5.16';
Upvotes: 1