Uninomicon

Documenting the dark corners of the Unity Engine.

User Tools

Site Tools


unity_build_information_detection

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
unity_build_information_detection [2026/02/04 06:00] 31.59.106.72unity_build_information_detection [2026/03/26 08:58] (current) – old revision restored (2026/03/19 12:35) klea
Line 1: Line 1:
-Многие жители в Новосибирске испытывают:  +====== Inspecting Information from Built Unity Players ====== 
-- медленную загрузку страниц;  + 
-- ограниченную скорость в часы пик;  +It can be useful to inspect information from built Unity players. This can be helpful to check whether a certain DLL is used by the game, or verify that the player built properly
-- сложности с настройкой оборудования.  + 
-  +===== High Level ===== 
-Доверие рекламным слоганам часто приводят к:  + 
-- дополнительным тратам на ремонт оборудования;  +  * [Android] .xapk/.apk/.so can be traversed with [[https://www.7-zip.org/|7-Zip]] 
-- новым сбоям;  +  * Unity asset file headers can be inspected with any hex editor((Even Notepad works, although only for files <500KBNotepad may struggle to open bigger files.)) 
-- невыполненным обещаниям + 
-  +===== Unity Version ===== 
-Комплексное обслуживание даёт возможность + 
-скорость без ограничений;  +Find this information in: 
-- прозрачные тарифы без скрытых платежей;  +  * ''.unity3d'' file header 
-- быструю техподдержку +  * resource file headers, for example: 
-  +    * ''unity default resources'' 
-«СибСети» в Новосибирске предлагают:  +    * ''globalgamemanagers'' 
-• пакет из 150+ ТВ каналов;  +    * ''level<number>'' 
-• поддержки 24/7 +    * ''sharedassets<number>.assets'' 
-• акционные тарифы со скидкой 50%.  +    * files with 32 characters long names using hexadecimal characters [0-9a-f] 
-• Точную оценку покрытия сети в вашем доме  +  * [Android]((since 2017.4)) ''lib/<arch>/libunity.so/.note.unity'' 
-• Подбор оптимального сочетания интернета и ТВ под ваши задачи  +  * [Windows] ''<executable>/.rsrc/version.txt'' 
-• Проверку инфраструктуры по вашему адресу  +  * [Windows] ''UnityPlayer.dll'' - Properties Details File version 
-• Грамотный монтаж ТВ приставки  + 
-• Индивидуальную помощь менеджера  +===== Used Assemblies ==== 
-• отсутствие скрытых платежей на весь срок обслуживания  +These methods work even with IL2CPP builds. 
-  + 
-<a href=internet-sibirskie-seti.ru>тарифы сибирские сетиа на интернет и телевидение</a>  +  * ''ScriptingAssemblies.json'' 
-подключение интернета сибирские сети <a href=https://www.internet-sibirskie-seti.ru>https://www.internet-sibirskie-seti.ru</a +  * Search for ''.dll'' in ''global-metadata.dat'' with hex editor. 
-<a href=http://dianalmt.com/__media__/js/netsoltrademark.php?d=https://internet-sibirskie-seti.ru/>http://lewcosupermat.org/__media__/js/netsoltrademark.php?d=https://internet-sibirskie-seti.ru/</a + 
-  +Use cases: 
-<a href=https://wm-vital.at/?cf_er=_cf_process_697af5c993c54>Домашний интернет и цифровое ТВ от «СибСети» в вашем доме</a> 566dfeb + 
 +  * We can determine URP usage by looking for ''Unity.RenderPipelines.Universal.*.dll''((e.g. ''Unity.RenderPipelines.Universal.Runtime.dll'')) 
 + 
 +===== Notes ===== 
 + 
 +  * In non-IL2CPP((ie. Mono)) builds, all code that made it into a build is also available to the end user and can be viewed with tools ((dnSpy or ILSpy for .dll files)) relatively easily. Obfuscation can mitigate this, however the most effective obfuscation methods((runtime assembly generation/loading and other methods relying on JIT)) are not compatible with IL2CPP so can't be used by developers. 
 +  * ''global-metadata.dat'' appears to contain all the method/property/field names in UTF-8 (or at least those that were used and not stripped) from all the assemblies that were used by the build.
unity_build_information_detection.1770184811.txt.gz · Last modified: 2026/02/04 06:00 by 31.59.106.72

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki