# Recovering Variable Names for Minified Code with Usage Contexts

**Authors:** Hieu Tran, Ngoc Tran, Son Nguyen, Hoan Nguyen, Tien Nguyen

arXiv: 1906.03488 · 2019-06-11

## TL;DR

This paper introduces JSNeat, a data-driven IR approach that effectively recovers meaningful variable names in minified JavaScript code by leveraging contextual information and large open-source code corpora.

## Contribution

JSNeat is a novel method that uses multiple context types and large datasets to improve variable name recovery accuracy and speed over existing approaches.

## Key findings

- Achieves 69.1% accuracy in variable name recovery.
- Outperforms JSNice and JSNaughty by 66.1% and 43%.
- Recovers variable names twice as fast as JSNice and four times faster than JSNaughty.

## Abstract

In modern Web technology, JavaScript (JS) code plays an important role. To avoid the exposure of original source code, the variable names in JS code deployed in the wild are often replaced by short, meaningless names, thus making the code extremely difficult to manually understand and analysis. This paper presents JSNeat, an information retrieval (IR)-based approach to recover the variable names in minified JS code. JSNeat follows a data-driven approach to recover names by searching for them in a large corpus of open-source JS code. We use three types of contexts to match a variable in given minified code against the corpus including the context of properties and roles of the variable, the context of that variable and relations with other variables under recovery, and the context of the task of the function to which the variable contributes. We performed several empirical experiments to evaluate JSNeat on the dataset of more than 322K JS files with 1M functions, and 3.5M variables with 176K unique variable names. We found that JSNeat achieves a high accuracy of 69.1%, which is the relative improvements of 66.1% and 43% over two state-of-the-art approaches JSNice and JSNaughty, respectively. The time to recover for a file or for a variable with JSNeat is twice as fast as with JSNice and 4x as fast as with JNaughty, respectively.

## Full text

_Full body text omitted from this summary view._ Fetch the complete paper as Markdown: https://tomesphere.com/paper/1906.03488/full.md

## Figures

6 figures with captions in the complete paper: https://tomesphere.com/paper/1906.03488/full.md

## References

21 references — full list in the complete paper: https://tomesphere.com/paper/1906.03488/full.md

---
Source: https://tomesphere.com/paper/1906.03488