SlideShare a Scribd company logo
1 of 15
DETECTING MALICIOUS FACEBOOK APPLICATIONS
Abstract—With 20 million installs a day, third-party apps are a major reason for
the popularity and addictiveness of Facebook. Unfortunately, hackers have realized
the potential of using apps for spreading malware and spam. The problem is
already significant, as we find that at least 13% of apps in our dataset are
malicious. So far, the research community has focused on detecting malicious
posts and campaigns. In this paper, we ask the question: Given a Facebook
application, can we determine if it is malicious? Our key contribution is in
developing FRAppE—Facebook’s Rigorous Application Evaluator—arguably the
first tool focused on detecting malicious apps on Facebook. To develop FRAppE,
we use information gathered by observing the posting behavior of 111K Facebook
apps seen across 2.2 million users on Facebook. First, we identify a set of features
that help us distinguishmalicious apps from benign ones. For example, we find that
malicious apps often share names with other apps, and they typically request fewer
permissions than benign apps. Second, leveraging these distinguishing features, we
show that FRAppE can detect malicious apps with 99.5% accuracy, with no false
positives and a high true positive rate (95.9%). Finally, we explore the ecosystem
of malicious Facebook apps and identify mechanisms that these apps use to
propagate. Interestingly, we find that many apps collude and support each other; in
our dataset, we find 1584 apps enabling the viral propagation of 3723 other apps
through their posts. Long term, we see FRAppE as a step toward creating an
independent watchdog for app assessment and ranking, so as to warn Facebook
users before installing apps.
EXISTING SYSTEM:
Detecting Spam on OSNs: Gao et al. analyzed posts on the walls of 3.5 million
Facebook users and showed that 10% of links posted on Facebook walls are spam.
They also presented techniques to identify compromised accounts and spam
campaigns. In other work, Gao et al. and Rahman et al. develop efficient
techniques for online spam filtering on OSNs such as Facebook. While Gao et al.
rely on having the whole social graph as input, and so is usable only by the OSN
provider, Rahman et al. develop a third-party application for spam detection on
Facebook. Others present mechanisms for detection of spam URLs on Twitter. In
contrast to all of these efforts, rather than classifying individual URLs or posts as
spam, we focus on identifying malicious applications that are the main source of
spam on Facebook. Detecting Spam Accounts: Yang et al. and Benevenuto et al.
developed techniques to identify accounts of spammers on Twitter. Others have
proposed a honey-pot-based approach to detect spam accounts on OSNs. Yardi et
al. analyzed behavioral patterns among spam accounts in Twitter. Instead of
focusing on accounts created by spammers, our work enables detection of
malicious apps that propagate spam and malware by luring normal users to install
them. App Permission Exploitation: Chia et al. investigate risk signaling on the
privacy intrusiveness of Facebook apps and conclude that current forms of
community ratings are not reliable indicators of the privacy risks associated with
an app. Also, in keeping with our observation, they found that popular Facebook
apps tend to request more permissions. To address privacy risks for using
Facebook apps, some studies propose a new application policy and authentication
dialog. Makridakis et al. use a real application named “Photo of the Day” to
demonstrate how malicious apps on Facebook can launch distributed denial-of-
service (DDoS) attacks using the Facebook platform. King et al. conducted a
survey to understand users’ interaction with Facebook apps. Similarly, Gjoka et al.
study the user reach of popular Facebook applications. On the contrary, we
quantify the prevalence of malicious apps and develop tools to identify malicious
apps that use several features beyond the required permission set.
PROPOSED SYSTEM:
Our work makes the following key contributions.
• 13% of observed apps are malicious. We show that malicious apps are prevalent
in Facebook and reach a large number of users. We find that 13% of apps in our
dataset of 111K distinct apps are malicious. Also, 60% of malicious apps endanger
more than 100K users each by convincing them to follow the links on the posts
made by these apps, and 40% of malicious apps have over 1000 monthly active
users each.
• Malicious and benign app profiles significantly differ. We systematically profile
apps and show that malicious app profiles are significantly different than those of
benign apps. A striking observation is the “laziness” of hackers; many malicious
apps have the same name, as 8%of unique names of malicious apps are each used
by more than 10 different apps (as defined by their app IDs). Overall, we profile
apps based on two classes of features: 1) those that can be obtained on-demand
given an application’s identifier (e.g., the permissions required by the app and the
posts in the application’s profile page), and 2) others that require a cross-user view
to aggregate information across time and across apps (e.g., the posting behavior of
the app and the similarity of its name to other apps).
• The emergence of app-nets: Apps collude at massive scale. We conduct a
forensics investigation on the malicious app ecosystem to identify and quantify the
techniques used to promote malicious apps. We find that apps collude and
collaborate at a massive scale. Apps promote other apps via posts that point to the
“promoted” apps. If we describe the collusion relationship of promoting–promoted
apps as a graph, we find 1584 promoter apps that promote 3723 other apps.
• Malicious hackers impersonate applications. We were surprised to find popular
good apps, such as FarmVille and Facebook for iPhone, posting malicious posts.
On further investigation, we found a lax authentication rule in Facebook that
enabled hackers to make malicious posts appear as though they came from these
apps.
• FRAppE can detect malicious apps with 99% accuracy. We develop FRAppE
(Facebook’s Rigorous Application Evaluator) to identify malicious apps using
either using only features that can be obtained on-demand or using both on-
demand and aggregation-based app information. FRAppE Lite, which only uses
information available on-demand, can identify malicious apps with 99.0%
accuracy, with low false positives (0.1%) and high true positives (95.6%). By
adding aggregation-based information, FRAppE can detect malicious apps with
99.5% accuracy, with no false positives and higher true positives (95.9%).
Module 1
Detecting malicious apps
Having analyzed the differentiating characteristics of malicious and benign apps,
we next use these features to develop efficient classification techniques to identify
malicious Facebook applications.We present two variants of our malicious app
classifier FRAppE Lite and FRAppE. A. FRAppE Lite FRAppE Lite is a
lightweight version that makes use of only the application features available on
demand. Given a specific app ID, FRAppE Lite crawls the on-demand features for
that application and evaluates the application based on these features in real time.
We envision that FRAppE Lite can be incorporated, for example, into a browser
extension that can evaluate any Facebook application at the time when a user is
considering installing it to her profile. All of these features can be collected on
demand at the time of classification and do not require prior knowledge about the
app being evaluated. We use the Support Vector Machine (SVMclassifier for
classifying malicious apps. SVM is widely used for binary classification in security
and other disciplines.We use the D-Complete dataset for training and testing the
classifier. We use 5-fold cross validation on the D-Complete dataset for training
and testing FRAppE Lite’s classifier. In 5-fold cross validation, the dataset is
randomly divided into five segments, and we test on each segment independently
using the other four segments for training. We use accuracy, false positive (FP)
rate, and true positive (TP) rate as the three metrics to measure the classifier’s
performance. Accuracy is defined as the ratio of correctly identified apps (i.e., a
benign/malicious app is appropriately identified as benign/malicious) to the total
number of apps. False positive rate is the fraction of benign apps incorrectly
classified as malicious, and true positive rate is the fraction of benign and
malicious apps correctly classified (i.e., as benign and malicious, respectively).
Module 2
Identifying New Malicious Apps
We next train FRAppE’s classifier on the entire D-Sample dataset (for which we
have all the features and the ground truth classification) and use this classifier to
identify new malicious apps. To do so,we apply FRAppE to all the apps in ourD-
Total dataset that are not in the D-Sample dataset; for these apps, we lack
information as to whether they are malicious or benign. Of the 98 609 apps that we
test in this experiment, 8144 apps were flagged as malicious by FRAppE.
Validation: Since we lack ground truth information for these apps flagged as
malicious, we apply a host of complementary techniques to validate FRAppE’s
classification. We next describe these validation techniques; we were able to
validate 98.5% of the apps flagged by FRAppE.
Deleted From Facebook Graph: Facebook itself monitors its platform for
malicious activities, and it disables and deletes from the Facebook graph malicious
apps that it identifies. If the Facebook API (https://graph.facebook.com/appID)
returns false for a particular app ID, this indicates that the app no longer exists on
Facebook; we consider this to be indicative of blacklisting by Facebook. This
technique validates 81% of the malicious apps identified by FRAppE. Note that
Facebook’s measures for detecting malicious apps are however not sufficient; of
the 1464 malicious apps identified by FRAppE (that were validated by other
techniques below) but are still active on Facebook, 35% have been active on
Facebooksince over 4 months with 10% dating back to over 8 months.
App Name Similarity: If an application’s name exactly matches that of multiple
malicious apps in the D-Sample dataset, that app too is likely to be part of the same
campaign and therefore malicious. On the other hand, we found several malicious
apps using version numbers in their name (e.g., “Profile Watchers v4.32,” “How
long have you spent logged in? v8”). Therefore, in addition, if an app name
contains a version number at the end and the rest of its name is identical to
multiple known malicious apps that similarly use version numbers, this too is
indicative of the app likely being malicious.
Posted Link Similarity: If a URL posted by an app matches the URL posted by a
previously known malicious app, then these apps are likely part of the same spam
campaign, thus validating the former as malicious.
Typosquatting of Popular App: If an app’s name is “typosquatting” that of a
popular app, we consider it malicious. For example, we found five apps named
“FarmVile,” which are seeking to leverage the popularity of “FarmVille.” Note
that we used “typosquatting” criteria only to validate apps that were already
classified as malicious by FRAppE. We did not use this feature as standalone
criteria for classifying malicious apps in general. Moreover, it could only validate
0.5% of apps in our experiment as shown in Table VIII. Manual Verification: For
the remaining 232 apps unverified by the above techniques, we cluster them based
on name similarity among themselves and verify one app from each cluster with
cluster size greater than 4. For example, we find 83 apps named “Past Life.” This
enabled us to validate an additional 147 apps marked as malicious by FRAppE.
Module 3
Backgroundon App Cross Promotion
Cross promotion among apps, which is forbidden as per Facebook’s platform
policy [16], happens in two different ways. The promoting app can post a link that
points directly to another app, or it can post a link that points to a redirection
URL,which points dynamically to any one of a set of apps.
Posting Direct Links to Other Apps: We found evidence that malicious apps often
promote each other by making posts that redirect users to the promoter’s app page;
here, when posts a link pointing to , we refer to as the promoter and as the
promoter. Promoter apps make such posts on the walls of users who have been
tricked into installing these apps. These posts then appear in the news feed of the
victim’s friends. The post contains an appropriate message to lure users to install
the promoted app, thereby enabling the promoter to accumulate more victims. To
study such cross promotion, we crawled the URLs posted by all malicious apps in
our dataset and identified those where the landing URL corresponds to an app
installation page; we extracted the app ID of the promoter app in such cases. In this
manner, we find 692 promoter apps in our D-Sample dataset from Section II,
which promoted 1806 different apps using direct links.
Indirect App Promotion: Alternatively, hackers useWeb sites outside Facebook to
have more control and protection in promoting apps. In fact, the operation here is
more sophisticated, and it obfuscates information at multiple places. Specifically, a
post made by a malicious app includes a shortened URL, and that URL, once
resolved, points to a Web site outside Facebook [30]. This external Web site
forwards users to several different app installation pages over time.
Promotion Graph Characteristics From the app promotion dataset we collected
above, we construct a graph that has an undirected edge between any two apps that
promote each other via direct or indirect promotion, i.e., an edge between and if
the former promotes the latter. We refer to this graph as the “Promotiongraph.”
1) Different Roles in Promotion Graph: Apps act in different roles for
promotion.
2) Connectivity: Promotion graph forms large and densely connected
groups.
4) Longest Chain in Promotion: App-nets often exhibit long chains of
promotion.
5) Participating App Names in Promotion Graph: Apps with the same
nameoften are partof the same app-net.
Module 4
App Collaboration
Next,we attempt to identify themajor hacker groups involved in malicious app
collusion. For this, we consider different variants of the “Campaign graph” as
follows.
• Posted URL campaign: Two apps are part of a campaign if they post a common
URL.
• Hosted domain campaign: Two apps are part of a campaign if they redirect to the
same domain once they are installed by a user. We exclude apps that redirect to
apps.facebook. com.
• Promoted URL campaign: Two apps are part of a campaign if they are promoted
by the same indirection URL. It is important to note that, in all versions of the
Campaign graph, the nodes in the same campaign form a clique. Finally, we
construct the “Collaboration graph” by considering the union of the “Promotion
graph” and all variants of the “Campaign graph.”We find that the Collaboration
graph has 41 connected components, with the GCC containing 56% of nodes in the
graph. This potentially indicates that 56% of malicious apps in our corpus are
controlled by a single malicious hacker group. The largest five component sizes are
3617, 781, 645, 296, and 247.
Module 5
Hosting Domains
We investigate the hosting domains that enables redirection Web sites. First, we
find that most of the links in the posts are shortened URLs, and 80% of them use
the bitly shortening service. We consider all the bit.ly URLs among our dataset of
indirection links (84 out of 103) and resolve them to the full URL. We find that
one-third of these URLs are hosted on amazonaws. com.
CONCLUSION
Applications present convenient means for hackers to spread malicious content on
Facebook. However, little is understood about the characteristics of malicious apps
and how they operate. In this paper, using a large corpus of malicious Facebook
apps observed over a 9-month period, we showed thatmalicious apps differ
significantly from benign apps with respect to several features. For example,
malicious apps aremuchmore likely to share names with other apps, and they
typically request fewer permissions than benign apps. Leveraging our observations,
we developed FRAppE, an accurate classifier for detecting malicious Facebook
applications.Most interestingly, we highlighted the emergence of app-nets—large
groups of tightly connected applications that promote each other. We will continue
to dig deeper into this ecosystem of malicious apps on Facebook, and we hope that
Facebook will benefit from our recommendations for reducing the menace of
hackers on their platform.
REFERENCES
[1] C. Pring, “100 social media statistics for 2012,” 2012 [Online]. Available:
http://thesocialskinny.com/100-social-media-statistics-for-2012/
[2] Facebook, Palo Alto, CA, USA, “Facebook Opengraph API,” [Online].
Available: http://developers.facebook.com/docs/reference/api/
[3] “Wiki: Facebook platform,” 2014 [Online]. Available: http://en.
wikipedia.org/wiki/Facebook_Platform
[4] “Pr0file stalker: Rogue Facebook application,” 2012 [Online]. Available:
https://apps.facebook.com/mypagekeeper/?status=scam_report-
_fb_survey_scam_pr0file_viewer_2012_4_4
[5] “Whiich cartoon character are you—Facebook survey scam,” 2012 [Online].
Available: https://apps.facebook.com/
mypagekeeper/?status=scam_report_fb_survey_scam_whiich_
cartoon_character_are_you_2012_03_30
[6] G. Cluley, “The Pink Facebook rogue application and survey scam,” 2012
[Online]. Available: http://nakedsecurity.sophos.com/2012/02/ 27/pink-facebook-
survey-scam/
[7] D. Goldman, “Facebook tops 900 million users,” 2012 [Online]. Available:
http://money.cnn.com/2012/04/23/technology/facebookq1/ index.htm
[8] R. Naraine, “Hackers selling $25 toolkit to create malicious Facebook apps,”
2011 [Online]. Available: http://zd.net/g28HxI
[9] HackTrix, “Stay away from malicious Facebook apps,” 2013 [Online].
Available: http://bit.ly/b6gWn5
[10] M. S. Rahman, T.-K. Huang, H. V. Madhyastha, and M. Faloutsos, “Efficient
and scalable socware detection in online social networks,” in Proc. USENIX
Security, 2012, p. 32.
[11] H. Gao et al., “Detecting and characterizing social spam campaigns,” in Proc.
IMC, 2010, pp. 35–47.
[12] H. Gao, Y. Chen, K. Lee, D. Palsetia, and A. Choudhary, “Towards online
spam filtering in social networks,” in Proc. NDSS, 2012.

More Related Content

What's hot

Discovery of ranking fraud for mobile apps
Discovery of ranking fraud for mobile appsDiscovery of ranking fraud for mobile apps
Discovery of ranking fraud for mobile appsPvrtechnologies Nellore
 
Discovery of ranking fraud for mobile apps
Discovery of ranking fraud for mobile appsDiscovery of ranking fraud for mobile apps
Discovery of ranking fraud for mobile appsBoopathi Kumar
 
IRJET- Discovery of Fraud Apps Utilizing Sentiment Analysis
IRJET- Discovery of Fraud Apps Utilizing Sentiment AnalysisIRJET- Discovery of Fraud Apps Utilizing Sentiment Analysis
IRJET- Discovery of Fraud Apps Utilizing Sentiment AnalysisIRJET Journal
 
READ THIS BEFORE USING FACEAPP! FACEAPP PRIVACY CONCERNS?
READ THIS BEFORE USING FACEAPP! FACEAPP PRIVACY CONCERNS?READ THIS BEFORE USING FACEAPP! FACEAPP PRIVACY CONCERNS?
READ THIS BEFORE USING FACEAPP! FACEAPP PRIVACY CONCERNS?PrudentialInfotechLi
 
Intelligence and consumer data in light of the fb scandal
Intelligence and consumer data in light of the fb scandalIntelligence and consumer data in light of the fb scandal
Intelligence and consumer data in light of the fb scandalsawafai
 
Discovery of ranking fraud for mobile apps
Discovery of ranking fraud for mobile appsDiscovery of ranking fraud for mobile apps
Discovery of ranking fraud for mobile appsShakas Technologies
 
GOOGLE SEARCH ALGORITHM UPDATES AGAINST WEB SPAM
GOOGLE SEARCH ALGORITHM UPDATES AGAINST WEB SPAMGOOGLE SEARCH ALGORITHM UPDATES AGAINST WEB SPAM
GOOGLE SEARCH ALGORITHM UPDATES AGAINST WEB SPAMieijjournal
 
Slide Intervento Zanero Giornata del Perito 2015
Slide Intervento Zanero Giornata del Perito 2015Slide Intervento Zanero Giornata del Perito 2015
Slide Intervento Zanero Giornata del Perito 2015LegolasTheElf
 
Data Science ATL Meetup - Risk I/O Security Data Science
Data Science ATL Meetup - Risk I/O Security Data ScienceData Science ATL Meetup - Risk I/O Security Data Science
Data Science ATL Meetup - Risk I/O Security Data ScienceMichael Roytman
 
9 Tools you need as a journalist for the best newsgathering and monitoring an...
9 Tools you need as a journalist for the best newsgathering and monitoring an...9 Tools you need as a journalist for the best newsgathering and monitoring an...
9 Tools you need as a journalist for the best newsgathering and monitoring an...Angie Yasser
 
No Substitute for Ongoing Data, Quantification, Visualization, and Story-Telling
No Substitute for Ongoing Data, Quantification, Visualization, and Story-TellingNo Substitute for Ongoing Data, Quantification, Visualization, and Story-Telling
No Substitute for Ongoing Data, Quantification, Visualization, and Story-Tellingamiable_indian
 
Social Mar
Social MarSocial Mar
Social Marksawatzk
 
Algorithmic Web Spam detection - Matt Peters MozCon
Algorithmic Web Spam detection - Matt Peters MozConAlgorithmic Web Spam detection - Matt Peters MozCon
Algorithmic Web Spam detection - Matt Peters MozConmattthemathman
 
Liftoff_Mobile_Dating_Report
Liftoff_Mobile_Dating_ReportLiftoff_Mobile_Dating_Report
Liftoff_Mobile_Dating_ReportTrace Ronning
 

What's hot (19)

Discovery of ranking fraud for mobile apps
Discovery of ranking fraud for mobile appsDiscovery of ranking fraud for mobile apps
Discovery of ranking fraud for mobile apps
 
Discovery of ranking fraud for mobile apps
Discovery of ranking fraud for mobile appsDiscovery of ranking fraud for mobile apps
Discovery of ranking fraud for mobile apps
 
IJET-V3I2P6
IJET-V3I2P6IJET-V3I2P6
IJET-V3I2P6
 
Discovery of ranking fraud for mobile apps
Discovery of ranking fraud for mobile apps Discovery of ranking fraud for mobile apps
Discovery of ranking fraud for mobile apps
 
IRJET- Discovery of Fraud Apps Utilizing Sentiment Analysis
IRJET- Discovery of Fraud Apps Utilizing Sentiment AnalysisIRJET- Discovery of Fraud Apps Utilizing Sentiment Analysis
IRJET- Discovery of Fraud Apps Utilizing Sentiment Analysis
 
READ THIS BEFORE USING FACEAPP! FACEAPP PRIVACY CONCERNS?
READ THIS BEFORE USING FACEAPP! FACEAPP PRIVACY CONCERNS?READ THIS BEFORE USING FACEAPP! FACEAPP PRIVACY CONCERNS?
READ THIS BEFORE USING FACEAPP! FACEAPP PRIVACY CONCERNS?
 
Intelligence and consumer data in light of the fb scandal
Intelligence and consumer data in light of the fb scandalIntelligence and consumer data in light of the fb scandal
Intelligence and consumer data in light of the fb scandal
 
Mining apps for anomalies
Mining apps for anomaliesMining apps for anomalies
Mining apps for anomalies
 
Discovery of ranking fraud for mobile apps
Discovery of ranking fraud for mobile appsDiscovery of ranking fraud for mobile apps
Discovery of ranking fraud for mobile apps
 
GOOGLE SEARCH ALGORITHM UPDATES AGAINST WEB SPAM
GOOGLE SEARCH ALGORITHM UPDATES AGAINST WEB SPAMGOOGLE SEARCH ALGORITHM UPDATES AGAINST WEB SPAM
GOOGLE SEARCH ALGORITHM UPDATES AGAINST WEB SPAM
 
Slide Intervento Zanero Giornata del Perito 2015
Slide Intervento Zanero Giornata del Perito 2015Slide Intervento Zanero Giornata del Perito 2015
Slide Intervento Zanero Giornata del Perito 2015
 
Google play
Google playGoogle play
Google play
 
Data Science ATL Meetup - Risk I/O Security Data Science
Data Science ATL Meetup - Risk I/O Security Data ScienceData Science ATL Meetup - Risk I/O Security Data Science
Data Science ATL Meetup - Risk I/O Security Data Science
 
9 Tools you need as a journalist for the best newsgathering and monitoring an...
9 Tools you need as a journalist for the best newsgathering and monitoring an...9 Tools you need as a journalist for the best newsgathering and monitoring an...
9 Tools you need as a journalist for the best newsgathering and monitoring an...
 
No Substitute for Ongoing Data, Quantification, Visualization, and Story-Telling
No Substitute for Ongoing Data, Quantification, Visualization, and Story-TellingNo Substitute for Ongoing Data, Quantification, Visualization, and Story-Telling
No Substitute for Ongoing Data, Quantification, Visualization, and Story-Telling
 
Web Spam Techniques
Web Spam TechniquesWeb Spam Techniques
Web Spam Techniques
 
Social Mar
Social MarSocial Mar
Social Mar
 
Algorithmic Web Spam detection - Matt Peters MozCon
Algorithmic Web Spam detection - Matt Peters MozConAlgorithmic Web Spam detection - Matt Peters MozCon
Algorithmic Web Spam detection - Matt Peters MozCon
 
Liftoff_Mobile_Dating_Report
Liftoff_Mobile_Dating_ReportLiftoff_Mobile_Dating_Report
Liftoff_Mobile_Dating_Report
 

Viewers also liked

Sales and service specialist performance appraisal
Sales and service specialist performance appraisalSales and service specialist performance appraisal
Sales and service specialist performance appraisalvalikiealie08
 
Instructional technology specialist performance appraisal
Instructional technology specialist performance appraisalInstructional technology specialist performance appraisal
Instructional technology specialist performance appraisalcodyfred747
 
Law firm administrator performance appraisal
Law firm administrator performance appraisalLaw firm administrator performance appraisal
Law firm administrator performance appraisalEmileHeskey345
 
تعريف المحفظة الإستثمارية واستراتيجياتها
تعريف المحفظة الإستثمارية واستراتيجياتهاتعريف المحفظة الإستثمارية واستراتيجياتها
تعريف المحفظة الإستثمارية واستراتيجياتهاMaceen Capital
 
Dispatch assistant performance appraisal
Dispatch assistant performance appraisalDispatch assistant performance appraisal
Dispatch assistant performance appraisalRioFerdinand345
 
Top 8 campus supervisor resume samples
Top 8 campus supervisor resume samplesTop 8 campus supervisor resume samples
Top 8 campus supervisor resume samplestonychoper3705
 
Top 8 counter server resume samples
Top 8 counter server resume samplesTop 8 counter server resume samples
Top 8 counter server resume samplesguadiolamed
 
Top 8 club steward resume samples
Top 8 club steward resume samplesTop 8 club steward resume samples
Top 8 club steward resume samplesguadiolamed
 
نتيجة العدوة(1)
نتيجة العدوة(1)نتيجة العدوة(1)
نتيجة العدوة(1)Nour Elbader
 
Moore, Rebekah E_Public Work Sample_LR
Moore, Rebekah E_Public Work Sample_LRMoore, Rebekah E_Public Work Sample_LR
Moore, Rebekah E_Public Work Sample_LRRebekah E. Moore, PhD
 
PortfolioDrBarbaraCox
PortfolioDrBarbaraCoxPortfolioDrBarbaraCox
PortfolioDrBarbaraCoxBarbara Cox
 
12. Горад у ІХ - сярэдзіне ХІІІ ст. Прыняцце хрысціянства
12. Горад у ІХ - сярэдзіне ХІІІ ст. Прыняцце хрысціянства12. Горад у ІХ - сярэдзіне ХІІІ ст. Прыняцце хрысціянства
12. Горад у ІХ - сярэдзіне ХІІІ ст. Прыняцце хрысціянстваAnastasiyaF
 
Differentiating Your InfoSec Company: Getting Some “Quick Wins”
Differentiating Your InfoSec Company: Getting Some “Quick Wins”Differentiating Your InfoSec Company: Getting Some “Quick Wins”
Differentiating Your InfoSec Company: Getting Some “Quick Wins”Security Roots Ltd.
 

Viewers also liked (20)

Sales and service specialist performance appraisal
Sales and service specialist performance appraisalSales and service specialist performance appraisal
Sales and service specialist performance appraisal
 
IELTS Speaking Part2
IELTS Speaking Part2IELTS Speaking Part2
IELTS Speaking Part2
 
Instructional technology specialist performance appraisal
Instructional technology specialist performance appraisalInstructional technology specialist performance appraisal
Instructional technology specialist performance appraisal
 
صور 2017
صور 2017صور 2017
صور 2017
 
IH Poster Samples
IH Poster SamplesIH Poster Samples
IH Poster Samples
 
Law firm administrator performance appraisal
Law firm administrator performance appraisalLaw firm administrator performance appraisal
Law firm administrator performance appraisal
 
تعريف المحفظة الإستثمارية واستراتيجياتها
تعريف المحفظة الإستثمارية واستراتيجياتهاتعريف المحفظة الإستثمارية واستراتيجياتها
تعريف المحفظة الإستثمارية واستراتيجياتها
 
Dispatch assistant performance appraisal
Dispatch assistant performance appraisalDispatch assistant performance appraisal
Dispatch assistant performance appraisal
 
Top 8 campus supervisor resume samples
Top 8 campus supervisor resume samplesTop 8 campus supervisor resume samples
Top 8 campus supervisor resume samples
 
رقم واحد
رقم واحدرقم واحد
رقم واحد
 
Bateman Competition
Bateman CompetitionBateman Competition
Bateman Competition
 
Top 8 counter server resume samples
Top 8 counter server resume samplesTop 8 counter server resume samples
Top 8 counter server resume samples
 
Top 8 club steward resume samples
Top 8 club steward resume samplesTop 8 club steward resume samples
Top 8 club steward resume samples
 
Resume_Ambareesh
Resume_AmbareeshResume_Ambareesh
Resume_Ambareesh
 
نتيجة العدوة(1)
نتيجة العدوة(1)نتيجة العدوة(1)
نتيجة العدوة(1)
 
Moore, Rebekah E_Public Work Sample_LR
Moore, Rebekah E_Public Work Sample_LRMoore, Rebekah E_Public Work Sample_LR
Moore, Rebekah E_Public Work Sample_LR
 
PortfolioDrBarbaraCox
PortfolioDrBarbaraCoxPortfolioDrBarbaraCox
PortfolioDrBarbaraCox
 
12. Горад у ІХ - сярэдзіне ХІІІ ст. Прыняцце хрысціянства
12. Горад у ІХ - сярэдзіне ХІІІ ст. Прыняцце хрысціянства12. Горад у ІХ - сярэдзіне ХІІІ ст. Прыняцце хрысціянства
12. Горад у ІХ - сярэдзіне ХІІІ ст. Прыняцце хрысціянства
 
Differentiating Your InfoSec Company: Getting Some “Quick Wins”
Differentiating Your InfoSec Company: Getting Some “Quick Wins”Differentiating Your InfoSec Company: Getting Some “Quick Wins”
Differentiating Your InfoSec Company: Getting Some “Quick Wins”
 
project MIS
project MISproject MIS
project MIS
 

Similar to Detecting malicious facebook applications

identifying malevolent facebook requests
identifying malevolent facebook requestsidentifying malevolent facebook requests
identifying malevolent facebook requestsINFOGAIN PUBLICATION
 
Discovery of ranking fraud for mobile apps
Discovery of ranking fraud for mobile appsDiscovery of ranking fraud for mobile apps
Discovery of ranking fraud for mobile appsjpstudcorner
 
DISCOVERY OF RANKING FRAUD FOR MOBILE APPS
DISCOVERY OF RANKING FRAUD FOR MOBILE APPSDISCOVERY OF RANKING FRAUD FOR MOBILE APPS
DISCOVERY OF RANKING FRAUD FOR MOBILE APPSnexgentechnology
 
DISCOVERY OF RANKING FRAUD FOR MOBILE APPS - IEEE PROJECTS IN PONDICHERRY,BUL...
DISCOVERY OF RANKING FRAUD FOR MOBILE APPS - IEEE PROJECTS IN PONDICHERRY,BUL...DISCOVERY OF RANKING FRAUD FOR MOBILE APPS - IEEE PROJECTS IN PONDICHERRY,BUL...
DISCOVERY OF RANKING FRAUD FOR MOBILE APPS - IEEE PROJECTS IN PONDICHERRY,BUL...Nexgen Technology
 
Discovery of ranking fraud for mobile apps
Discovery of ranking fraud for mobile appsDiscovery of ranking fraud for mobile apps
Discovery of ranking fraud for mobile appsnexgentech15
 
Mobile apps-user interaction measurement & Apps ecosystem
Mobile apps-user interaction measurement & Apps ecosystemMobile apps-user interaction measurement & Apps ecosystem
Mobile apps-user interaction measurement & Apps ecosystemSalah Amean
 
Discovery of Ranking Fraud for Mobile Apps
Discovery of Ranking Fraud for Mobile AppsDiscovery of Ranking Fraud for Mobile Apps
Discovery of Ranking Fraud for Mobile Apps1crore projects
 
Discovery of Ranking Fraud for Mobile Apps
Discovery of Ranking Fraud for Mobile AppsDiscovery of Ranking Fraud for Mobile Apps
Discovery of Ranking Fraud for Mobile Apps1crore projects
 
Empirical analysis on iOS app Popularity
Empirical analysis on iOS app PopularityEmpirical analysis on iOS app Popularity
Empirical analysis on iOS app PopularityMin-Hsueh Tsai
 
IRJET - Discovery of Ranking Fraud for Mobile Apps
IRJET - Discovery of Ranking Fraud for Mobile AppsIRJET - Discovery of Ranking Fraud for Mobile Apps
IRJET - Discovery of Ranking Fraud for Mobile AppsIRJET Journal
 
Android Malware: Study and analysis of malware for privacy leak in ad-hoc net...
Android Malware: Study and analysis of malware for privacy leak in ad-hoc net...Android Malware: Study and analysis of malware for privacy leak in ad-hoc net...
Android Malware: Study and analysis of malware for privacy leak in ad-hoc net...IOSR Journals
 
App ecologies: Mapping apps and their support networks
App ecologies: Mapping apps and their support networksApp ecologies: Mapping apps and their support networks
App ecologies: Mapping apps and their support networkscgrltz
 
Eurecom уличили приложения для Android в тайной от пользователя активности
Eurecom уличили приложения для Android в тайной от пользователя активностиEurecom уличили приложения для Android в тайной от пользователя активности
Eurecom уличили приложения для Android в тайной от пользователя активностиSergey Ulankin
 
Review of behavior malware analysis for android
Review of behavior malware analysis for androidReview of behavior malware analysis for android
Review of behavior malware analysis for androidJPINFOTECH JAYAPRAKASH
 
ANDROID UNTRUSTED DETECTION WITH PERMISSION BASED SCORING ANALYSIS
ANDROID UNTRUSTED DETECTION WITH PERMISSION BASED SCORING ANALYSISANDROID UNTRUSTED DETECTION WITH PERMISSION BASED SCORING ANALYSIS
ANDROID UNTRUSTED DETECTION WITH PERMISSION BASED SCORING ANALYSISijitcs
 
Ponemon Institute Research Report
Ponemon Institute Research ReportPonemon Institute Research Report
Ponemon Institute Research ReportPeter Tutty
 
IRJET- Secured Analysis of Android Applications using Permission Accessing Sy...
IRJET- Secured Analysis of Android Applications using Permission Accessing Sy...IRJET- Secured Analysis of Android Applications using Permission Accessing Sy...
IRJET- Secured Analysis of Android Applications using Permission Accessing Sy...IRJET Journal
 
Insightful Research: The State of Mobile Application Insecurity
Insightful Research: The State of Mobile Application Insecurity Insightful Research: The State of Mobile Application Insecurity
Insightful Research: The State of Mobile Application Insecurity Casey Lucas
 

Similar to Detecting malicious facebook applications (20)

identifying malevolent facebook requests
identifying malevolent facebook requestsidentifying malevolent facebook requests
identifying malevolent facebook requests
 
IJET-V3I1P2
IJET-V3I1P2IJET-V3I1P2
IJET-V3I1P2
 
Discovery of ranking fraud for mobile apps
Discovery of ranking fraud for mobile appsDiscovery of ranking fraud for mobile apps
Discovery of ranking fraud for mobile apps
 
DISCOVERY OF RANKING FRAUD FOR MOBILE APPS
DISCOVERY OF RANKING FRAUD FOR MOBILE APPSDISCOVERY OF RANKING FRAUD FOR MOBILE APPS
DISCOVERY OF RANKING FRAUD FOR MOBILE APPS
 
DISCOVERY OF RANKING FRAUD FOR MOBILE APPS - IEEE PROJECTS IN PONDICHERRY,BUL...
DISCOVERY OF RANKING FRAUD FOR MOBILE APPS - IEEE PROJECTS IN PONDICHERRY,BUL...DISCOVERY OF RANKING FRAUD FOR MOBILE APPS - IEEE PROJECTS IN PONDICHERRY,BUL...
DISCOVERY OF RANKING FRAUD FOR MOBILE APPS - IEEE PROJECTS IN PONDICHERRY,BUL...
 
Discovery of ranking fraud for mobile apps
Discovery of ranking fraud for mobile appsDiscovery of ranking fraud for mobile apps
Discovery of ranking fraud for mobile apps
 
Mobile apps-user interaction measurement & Apps ecosystem
Mobile apps-user interaction measurement & Apps ecosystemMobile apps-user interaction measurement & Apps ecosystem
Mobile apps-user interaction measurement & Apps ecosystem
 
Discovery of Ranking Fraud for Mobile Apps
Discovery of Ranking Fraud for Mobile AppsDiscovery of Ranking Fraud for Mobile Apps
Discovery of Ranking Fraud for Mobile Apps
 
Discovery of Ranking Fraud for Mobile Apps
Discovery of Ranking Fraud for Mobile AppsDiscovery of Ranking Fraud for Mobile Apps
Discovery of Ranking Fraud for Mobile Apps
 
Crm updated report
Crm updated reportCrm updated report
Crm updated report
 
Empirical analysis on iOS app Popularity
Empirical analysis on iOS app PopularityEmpirical analysis on iOS app Popularity
Empirical analysis on iOS app Popularity
 
IRJET - Discovery of Ranking Fraud for Mobile Apps
IRJET - Discovery of Ranking Fraud for Mobile AppsIRJET - Discovery of Ranking Fraud for Mobile Apps
IRJET - Discovery of Ranking Fraud for Mobile Apps
 
Android Malware: Study and analysis of malware for privacy leak in ad-hoc net...
Android Malware: Study and analysis of malware for privacy leak in ad-hoc net...Android Malware: Study and analysis of malware for privacy leak in ad-hoc net...
Android Malware: Study and analysis of malware for privacy leak in ad-hoc net...
 
App ecologies: Mapping apps and their support networks
App ecologies: Mapping apps and their support networksApp ecologies: Mapping apps and their support networks
App ecologies: Mapping apps and their support networks
 
Eurecom уличили приложения для Android в тайной от пользователя активности
Eurecom уличили приложения для Android в тайной от пользователя активностиEurecom уличили приложения для Android в тайной от пользователя активности
Eurecom уличили приложения для Android в тайной от пользователя активности
 
Review of behavior malware analysis for android
Review of behavior malware analysis for androidReview of behavior malware analysis for android
Review of behavior malware analysis for android
 
ANDROID UNTRUSTED DETECTION WITH PERMISSION BASED SCORING ANALYSIS
ANDROID UNTRUSTED DETECTION WITH PERMISSION BASED SCORING ANALYSISANDROID UNTRUSTED DETECTION WITH PERMISSION BASED SCORING ANALYSIS
ANDROID UNTRUSTED DETECTION WITH PERMISSION BASED SCORING ANALYSIS
 
Ponemon Institute Research Report
Ponemon Institute Research ReportPonemon Institute Research Report
Ponemon Institute Research Report
 
IRJET- Secured Analysis of Android Applications using Permission Accessing Sy...
IRJET- Secured Analysis of Android Applications using Permission Accessing Sy...IRJET- Secured Analysis of Android Applications using Permission Accessing Sy...
IRJET- Secured Analysis of Android Applications using Permission Accessing Sy...
 
Insightful Research: The State of Mobile Application Insecurity
Insightful Research: The State of Mobile Application Insecurity Insightful Research: The State of Mobile Application Insecurity
Insightful Research: The State of Mobile Application Insecurity
 

Recently uploaded

Quarter 4 Peace-education.pptx Catch Up Friday
Quarter 4 Peace-education.pptx Catch Up FridayQuarter 4 Peace-education.pptx Catch Up Friday
Quarter 4 Peace-education.pptx Catch Up FridayMakMakNepo
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Educationpboyjonauth
 
Grade 9 Q4-MELC1-Active and Passive Voice.pptx
Grade 9 Q4-MELC1-Active and Passive Voice.pptxGrade 9 Q4-MELC1-Active and Passive Voice.pptx
Grade 9 Q4-MELC1-Active and Passive Voice.pptxChelloAnnAsuncion2
 
DATA STRUCTURE AND ALGORITHM for beginners
DATA STRUCTURE AND ALGORITHM for beginnersDATA STRUCTURE AND ALGORITHM for beginners
DATA STRUCTURE AND ALGORITHM for beginnersSabitha Banu
 
Full Stack Web Development Course for Beginners
Full Stack Web Development Course  for BeginnersFull Stack Web Development Course  for Beginners
Full Stack Web Development Course for BeginnersSabitha Banu
 
Planning a health career 4th Quarter.pptx
Planning a health career 4th Quarter.pptxPlanning a health career 4th Quarter.pptx
Planning a health career 4th Quarter.pptxLigayaBacuel1
 
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptxMULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptxAnupkumar Sharma
 
Types of Journalistic Writing Grade 8.pptx
Types of Journalistic Writing Grade 8.pptxTypes of Journalistic Writing Grade 8.pptx
Types of Journalistic Writing Grade 8.pptxEyham Joco
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxNirmalaLoungPoorunde1
 
Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Celine George
 
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdfAMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdfphamnguyenenglishnb
 
Earth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatEarth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatYousafMalik24
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17Celine George
 
Roles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceRoles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceSamikshaHamane
 
Proudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxProudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxthorishapillay1
 
ACC 2024 Chronicles. Cardiology. Exam.pdf
ACC 2024 Chronicles. Cardiology. Exam.pdfACC 2024 Chronicles. Cardiology. Exam.pdf
ACC 2024 Chronicles. Cardiology. Exam.pdfSpandanaRallapalli
 

Recently uploaded (20)

Quarter 4 Peace-education.pptx Catch Up Friday
Quarter 4 Peace-education.pptx Catch Up FridayQuarter 4 Peace-education.pptx Catch Up Friday
Quarter 4 Peace-education.pptx Catch Up Friday
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Education
 
Grade 9 Q4-MELC1-Active and Passive Voice.pptx
Grade 9 Q4-MELC1-Active and Passive Voice.pptxGrade 9 Q4-MELC1-Active and Passive Voice.pptx
Grade 9 Q4-MELC1-Active and Passive Voice.pptx
 
DATA STRUCTURE AND ALGORITHM for beginners
DATA STRUCTURE AND ALGORITHM for beginnersDATA STRUCTURE AND ALGORITHM for beginners
DATA STRUCTURE AND ALGORITHM for beginners
 
Full Stack Web Development Course for Beginners
Full Stack Web Development Course  for BeginnersFull Stack Web Development Course  for Beginners
Full Stack Web Development Course for Beginners
 
Planning a health career 4th Quarter.pptx
Planning a health career 4th Quarter.pptxPlanning a health career 4th Quarter.pptx
Planning a health career 4th Quarter.pptx
 
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptxMULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
 
Types of Journalistic Writing Grade 8.pptx
Types of Journalistic Writing Grade 8.pptxTypes of Journalistic Writing Grade 8.pptx
Types of Journalistic Writing Grade 8.pptx
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptx
 
Rapple "Scholarly Communications and the Sustainable Development Goals"
Rapple "Scholarly Communications and the Sustainable Development Goals"Rapple "Scholarly Communications and the Sustainable Development Goals"
Rapple "Scholarly Communications and the Sustainable Development Goals"
 
Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17
 
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdfAMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
 
Earth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatEarth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice great
 
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
 
Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17
 
Roles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceRoles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in Pharmacovigilance
 
9953330565 Low Rate Call Girls In Rohini Delhi NCR
9953330565 Low Rate Call Girls In Rohini  Delhi NCR9953330565 Low Rate Call Girls In Rohini  Delhi NCR
9953330565 Low Rate Call Girls In Rohini Delhi NCR
 
Proudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxProudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptx
 
ACC 2024 Chronicles. Cardiology. Exam.pdf
ACC 2024 Chronicles. Cardiology. Exam.pdfACC 2024 Chronicles. Cardiology. Exam.pdf
ACC 2024 Chronicles. Cardiology. Exam.pdf
 

Detecting malicious facebook applications

  • 1. DETECTING MALICIOUS FACEBOOK APPLICATIONS Abstract—With 20 million installs a day, third-party apps are a major reason for the popularity and addictiveness of Facebook. Unfortunately, hackers have realized the potential of using apps for spreading malware and spam. The problem is already significant, as we find that at least 13% of apps in our dataset are malicious. So far, the research community has focused on detecting malicious posts and campaigns. In this paper, we ask the question: Given a Facebook application, can we determine if it is malicious? Our key contribution is in developing FRAppE—Facebook’s Rigorous Application Evaluator—arguably the first tool focused on detecting malicious apps on Facebook. To develop FRAppE, we use information gathered by observing the posting behavior of 111K Facebook apps seen across 2.2 million users on Facebook. First, we identify a set of features that help us distinguishmalicious apps from benign ones. For example, we find that malicious apps often share names with other apps, and they typically request fewer permissions than benign apps. Second, leveraging these distinguishing features, we show that FRAppE can detect malicious apps with 99.5% accuracy, with no false positives and a high true positive rate (95.9%). Finally, we explore the ecosystem of malicious Facebook apps and identify mechanisms that these apps use to
  • 2. propagate. Interestingly, we find that many apps collude and support each other; in our dataset, we find 1584 apps enabling the viral propagation of 3723 other apps through their posts. Long term, we see FRAppE as a step toward creating an independent watchdog for app assessment and ranking, so as to warn Facebook users before installing apps. EXISTING SYSTEM: Detecting Spam on OSNs: Gao et al. analyzed posts on the walls of 3.5 million Facebook users and showed that 10% of links posted on Facebook walls are spam. They also presented techniques to identify compromised accounts and spam campaigns. In other work, Gao et al. and Rahman et al. develop efficient techniques for online spam filtering on OSNs such as Facebook. While Gao et al. rely on having the whole social graph as input, and so is usable only by the OSN provider, Rahman et al. develop a third-party application for spam detection on Facebook. Others present mechanisms for detection of spam URLs on Twitter. In contrast to all of these efforts, rather than classifying individual URLs or posts as spam, we focus on identifying malicious applications that are the main source of spam on Facebook. Detecting Spam Accounts: Yang et al. and Benevenuto et al.
  • 3. developed techniques to identify accounts of spammers on Twitter. Others have proposed a honey-pot-based approach to detect spam accounts on OSNs. Yardi et al. analyzed behavioral patterns among spam accounts in Twitter. Instead of focusing on accounts created by spammers, our work enables detection of malicious apps that propagate spam and malware by luring normal users to install them. App Permission Exploitation: Chia et al. investigate risk signaling on the privacy intrusiveness of Facebook apps and conclude that current forms of community ratings are not reliable indicators of the privacy risks associated with an app. Also, in keeping with our observation, they found that popular Facebook apps tend to request more permissions. To address privacy risks for using Facebook apps, some studies propose a new application policy and authentication dialog. Makridakis et al. use a real application named “Photo of the Day” to demonstrate how malicious apps on Facebook can launch distributed denial-of- service (DDoS) attacks using the Facebook platform. King et al. conducted a survey to understand users’ interaction with Facebook apps. Similarly, Gjoka et al. study the user reach of popular Facebook applications. On the contrary, we quantify the prevalence of malicious apps and develop tools to identify malicious apps that use several features beyond the required permission set.
  • 4. PROPOSED SYSTEM: Our work makes the following key contributions. • 13% of observed apps are malicious. We show that malicious apps are prevalent in Facebook and reach a large number of users. We find that 13% of apps in our dataset of 111K distinct apps are malicious. Also, 60% of malicious apps endanger more than 100K users each by convincing them to follow the links on the posts made by these apps, and 40% of malicious apps have over 1000 monthly active users each. • Malicious and benign app profiles significantly differ. We systematically profile apps and show that malicious app profiles are significantly different than those of benign apps. A striking observation is the “laziness” of hackers; many malicious apps have the same name, as 8%of unique names of malicious apps are each used by more than 10 different apps (as defined by their app IDs). Overall, we profile apps based on two classes of features: 1) those that can be obtained on-demand given an application’s identifier (e.g., the permissions required by the app and the posts in the application’s profile page), and 2) others that require a cross-user view to aggregate information across time and across apps (e.g., the posting behavior of the app and the similarity of its name to other apps).
  • 5. • The emergence of app-nets: Apps collude at massive scale. We conduct a forensics investigation on the malicious app ecosystem to identify and quantify the techniques used to promote malicious apps. We find that apps collude and collaborate at a massive scale. Apps promote other apps via posts that point to the “promoted” apps. If we describe the collusion relationship of promoting–promoted apps as a graph, we find 1584 promoter apps that promote 3723 other apps. • Malicious hackers impersonate applications. We were surprised to find popular good apps, such as FarmVille and Facebook for iPhone, posting malicious posts. On further investigation, we found a lax authentication rule in Facebook that enabled hackers to make malicious posts appear as though they came from these apps. • FRAppE can detect malicious apps with 99% accuracy. We develop FRAppE (Facebook’s Rigorous Application Evaluator) to identify malicious apps using either using only features that can be obtained on-demand or using both on- demand and aggregation-based app information. FRAppE Lite, which only uses information available on-demand, can identify malicious apps with 99.0% accuracy, with low false positives (0.1%) and high true positives (95.6%). By adding aggregation-based information, FRAppE can detect malicious apps with 99.5% accuracy, with no false positives and higher true positives (95.9%).
  • 6. Module 1 Detecting malicious apps Having analyzed the differentiating characteristics of malicious and benign apps, we next use these features to develop efficient classification techniques to identify malicious Facebook applications.We present two variants of our malicious app classifier FRAppE Lite and FRAppE. A. FRAppE Lite FRAppE Lite is a lightweight version that makes use of only the application features available on demand. Given a specific app ID, FRAppE Lite crawls the on-demand features for that application and evaluates the application based on these features in real time. We envision that FRAppE Lite can be incorporated, for example, into a browser extension that can evaluate any Facebook application at the time when a user is considering installing it to her profile. All of these features can be collected on demand at the time of classification and do not require prior knowledge about the app being evaluated. We use the Support Vector Machine (SVMclassifier for classifying malicious apps. SVM is widely used for binary classification in security and other disciplines.We use the D-Complete dataset for training and testing the classifier. We use 5-fold cross validation on the D-Complete dataset for training and testing FRAppE Lite’s classifier. In 5-fold cross validation, the dataset is randomly divided into five segments, and we test on each segment independently using the other four segments for training. We use accuracy, false positive (FP)
  • 7. rate, and true positive (TP) rate as the three metrics to measure the classifier’s performance. Accuracy is defined as the ratio of correctly identified apps (i.e., a benign/malicious app is appropriately identified as benign/malicious) to the total number of apps. False positive rate is the fraction of benign apps incorrectly classified as malicious, and true positive rate is the fraction of benign and malicious apps correctly classified (i.e., as benign and malicious, respectively). Module 2 Identifying New Malicious Apps We next train FRAppE’s classifier on the entire D-Sample dataset (for which we have all the features and the ground truth classification) and use this classifier to identify new malicious apps. To do so,we apply FRAppE to all the apps in ourD- Total dataset that are not in the D-Sample dataset; for these apps, we lack information as to whether they are malicious or benign. Of the 98 609 apps that we test in this experiment, 8144 apps were flagged as malicious by FRAppE. Validation: Since we lack ground truth information for these apps flagged as malicious, we apply a host of complementary techniques to validate FRAppE’s classification. We next describe these validation techniques; we were able to validate 98.5% of the apps flagged by FRAppE. Deleted From Facebook Graph: Facebook itself monitors its platform for malicious activities, and it disables and deletes from the Facebook graph malicious
  • 8. apps that it identifies. If the Facebook API (https://graph.facebook.com/appID) returns false for a particular app ID, this indicates that the app no longer exists on Facebook; we consider this to be indicative of blacklisting by Facebook. This technique validates 81% of the malicious apps identified by FRAppE. Note that Facebook’s measures for detecting malicious apps are however not sufficient; of the 1464 malicious apps identified by FRAppE (that were validated by other techniques below) but are still active on Facebook, 35% have been active on Facebooksince over 4 months with 10% dating back to over 8 months. App Name Similarity: If an application’s name exactly matches that of multiple malicious apps in the D-Sample dataset, that app too is likely to be part of the same campaign and therefore malicious. On the other hand, we found several malicious apps using version numbers in their name (e.g., “Profile Watchers v4.32,” “How long have you spent logged in? v8”). Therefore, in addition, if an app name contains a version number at the end and the rest of its name is identical to multiple known malicious apps that similarly use version numbers, this too is indicative of the app likely being malicious. Posted Link Similarity: If a URL posted by an app matches the URL posted by a previously known malicious app, then these apps are likely part of the same spam campaign, thus validating the former as malicious.
  • 9. Typosquatting of Popular App: If an app’s name is “typosquatting” that of a popular app, we consider it malicious. For example, we found five apps named “FarmVile,” which are seeking to leverage the popularity of “FarmVille.” Note that we used “typosquatting” criteria only to validate apps that were already classified as malicious by FRAppE. We did not use this feature as standalone criteria for classifying malicious apps in general. Moreover, it could only validate 0.5% of apps in our experiment as shown in Table VIII. Manual Verification: For the remaining 232 apps unverified by the above techniques, we cluster them based on name similarity among themselves and verify one app from each cluster with cluster size greater than 4. For example, we find 83 apps named “Past Life.” This enabled us to validate an additional 147 apps marked as malicious by FRAppE. Module 3 Backgroundon App Cross Promotion Cross promotion among apps, which is forbidden as per Facebook’s platform policy [16], happens in two different ways. The promoting app can post a link that points directly to another app, or it can post a link that points to a redirection URL,which points dynamically to any one of a set of apps. Posting Direct Links to Other Apps: We found evidence that malicious apps often promote each other by making posts that redirect users to the promoter’s app page;
  • 10. here, when posts a link pointing to , we refer to as the promoter and as the promoter. Promoter apps make such posts on the walls of users who have been tricked into installing these apps. These posts then appear in the news feed of the victim’s friends. The post contains an appropriate message to lure users to install the promoted app, thereby enabling the promoter to accumulate more victims. To study such cross promotion, we crawled the URLs posted by all malicious apps in our dataset and identified those where the landing URL corresponds to an app installation page; we extracted the app ID of the promoter app in such cases. In this manner, we find 692 promoter apps in our D-Sample dataset from Section II, which promoted 1806 different apps using direct links. Indirect App Promotion: Alternatively, hackers useWeb sites outside Facebook to have more control and protection in promoting apps. In fact, the operation here is more sophisticated, and it obfuscates information at multiple places. Specifically, a post made by a malicious app includes a shortened URL, and that URL, once resolved, points to a Web site outside Facebook [30]. This external Web site forwards users to several different app installation pages over time. Promotion Graph Characteristics From the app promotion dataset we collected above, we construct a graph that has an undirected edge between any two apps that promote each other via direct or indirect promotion, i.e., an edge between and if the former promotes the latter. We refer to this graph as the “Promotiongraph.”
  • 11. 1) Different Roles in Promotion Graph: Apps act in different roles for promotion. 2) Connectivity: Promotion graph forms large and densely connected groups. 4) Longest Chain in Promotion: App-nets often exhibit long chains of promotion. 5) Participating App Names in Promotion Graph: Apps with the same nameoften are partof the same app-net. Module 4 App Collaboration Next,we attempt to identify themajor hacker groups involved in malicious app collusion. For this, we consider different variants of the “Campaign graph” as follows. • Posted URL campaign: Two apps are part of a campaign if they post a common URL. • Hosted domain campaign: Two apps are part of a campaign if they redirect to the same domain once they are installed by a user. We exclude apps that redirect to apps.facebook. com.
  • 12. • Promoted URL campaign: Two apps are part of a campaign if they are promoted by the same indirection URL. It is important to note that, in all versions of the Campaign graph, the nodes in the same campaign form a clique. Finally, we construct the “Collaboration graph” by considering the union of the “Promotion graph” and all variants of the “Campaign graph.”We find that the Collaboration graph has 41 connected components, with the GCC containing 56% of nodes in the graph. This potentially indicates that 56% of malicious apps in our corpus are controlled by a single malicious hacker group. The largest five component sizes are 3617, 781, 645, 296, and 247. Module 5 Hosting Domains We investigate the hosting domains that enables redirection Web sites. First, we find that most of the links in the posts are shortened URLs, and 80% of them use the bitly shortening service. We consider all the bit.ly URLs among our dataset of indirection links (84 out of 103) and resolve them to the full URL. We find that one-third of these URLs are hosted on amazonaws. com. CONCLUSION Applications present convenient means for hackers to spread malicious content on Facebook. However, little is understood about the characteristics of malicious apps
  • 13. and how they operate. In this paper, using a large corpus of malicious Facebook apps observed over a 9-month period, we showed thatmalicious apps differ significantly from benign apps with respect to several features. For example, malicious apps aremuchmore likely to share names with other apps, and they typically request fewer permissions than benign apps. Leveraging our observations, we developed FRAppE, an accurate classifier for detecting malicious Facebook applications.Most interestingly, we highlighted the emergence of app-nets—large groups of tightly connected applications that promote each other. We will continue to dig deeper into this ecosystem of malicious apps on Facebook, and we hope that Facebook will benefit from our recommendations for reducing the menace of hackers on their platform. REFERENCES [1] C. Pring, “100 social media statistics for 2012,” 2012 [Online]. Available: http://thesocialskinny.com/100-social-media-statistics-for-2012/ [2] Facebook, Palo Alto, CA, USA, “Facebook Opengraph API,” [Online]. Available: http://developers.facebook.com/docs/reference/api/ [3] “Wiki: Facebook platform,” 2014 [Online]. Available: http://en. wikipedia.org/wiki/Facebook_Platform
  • 14. [4] “Pr0file stalker: Rogue Facebook application,” 2012 [Online]. Available: https://apps.facebook.com/mypagekeeper/?status=scam_report- _fb_survey_scam_pr0file_viewer_2012_4_4 [5] “Whiich cartoon character are you—Facebook survey scam,” 2012 [Online]. Available: https://apps.facebook.com/ mypagekeeper/?status=scam_report_fb_survey_scam_whiich_ cartoon_character_are_you_2012_03_30 [6] G. Cluley, “The Pink Facebook rogue application and survey scam,” 2012 [Online]. Available: http://nakedsecurity.sophos.com/2012/02/ 27/pink-facebook- survey-scam/ [7] D. Goldman, “Facebook tops 900 million users,” 2012 [Online]. Available: http://money.cnn.com/2012/04/23/technology/facebookq1/ index.htm [8] R. Naraine, “Hackers selling $25 toolkit to create malicious Facebook apps,” 2011 [Online]. Available: http://zd.net/g28HxI [9] HackTrix, “Stay away from malicious Facebook apps,” 2013 [Online]. Available: http://bit.ly/b6gWn5 [10] M. S. Rahman, T.-K. Huang, H. V. Madhyastha, and M. Faloutsos, “Efficient and scalable socware detection in online social networks,” in Proc. USENIX Security, 2012, p. 32.
  • 15. [11] H. Gao et al., “Detecting and characterizing social spam campaigns,” in Proc. IMC, 2010, pp. 35–47. [12] H. Gao, Y. Chen, K. Lee, D. Palsetia, and A. Choudhary, “Towards online spam filtering in social networks,” in Proc. NDSS, 2012.