EDBT 2026 Demo / reviewers in the wild / expert
Qinming He
dblp:44/2784
· DBLP profile ↗
34ranked-venue papers in the field
1as first author
6since 2021 · last 2024
0000-0001-5147-7253ORCID · corroborated
Domains — venue-derived; a paper can count in several
Database Systems & Data Management · 11Data Mining & Knowledge Discovery · 10Information Retrieval & Web Search · 6 (1 first)Knowledge Engineering, Semantic Web & Information Systems · 6Other / Interdisciplinary · 1
| Year | Publication | Venue | Position |
|---|---|---|---|
| 2024 | MuFuzz: Sequence-Aware Mutation and Seed Mask Guidance for Blockchain Smart Contract FuzzingabstractAs blockchain smart contracts become more widespread and carry more valuable digital assets, they become an increasingly attractive target for attackers. Over the past few years, smart contracts have been subject to a plethora of devastating attacks, resulting in billions of dollars in financial losses. There has been a notable surge of research interest in identifying defects in smart contracts. However, existing smart contract fuzzing tools are still unsatisfactory. They struggle to screen out meaningful transaction sequences and specify critical inputs for each transaction. As a result, they can only trigger a limited range of contract states, making it difficult to unveil complicated vulnerabilities hidden in the deep state space. In this paper, we shed light on smart contract fuzzing by employing a sequence-aware mutation and seed mask guidance strategy. In particular, we first utilize data-flow-based feedback to determine transaction orders in a meaningful way and further introduce a sequence-aware mutation technique to explore deeper states. Thereafter, we design a mask-guided seed mutation strategy that biases the generated transaction inputs to hit target branches. In addition, we develop a dynamic-adaptive energy adjustment paradigm that balances the fuzzing resource allocation during a fuzzing campaign. We implement our designs into a new smart contract fuzzer named MuFuzz, and extensively evaluate it on three benchmarks. Empirical results demonstrate that MuFuzz outperforms existing tools in terms of both branch coverage and bug finding. Overall, MuFuzz achieves higher branch coverage than state-of-the-art fuzzers (up to 25%) and detects 30 % more bugs than existing bug detectors. Hanjie Wu, Zeren Du, Turan Vural, Dazhong Rong, Zheng Cao 0005, Jianhai Chen, Qinming He |
ICDE | 10 |
| 2023 | Demystifying Bitcoin Address Behavior via Graph Neural NetworksabstractBitcoin is one of the decentralized cryptocurrencies powered by a peer-to-peer blockchain network. Parties who trade in the bitcoin network are not required to disclose any personal information. Such property of anonymity, however, precipitates potential malicious transactions to a certain extent. Indeed, various illegal activities such as money laundering, dark network trading, and gambling in the bitcoin network are nothing new now. While a proliferation of work has been developed to identify malicious bitcoin transactions, the behavior analysis and classification of bitcoin addresses are largely overlooked by existing tools. In this paper, we propose BAClassifier, a tool that can automatically classify bitcoin addresses based on their behaviors. Technically, we come up with the following three key designs. First, we consider casting the transactions of the bitcoin address into an address graph structure, of which we introduce a graph node compression technique and a graph structure augmentation method to characterize a unified graph representation. Furthermore, we leverage a graph feature network to learn the graph representations of each address and generate the graph embeddings. Finally, we aggregate all graph embeddings of an address into the address-level representation, and engage in a classification model to give the address behavior classification. As a side contribution, we construct and release a large-scale annotated dataset that consists of over 2 million real-world bitcoin addresses and concerns 4 types of address behaviors. Experimental results demonstrate that our proposed framework outperforms state-of-the-art bitcoin address classifiers and existing classification models, where the precision and F1-score are 96% and 95%, respectively. Our implementation and dataset are released, hoping to inspire others. Zhengjie Huang, Yunyang Huang, Jianhai Chen, Qinming He |
ICDE | 5 |
| 2023 | CoMeta: Enhancing Meta Embeddings with Collaborative Information in Cold-Start Problem of Recommendation
Haonan Hu, Dazhong Rong, Jianhai Chen, Qinming He, Zhenguang Liu |
KSEM (3) | 4 |
| 2023 | Cross-Modality Mutual Learning for Enhancing Smart Contract Vulnerability Detection on BytecodeabstractOver the past couple of years, smart contracts have been plagued by multifarious vulnerabilities, which have led to catastrophic financial losses. Their security issues, therefore, have drawn intense attention. As countermeasures, a family of tools has been developed to identify vulnerabilities in smart contracts at the source-code level. Unfortunately, only a small fraction of smart contracts is currently open-sourced. Another spectrum of work is presented to deal with pure bytecode, but most such efforts still suffer from relatively low performance due to the inherent difficulty in restoring abundant semantics in the source code from the bytecode. Zhenguang Liu, Yifang Yin, Qinming He |
WWW | 4 |
| 2022 | FedRecAttack: Model Poisoning Attack to Federated RecommendationabstractFederated Recommendation (FR) has received con-siderable popularity and attention in the past few years. In FR, for each user, its feature vector and interaction data are kept locally on its own client thus are private to others. Without the access to above information, most existing poisoning attacks against recommender systems or federated learning lose validity. Benifiting from this characteristic, FR is commonly considered fairly secured. However, we argue that there is still possible and necessary security improvement could be made in FR. To prove our opinion, in this paper we present FedRecAttack, a model poisoning attack to FR aiming to raise the exposure ratio of target items. In most recommendation scenarios, apart from pri-vate user-item interactions (e.g., clicks, watches and purchases), some interactions are public (e.g., likes, follows and comments). Motivated by this point, in FedRecAttack we make use of the public interactions to approximate users' feature vectors, thereby attacker can generate poisoned gradients accordingly and control malicious users to upload the poisoned gradients in a well-designed way. To evaluate the effectiveness and side effects of FedRecAttack, we conduct extensive experiments on three real-world datasets of different sizes from two completely different scenarios. Experimental results demonstrate that our proposed FedRecAttack achieves the state-of-the-art effectiveness while its side effects are negligible. Moreover, even with small proportion (3%) of malicious users and small proportion (1%) of public interactions, FedRecAttack remains highly effective, which reveals that FR is more vulnerable to attack than people commonly considered. Dazhong Rong, Ruoyan Zhao, Hon Ning Yuen, Jianhai Chen, Qinming He |
ICDE | 6 |
| 2021 | Turbo: Fraud Detection in Deposit-free Leasing Service via Real-Time Behavior Network MiningabstractOnline deposit-free leasing service has witnessed rapid growth in China and shows a promising market in the future. While eliminating the requirement of a deposit does attract more users to the service, it also lowers the cost for fraudsters. Since the emergence of this service is relatively new, there are few works in literature focusing on detecting fraud transactions in it. Existing efforts mainly fall into hard-coded solutions such as block-listing or scorecard methods, which can be impotent in the face of the diverse fraud tactics, e.g., identity theft, or even suffering concept drift problem as the tactics evolve. In this paper, we contribute Turbo, an efficient graph-based anti-fraud system, to fully exploit the abundant user behavior logs in a real-time manner. Turbo is able to additionally make use of the implicit user relationships beyond the user features in the logs. To capture the user relationships, we first propose a novel algorithm to construct a time-evolving user behavior network called BN. Empirical analysis demonstrates that fraudsters in BN exhibit unique temporal aggregation and homophilic patterns, which inspires us to develop a novel heterogeneous adaptive graph neural network algorithm called HAG. Specifically, in HAG two graph operators are presented to mitigate the over-smoothing problem and make better use of the heterogeneous behavior relations in BN. Extensive experiments on a real-world dataset show that our method outperforms state-of-the-art methods significantly and can give a response in seconds for each detection request. Sihao Hu, Xuhong Zhang 0002, Junfeng Zhou, Shouling Ji, Zhao Li 0007, Qinming He, Liming Fang 0001 |
ICDE | 9 |
| 2019 | CATS: Cross-Platform E-Commerce Fraud DetectionabstractNowadays, the popularity of e-commerce has brought huge economic benefits to factories, third-party merchants, and e-commerce service providers. Driven by such huge economic benefits, malicious merchants attempt to promote items through inserting fraudulent purchases, fake review scores, and/or feedback, into them. Mitigating this threat is challenging due to the difficulty of obtaining internal e-commerce data, the variance of e-commerce services used by malicious merchants, and the reluctance of service providers in cooperation. In this paper, we present an efficient, platform-independent, and robust e-commerce fraud detection system, CATS, to detect frauds for different large-scale e-commerce platforms. We implement the design of CATS into a prototype system and evaluate this prototype on the world's popular e-commerce platform Taobao. The evaluation result on Taobao shows that CATS can achieve a high accuracy of 91% in detecting frauds. Based on this success, we then apply CATS on another large-scale e-commerce platforms, and again CATS achieves an accuracy of 96%, suggesting that CATS is very effective on real e-commerce platforms. Based on the cross-platform evaluation results, we conduct a comprehensive analysis on the reported frauds and reveal several abnormal yet interesting behaviors of those reported frauds. Our study in this paper is expected to shed light on defending against frauds for various e-commerce platforms. Haiqin Weng, Shouling Ji, Fuzheng Duan, Zhao Li 0007, Jianhai Chen, Qinming He, Ting Wang 0006 |
ICDE | 6 |
| 2018 | Online E-Commerce Fraud: A Large-Scale Detection and AnalysisabstractNowadays, e-commerce has become prevalent world-wide. With the big success of e-commerce, many malicious promotion services also rise: with the goal of increasing sales, malicious merchants attempt to promote their target items by illegally optimizing the search results using fake visits, purchases, etc. In this paper, we study the fraud detection problem on large-scale e-commerce platforms. First, we develop an efficient and scalable AnTi-Fraud system (ATF) to detect e-commerce frauds for large-scale e-commerce platforms, and implement it in parallel on a large-scale computing platform, called Open Data Processing Service (ODPS). Then, we evaluate ATF using two real large-scale e-commerce datasets (with tens of millions users and items). The results demonstrate that both the precision and the recall of ATF can achieve 0.97+, which suggests that ATF is very effective. More importantly, we deploy ATF on the Taobao platform of Alibaba, which is one of the world's largest e-commerce platforms. The evaluation results show that ATF can also achieve an accuracy of 98.16% on Taobao, which again suggests that ATF is very effective and deployable in practice. Our study in this paper is expected to shed light on defending against online frauds for practical e-commerce platforms. Haiqin Weng, Zhao Li 0007, Shouling Ji, Chen Chu, Haifeng Lu, Tianyu Du, Qinming He |
ICDE | 7 |
| 2018 | Evaluation of local community metrics: from an experimental perspective
Lianhang Ma, Kevin Chiew, Hao Huang 0001, Qinming He |
J. Intell. Inf. Syst. | 4 |
| 2017 | Group-Level Influence Maximization with Budget Constraint
Qian Yan 0001, Hao Huang 0001, Yunjun Gao, Wei Lu 0015, Qinming He |
DASFAA (1) | 5 |
| 2016 | Modeling for Noisy Labels of Crowd Workers
Qian Yan 0001, Hao Huang 0001, Yunjun Gao, Chen Ying, Qingyang Hu, Tieyun Qian, Qinming He |
APWeb (2) | 7 |
| 2016 | Mining Arbitrary Shaped Clusters and Outputting a High Quality Dendrogram
Hao Huang 0001, Shuangke Wu, Yunjun Gao, Wei Lu 0015, Qinming He |
DEXA (1) | 6 |
| 2016 | A formalized framework for incorporating expert labels in crowdsourcing environment
Qingyang Hu, Qinming He, Hao Huang 0001, Kevin Chiew, Zhenguang Liu |
J. Intell. Inf. Syst. | 2 |
| 2015 | Rare Category Exploration on Linear Time Complexity
Zhenguang Liu, Hao Huang 0001, Qinming He, Kevin Chiew, Yunjun Gao |
DASFAA (2) | 3 |
| 2015 | Rare Category Detection ForestabstractRare category detecion (RCD) aims to discover rare categories in a massive unlabeled data set with the help of a labeling oracle. A challenging task in RCD is to discover rare categories which are concealed by numerous data examples from major categories. Only a few algorithms have been proposed for this issue, most of which are on quadratic or cubic time complexity. In this paper, we propose a novel tree-based algorithm known as RCD-Forest with $$O(\varphi n \log {(n/s)})$$ time complexity and high query efficiency where n is the size of the unlabeled data set. Experimental results on both synthetic and real data sets verify the effectiveness and efficiency of our method. Haiqin Weng, Zhenguang Liu, Kevin Chiew, Qinming He |
KSEM | 4 |
| 2014 | Towards effective and efficient mining of arbitrary shaped clustersabstractMining arbitrary shaped clusters in large data sets is an open challenge in data mining. Various approaches to this problem have been proposed with high time complexity. To save computational cost, some algorithms try to shrink a data set size to a smaller amount of representative data examples. However, their user-defined shrinking ratios may significantly affect the clustering performance. In this paper, we present CLASP an effective and efficient algorithm for mining arbitrary shaped clusters. It automatically shrinks the size of a data set while effectively preserving the shape information of clusters in the data set with representative data examples. Then, it adjusts the positions of these representative data examples to enhance their intrinsic relationship and make the cluster structures more clear and distinct for clustering. Finally, it performs agglomerative clustering to identify the cluster structures with the help of a mutual k-nearest neighbors-based similarity metric called Pk. Extensive experiments on both synthetic and real data sets are conducted, and the results verify the effectiveness and efficiency of our approach. Hao Huang 0001, Yunjun Gao, Kevin Chiew, Lei Chen 0002, Qinming He |
ICDE | 5 |
| 2014 | Learning from Crowds under Experts' Supervision
Qingyang Hu, Qinming He, Hao Huang 0001, Kevin Chiew, Zhenguang Liu |
PAKDD (1) | 2 |
| 2014 | Rare Category Detection on O(dN) Time Complexity
Zhenguang Liu, Hao Huang 0001, Qinming He, Kevin Chiew, Lianhang Ma |
PAKDD (2) | 3 |
| 2014 | Recovering Missing Labels of Crowdsourcing WorkersabstractData sets collected from crowdsourcing platforms are well known for their cheap costs. But cheap costs may lead to low quality, i.e., labels may be incorrect or missing. Most of the existing work focuses on modeling the labeling errors of crowd workers, but missing labels can also cause problems when modeling the data. In this paper, we present an algorithm to predict the missing labels of crowd workers, in which we adopt thoughts from semi-supervised learning and utilize the particular consistency between crowd workers. We also define the consistency between workers by crowd labels and develop an algorithm to learn them from the data automatically. Experiments on both benchmark and real data show that our algorithm outperforms traditional semi-supervised learning algorithms in predicting missing labels, and the recovered crowd labels are capable of predicting the ground truth and reflecting real properties of crowd workers. Qingyang Hu, Kevin Chiew, Hao Huang 0001, Qinming He |
SDM | 4 |
| 2014 | Toward seed-insensitive solutions to local community detection
Lianhang Ma, Hao Huang 0001, Qinming He, Kevin Chiew, Zhenguang Liu |
J. Intell. Inf. Syst. | 3 |
| 2014 | Mining regional co-location patterns with kNNG
Feng Qian 0006, Kevin Chiew, Qinming He, Hao Huang 0001 |
J. Intell. Inf. Syst. | 3 |
| 2013 | GMAC: A Seed-Insensitive Approach to Local Community Detection
Lianhang Ma, Hao Huang 0001, Qinming He, Kevin Chiew, Jianan Wu, Yanzhe Che |
DaWaK | 3 |
| 2013 | Discovery of Regional Co-location Patterns with k-Nearest Neighbor Graph
Feng Qian 0006, Kevin Chiew, Qinming He, Hao Huang 0001, Lianhang Ma |
PAKDD (1) | 3 |
| 2013 | Commodity query by snappingabstractCommodity information such as prices and public reviews is always the concern of consumers. Helping them conveniently acquire these information as an instant reference is often of practical significance for their purchase activities. Nowadays, Web 2.0, linked data clouds, and the pervasiveness of smart hand held devices have created opportunities for this demand, i.e., users could just snap a photo of any commodity that is of interest at anytime and anywhere, and retrieve the relevant information via their Internet-linked mobile devices. Nonetheless, compared with the traditional keyword-based information retrieval, extracting the hidden information related to the commodities in photos is a much more complicated and challenging task, involving techniques such as pattern recognition, knowledge base construction, semantic comprehension, and statistic deduction. In this paper, we propose a framework to address this issue by leveraging on various techniques, and evaluate the effectiveness and efficiency of this framework with experiments on a prototype. Hao Huang 0001, Yunjun Gao, Kevin Chiew, Qinming He, Lu Chen 0001 |
SIGIR | 4 |
| 2013 | Browse with a social web directoryabstractBrowse with either web directories or social bookmarks is an important complementation to search by keywords in web information retrieval. To improve users' browse experiences and facilitate the web directory construction, in this paper, we propose a novel browse system called Social Web Directory (SWD for short) by integrating web directories and social bookmarks. In SWD, (1) web pages are automatically categorized to a hierarchical structure to be retrieved efficiently, and (2) the popular web pages, hottest tags, and expert users in each category are ranked to help users find information more conveniently. Extensive experimental results demonstrate the effectiveness of our SWD system. Hao Huang 0001, Yunjun Gao, Lu Chen 0001, Kevin Chiew, Qinming He |
SIGIR | 6 |
| 2013 | CLOVER: a faster prior-free approach to rare-category detection
Hao Huang 0001, Qinming He, Kevin Chiew, Feng Qian 0006, Lianhang Ma |
Knowl. Inf. Syst. | 2 |
| 2012 | Spatial co-location pattern discovery without thresholds
Feng Qian 0006, Qinming He, Kevin Chiew, Jiangfeng He |
Knowl. Inf. Syst. | 2 |
| 2011 | RADAR: Rare Category Detection via Computation of Boundary Degree
Hao Huang 0001, Qinming He, Jiangfeng He, Lianhang Ma |
PAKDD (2) | 2 |
| 2009 | Mining Spatial Co-location Patterns with Dynamic Neighborhood Constraint
Feng Qian 0006, Qinming He, Jiangfeng He |
ECML/PKDD (2) | 2 |
| 2006 | A Multiclass Classification Framework for Document Categorization
Qi Qiang, Qinming He |
Document Analysis Systems | 2 |
| 2006 | A Multiclass Classification Method Based on Output Design
Qi Qiang, Qinming He |
PAKDD | 2 |
| 2005 | Concept Updating with Support Vector Machines
Yangguang Liu, Qinming He |
WAIM | 2 |
| 2004 | An Incremental Updating Method for Support Vector Machines
Yangguang Liu, Qinming He |
APWeb | 4 |
| 2004 | Text Categorization Based on Domain Ontology
Qinming He, Guotao Zhao, Shenkang Wang |
WISE | 1 |