[HT '21] DECIFE: Unmasking Human Collusion in Twitter's Blackmarket Follower Services

DECIFE: Detecting Collusive Users Involved in Blackmarket Following Services on Twitter

2021-08-25
Hridoy Sankar Dutta, Kartik Aggarwal, Tanmoy Chakraborty
Summary
Problem
Method
Results
Takeaways
Abstract

This paper introduces DECIFE, a novel framework for detecting "collusive users" on Twitter who engage with blackmarket services to artificially inflate follower counts. It employs a heterogeneous user-tweet-topic network combined with a Hierarchical Subgraph Aggregation (HSA) mechanism and a hypersphere learning objective to achieve SOTA performance in identifying these sophisticated bad actors.

Executive Summary

TL;DR: While social media platforms have become adept at purging bots, a more insidious threat remains: Collusive Users. These are real human accounts that trade follows via blackmarket "freemium" services to boost social reputation. This paper presents DECIFE, a heterogeneous graph-based framework that leverages the subtle linguistic and relational footprints of these users. By outperforming traditional supervised and semi-supervised methods with an AUC-ROC of 0.895, DECIFE proves that the secret to spotting "human-in-the-loop" fraud lies in multi-relational semantic aggregation.

Positioning: This work is one of the first to specifically target the "collusive follower" problem on Twitter using a heterogeneous network approach, moving beyond simple binary "bot vs. human" classification.

Problem & Motivation: The Asynchronous Fraud Dilemma

Why is it so hard to catch someone who buys followers?

  1. Hybrid Behavior: Unlike bots that post 1,000 tweets a minute, collusive users are real people. They follow their friends (organic) and then follow a random stranger to earn blackmarket credits (inorganic).
  2. Asynchronicity: Standard detection looks for "bursts" or "synchronized" actions. Collusive users act at their own pace, making their fraud look like a series of disjointed, legitimate choices.
  3. The Credit Economy: Blackmarkets like YouLikeHits operate a "barter" system. Users don't just pay money; they exchange labor (following others), which makes the resulting network structure complex and evasive.

Methodology: Heterogeneous Subgraph Aggregation (HSA)

The core innovation of DECIFE is treating the Twitter ecosystem as a Heterogeneous Information Network (HIN).

1. Network Construction & Decomposition

The authors build a graph with three node types (User, Tweet, Topic) and four specific relationships ():

  • : Users sharing a common follower.
  • : The "Transition User" link (User A follows Transition User X, who follows User B)—capturing the barter flow.
  • : Direct follows.
  • : Shared topical interests (linguistic similarity).

2. The HSA Architecture

DECIFE processes these subgraphs through a two-level hierarchy:

  • Subgraph Convolution: Learns local features within each relationship type.
  • Subgraph Attention: Learns which relationship is currently most indicative of collusion for a specific user node.
  • Hypersphere Learning: Instead of a simple binary classifier, the model uses a Deep SVDD objective to wrap a hypersphere around the "collusive" distribution in the embedding space.

Model Architecture Figure 1: The DECIFE pipeline—from heterogeneous graph construction to attention-based aggregation.

Experiments & Key Results

The authors curated a unique dataset of ~11k collusive users.

SOTA Comparison

DECIFE was tested against strong baselines like FakeFols and FolMarket.

  • Performance: DECIFE reached an F1-score of 0.786 and an AUC-ROC of 0.895, significantly higher than the 0.617 AUC-ROC of the best baseline.
  • Ablation Insight: Interestingly, the "1-hop" relationship () and the "direct follow" () were the most powerful individual predictors, but combining them via Attention provided the ultimate boost.

TSNE Visualizations Figure 2: TSNE plots showing how DECIFE (right) successfully clusters collusive users in the embedding space compared to raw features (left).

Critical Analysis & Conclusion

Takeaway

The study reveals a disturbing reality: 98% of detected collusive users were still active on Twitter at the time of publication. This suggests that current platform defenses are almost entirely blind to "freemium" collusion.

Limitations & Future Work

  • Sparsity: The model struggled (False Negatives) with users who had very few followers (<25), as the graph structure was too sparse to provide meaningful signal.
  • Next Steps: The authors plan to incorporate Temporal Properties—analyzing the timing of follows to distinguish between a natural "follow-back" and a credit-earning "follow-for-hire."

Final Thought: DECIFE isn't just a tool for Twitter; it provides a blueprint for any OSN (Instagram, LinkedIn, etc.) struggling with the commodification of social reputation.

Find Similar Papers

Try Our Examples

  • Search for recent studies on detecting asynchronous collusive behavior in social networks that bypass traditional bot-detection systems.
  • Which paper originally proposed the Deep SVDD (Deep One-Class Classification) objective, and how does DECIFE adapt its hypersphere boundary for social graph embeddings?
  • Explore how heterogeneous graph attention networks (HAN) have been extended to detect financial fraud or sybil attacks in other decentralized social platforms.
Contents
[HT '21] DECIFE: Unmasking Human Collusion in Twitter's Blackmarket Follower Services
1. Executive Summary
2. Problem & Motivation: The Asynchronous Fraud Dilemma
3. Methodology: Heterogeneous Subgraph Aggregation (HSA)
3.1. 1. Network Construction & Decomposition
3.2. 2. The HSA Architecture
4. Experiments & Key Results
4.1. SOTA Comparison
5. Critical Analysis & Conclusion
5.1. Takeaway
5.2. Limitations & Future Work