Wei-Zen Sun

18 papers A* 1B 1Misc 1Journal 9Unranked 6
YearRankTypeTitle / Venue / Authors
2022 conf
SIGGRAPH Asia Posters
Ting-Hua Yang, Hsien-Yuan Hsieh, Tse-Han Lin, Wei-Zen Sun, Ming Ouhyoung
2020 J jnl
J. Supercomput.
Jui-Hung Kao, Po-Huan Hsiao, Yen-Jen Oyang, Wei-Zen Sun, Chih-Hong Sun, Horng-Twu Liaw, Shin-Wen Chang
2019 A* conf
VR
Shi-Hong Liu, Neng-Hao Yu, Li-Wei Chan, Yi-Hao Peng, Wei-Zen Sun, Mike Y. Chen
2018 J jnl
Symmetry
Muammar Sadrawi, Wei-Zen Sun, Matthew Huei-Ming Ma, Yu-Ting Yeh, Maysam F. Abbod, Jiann-Shing Shieh
2018 conf
MMSports@MM
Han-Hong Lin, Ping-Hsuan Han, Kuan-Yin Lu, Chia Hung Sun, Pei Yi Lee, Yao Fu Jan, Amy Ming Sui Lee, Wei-Zen Sun, Yi-Ping Hung
2018 J jnl
Comput. Electr. Eng.
Jhe-Nan Lin, Fu-Yi Yang, Wei-Zen Sun, Meng-Han Yang
2017 J jnl
Int. J. Inf. Manag.
Jui-Hung Kao, Ta-Chien Chan, Feipei Lai, Bo-Cheng Lin, Wei-Zen Sun, Kuan-Wu Chang, Fang-Yie Leu, Jeng-Wei Lin
2016 Misc conf
ICMLC
Jhe-Nan Lin, Wei-Zen Sun, Huei-Ming Ma, Meng-Han Yang
2016 J jnl
IEEE J. Biomed. Health Informatics
Albert Y. Chen, Tsung-Yu Lu, Matthew Huei-Ming Ma, Wei-Zen Sun
2015 J jnl
J. Comput. Civ. Eng.
Hsiao-Hsuan Liu, Albert Y. Chen, Chun-Yi Dai, Wei-Zen Sun
2014 conf
EUSPN/ICTH
Wei Chen, Zih-Heng Wu, Chin-Jung Yang, Zhen-Kai Liao, Feipei Lai, Chia-Lin Hsu, Wei-Zen Sun
2013 conf
GreenCom/iThings/CPScom
Yong-Xiang Chen, Hsi-Chung Chen, Li-Xiang Chen, Jia-Wei Hu, Chuen-Kai Shie, Yu-Shan Lin, Pradnya Borade, Chau-Che Yeh, Han-Hong Lin, Siek-Siang Chiang, Yu-Chun Chen, Wei-Zen Sun, Yi-Ping Hung
2012 B conf
ASONAM
Jui-Hung Kao, Feipei Lai, Wei-Zen Sun, Chia-Ping Shen, Huei-Ming Ma, Jin-Ming Wu, Meng-Yu Chiu, Horng-Twu Liaw, Kai-Chieh Hsu, Yan-Yu Lam, Shih-Ching Cheng
2012 J jnl
Artif. Life Robotics
Yuan-Jang Jiang, Matthew Huei-Ming Ma, Wei-Zen Sun, Kuan-Wu Chang, Maysam F. Abbod, Jiann-Shing Shieh
2012 J jnl
Comput. Math. Methods Medicine
Jia-Rong Yeh, Tzu-Yu Lin, Yun Chen, Wei-Zen Sun, Maysam F. Abbod, Jiann-Shing Shieh
2010 conf
ICDM (Poster and Industry Proceedings)
Jiann-Shing Shieh, Chien-Kuang Wu, Maysam F. Abbod, Yeong-Ray Wen, Wei-Zen Sun
2008 conf
PervasiveHealth
Jiann-Shing Shieh, Chun-Yi Dai, Yeong-Ray Wen, Wei-Zen Sun
2007 J jnl
IEEE Trans. Biomed. Eng.
Jiann-Shing Shieh, Chun-Yi Dai, Yeong-Ray Wen, Wei-Zen Sun
docs/new_database_schema.md
← Index docs/new_database_schema.md markdown

## LLIL function

| Field Name | Field Type | Description |
|-------------|-------------|-------------|
| function_type | string | The inferred type of the analyzed function, determined by the FunctionTypeAnalysis module (e.g., standard, library, thunk). |
| sha256_llil | string | SHA-256 hash computed from the Low-Level Intermediate Language (LLIL) instructions of the function. |
| ssdeep_llil | string | Fuzzy hash (ssdeep) of the LLIL instruction sequence, used for similarity detection. |
| tlsh_llil | string | TLSH (Trend Locality Sensitive Hash) value of the LLIL instructions, used for approximate matching and similarity comparison. |
| instructions_types_llil | list[string] | List of unique LLIL instruction types (e.g., arithmetic, control flow, memory operations). |
| control_flow_count_llil | integer | Number of control flow instructions in the LLIL representation (e.g., branches, jumps, calls). |
| memory_access_pattern_llil | dict | Patterns of memory access operations detected in the LLIL code (e.g., loads, stores, stack operations). |
| register_usage | dict | Summary of register usage, indicating which registers are read and written in the function. |
| total_reg_reads | integer | Total number of register read operations in the LLIL code. |
| total_reg_written | integer | Total number of register write operations in the LLIL code. |
| data_references_count | integer | Number of data references in the LLIL code (e.g., constants, global variables). |
| max_block_size | integer | Size of the largest basic block in the LLIL representation, measured in number of instructions. |
| num_calls | integer | Total number of function call instructions present in the LLIL code. |
| stack_size | integer | Estimated stack size used by the function, inferred from LLIL analysis. |


## CFG level

| Field Name          | Field Type    | Description                                                                                                                               |
|---------------------|---------------|-------------------------------------------------------------------------------------------------------------------------------------------|
| block_id            | integer       | Unique identifier for the basic block within the function (block_instructions + str(block.start) + str(block.end) + str(function.start)). |
| function_address    | integer       | Starting memory address of the parent function containing this block.                                                                     |
| block_start_address | integer       | Starting address of the basic block in memory.                                                                                            |
| block_end_address   | integer       | Ending address of the basic block in memory.                                                                                              |
| block_size          | integer       | Size of the basic block in bytes (computed as end - start).                                                                               |
| instructions_count  | integer       | Number of instructions contained in the basic block.                                                                                      |
| block_instructions  | string        | MD5 hash of the block's instruction sequence, used for integrity or similarity checks.                                                    |
| predecessor_blocks  | list[u64]     | List of addresses or IDs of predecessor blocks in the control flow graph (CFG).                                                           |
| successor_blocks    | list[u64]     | List of addresses or IDs of successor blocks in the CFG.                                                                                  |
| depth               | integer       | Depth level of the block in the control flow graph, starting from the entry block.                                                        |
| position            | integer       | Sequential position or index of the block within the function’s block map.                                                                |
| branch_type         | string        | Type of branch ending the block (e.g., conditional, unconditional, call, return).                                                         |
| block_type          | string        | Classification of the block (e.g., entry, exit, loop header, regular).                                                                    |
| flags               | dict          | Metadata or attributes extracted from the block (e.g., specific behavior or conditions).                                                  |
| dominators          | list[integer] | List of block addresses or IDs that dominate this block in the control flow graph.                                                        |
| post_dominators     | list[integer] | List of block addresses or IDs that post-dominate this block in the control flow graph.                                                   |
 | measures            | list[tuples]  | List of measures to be defined                                                                                                            |

## Disassembly

| Field Name | Field Type | Description |
|-------------|-------------|-------------|
| disassembled_function_hash | string | SHA-256 hash of the disassembled function string, used as a unique identifier. |
| disassembled_function | string | The disassembled function including instruction addresses. |
| disassembled_function_no_addresses | string | The disassembled function without instruction addresses, containing only the instruction mnemonics and operands. |
| disassembled_function_name | string | The name of the analyzed function. |
| disassembled_function_address | integer | The starting memory address of the disassembled function. |
| instructions_count | integer | Total number of instructions within the disassembled function. |
| function_type | string | The inferred type of the function as determined by the FunctionTypeAnalysis module (e.g., standard, library, thunk). |
| instructions_types | list[string] | List of unique instruction types (e.g., arithmetic, logic, control flow, memory). |
| control_flow_count | integer | Number of control flow instructions (e.g., jumps, calls, returns). |
| memory_access_pattern | dict | Patterns of memory access operations detected in the function (e.g., loads, stores, stack operations). |
| register_usage | dict | Summary of register usage, showing which registers are read from or written to. |
| data_references_count | integer | Count of data references made by the function (e.g., global variables or constants). |
| max_block_size | integer | The size of the largest basic block (in number of instructions). |
| num_calls | integer | Total number of function call instructions. |
| stack_size | integer | Estimated stack size used by the function. |

## Decompilation

| Field Name | Field Type | Description |
|-------------|-------------|-------------|
| decompiled_function_hash | string | SHA-256 hash of the decompiled function code, used as a unique identifier. |
| decompiled_function | string | The decompiled function source code in high-level representation. |
| decompiled_function_name | string | The name of the decompiled function. |
| decompiled_function_prototype | string | The function prototype, including return type, name, and parameters. |
| decompiled_function_address | integer | The starting memory address of the decompiled function. |
| function_type | string | The inferred function type from the FunctionTypeAnalysis module (e.g., standard, library, thunk). |
| functions_caller | list[string] | List of functions that call this function (incoming call references). |
| functions_call | list[string] | List of functions called by this function (outgoing call references). |
| flattened_score | float | Score representing the degree of control-flow flattening detected in the function. |
| mba_score | float | Score representing the presence or intensity of mixed boolean arithmetic (MBA) obfuscation patterns. |