Clickjacking Revisited a Perceptual View of UI Security

Total Page:16

File Type:pdf, Size:1020Kb

Clickjacking Revisited a Perceptual View of UI Security Clickjacking Revisited A Perceptual View of UI Security Devdatta Akhawe, Warren He, Zhiwei Li, Reza Moazzezi, Dawn Song UC Berkeley Abstract they look like legitimate user actions to the application Clickjacking is a powerful attack against modern web backend. applications. While browser primitives like X-Frame- Current clickjacking defenses such as X-Frame- Options provide a rigorous defense for simple applica- Options sacrifice functionality for security. Using tions, mashups such as social media widgets require se- X-Frame-Options, an application can request the browser cure user interaction while embedded in an untrusted web- never to load a particular page in a frame. This is not a page. Motivated by these application scenarios, the W3C practical solution for third-party mashup applications UI safety specification proposes new browser primitives such as Facebook Like buttons. Instead, Facebook mitigates such attacks by requiring a second user click to provide a strong defense against clickjacking attacks 1 on embedded widgets. We investigate whether these pro- on a new window; again, sacrificing functionality for posed primitives provide requisite security against click- security. jacking. We observe that UI security attacks such as click- Motivated by the absence of defenses that preserve jacking are fundamentally attacks on human perception. functionality, the W3C recently started work on a UI Revisiting clickjacking from a perceptual perspective, we safety specification [25]. At its core, the specification re- develop five novel attacks that completely bypass the pro- lies on the InContext defense previously proposed by posed UI safety specification. Our attacks are powerful Huang et al. [14]. In the proposed specification, the with success rates ranging from 20% to 99%. However, browser permits cross-origin user interaction events (such they only scratch the surface of possible perceptual attacks as mouse clicks, touch events, or keyboard events) only on UI security. We discuss possible defenses against our if the event target (e.g., the Like button) was fully visible perceptual attacks and find that most defenses either have for a minimum amount of time. The aim of the proposal an unacceptable usability cost or do not provide a com- is to help applications defend against clickjacking attacks prehensive defense. Finally, we posit that a number of with minimal impact on functionality. attacks are possible with a more comprehensive study of We investigate whether the proposed UI safety speci- human perception. fication will protect applications against clickjacking at- tacks. Our key observation is that UI security attacks are 1 Introduction fundamentally attacks on limitations of human perception. User Interface (UI) security attacks, or UI redressing at- User interfaces strive for the integrity of user actions as tacks, including clickjacking [11, 14] and tapjacking [37], their invariant. In other words, any user interaction with present a difficult problem for modern web applications. sensitive UI elements should succeed only if the user per- Such attacks are a threat whenever mutually distrusting ceived, understood, and made a conscious decision to take principals (e.g., cross-origin iframes on the web) share the the particular action. This process falls under the domain screen canvas or interface. Using the shared canvas, the of human perception and action. attacker principal (i.e., malicious page) can trick the user We evaluate the proposed W3C specification against a into clicking on a third-party application frame (e.g., a simple model of human perception and find a number of Facebook Like button). For example, typical clickjacking limitations. Requiring that a UI element remain visible attacks rely on making the third-party frame (containing for a certain duration is a necessary but not sufficient con- the Like button) transparent so that the user does not re- dition for perception. For example, the W3C specification alize she is clicking on it. These attacks are particularly 1This defense is only turned on if the Facebook Site Integrity team difficult for the application to defend against, because suspects fraud, presumably due to usability concerns. 1 does not adequately consider an attacker’s ability to direct In a typical clickjacking attack, the attacker convinces user attention. Instead, it implicitly assumes that users a victim to click a seemingly innocent UI element, such as perceive any interface visible for a minimum length of a “skip ad” button. Unbeknownst to the user, the attacker time. In reality, a distracted user might not even notice overlays the button with a transparent iframe containing the presence of a sensitive UI element. a sensitive button (such as a Facebook Like button or a We develop five novel attacks that bypass the proposed PayPal “Pay” button). The web browser delivers any user UI safety specification. Other than our first attack, all our clicks to the overlaid, transparent target. proposed attacks also work on touch devices. We present Unknowingly interacting with a sensitive page causes our attacks and explain the underlying perceptual mech- unintended actions, such as undesired sharing of informa- anisms in play. We also make all our attacks available tion [1,9, 38, 42] or placing an order [14]. A recent study online [6]. of clickjacking vulnerabilities on top web sites showed The attacks we develop rely on multiple, distinct limi- that three of the Alexa Top 10 web sites and 70% of tations of human perception. Our intention is to demon- the top banking sites have no countermeasures against strate the breadth of attack possibilities when we take a clickjacking attacks [16, 44]. perceptual view of UI security. For example, our attacks Firefox introduced time delays to installation of addons vary from destabilizing pointer perception to attacking pe- and activation newer features (e.g., geolocation) to protect ripheral vision to even attacking limitations of the human against UI attacks. The browser disables the dialog but- motor system. tons until the dialog is visible for a fixed amount of time. To evaluate the practicality of these perceptual attacks, Other than in Firefox, time delays have not been adopted, we conduct a study with 568 participants on Amazon possibly due to the adverse impact on usability. Browsers Mechanical Turk. We find that our attacks have a success like Google Chrome instead switched to relying on two rate ranging from 20% to 99%. This is despite the fact that clicks to increase the difficulty of mounting a successful our attacks are prototypes and, as we discuss, a number clickjacking attack [7]. of improvements can make our attacks far more powerful. Initial web application defenses against clickjacking in- Our experience developing these attacks also suggests cluded framebusting [36], in which a site uses JavaScript that a number of attacks remain unexplored. to prevent other pages from including it as a frame. Rydst- Contributions. We make the following contributions: edt et al. identified a number of bugs in popular framebust- ing code [36]. Browser vendors added support for HTTP • We revisit UI security attacks as attacks on human header based mechanisms to prevent framing, including perception. X-Frame-Options [19] and its successors [25]. • We present a simple model of human perception Mechanisms such as X-Frame-Options and Framebust- and find a number of limitations in the UI safety ing protect only standalone applications and not mashups specification (Section 3). that rely on a shared canvas. For example, X-Frame- Options fails to enforce UI security for applications such • We systematically identify a number of novel UI as Facebook Like buttons that need to embed inside security attacks that bypass the defenses proposed in third party frames. Similarly, these defenses do not af- the W3C UI safety specification (Section 4. fect attacks that rely on cross-origin, overlapping win- dows [47, 48]. • We evaluate our attacks on 568 participants on Ama- For scenarios requiring a shared canvas, applications zon Mechanical Turk and find that our attacks have can use two defenses which work on existing browsers: success rates ranging from 20% to 99% (Section 5). confirmation dialogs and UI randomization. In the for- mer, the application asks the user for confirmation with 2 Background and Related Work a second dialog (a popup) before performing any sensi- Ruderman first warned of UI redressing attacks as early tive action [24,43]. This impacts usability and Facebook as 2002 [31–33].2 Zalewski [45] as well as Hansen and currently deploys this defense only if it already suspects Grossman [10,11] drew further attention to the problem fraud. Further, it is unclear whether the confirmation by applying the attack to the Web, in an attack they call dialogs are also vulnerable to UI security attacks. Al- Clickjacking. UI attacks are especially powerful since the ternatively, applications can randomize the location of server sees the attacker’s fraudulent messages as legiti- the sensitive buttons within their frame (as suggested by mate user actions. Hill [12]) to reduce the success rate of attacks and make large scale attacks easier to detect. We are not aware 2 Note to reviewers: We gave a presentation on some preliminary re- of any application relying on this defense. ClearClick, sults on these attacks at Blackhat USA 2013 and no paper was published. We believe it is acceptable to give presentations on work-in-progress, part of the NoScript Firefox extension, aims to protect its similar to giving talks at workshops. users from clickjacking attacks by comparing a screen- 2 shot of the target element rendered in isolation with a that violates display integrity includes an attacker that screenshot of the displayed page [24]. No browser de- covers the sensitive button with a “clickthroughable” im- ploys a ClearClick like defense by default, possibly due age [2]. Other variations include overlaying only part of to false-positives [14]. the sensitive target [15, 40, 46].
Recommended publications
  • Clickjacking
    Security Now! Transcript of Episode #168 Page 1 of 18 Transcript of Episode #168 ClickJacking Description: Steve and Leo discuss yet another challenge to surfing safely in the web world: Known as "ClickJacking," or more formally as "UI Redressing," this class of newly popular threats tricks web users into performing web-based actions they don't intend by leading them to believe they are doing something else entirely. High quality (64 kbps) mp3 audio file URL: http://media.GRC.com/sn/SN-168.mp3 Quarter size (16 kbps) mp3 audio file URL: http://media.GRC.com/sn/sn-168-lq.mp3 INTRO: Netcasts you love, from people you trust. This is TWiT. Leo Laporte: Bandwidth for Security Now! is provided by AOL Radio at AOL.com/podcasting. This is Security Now! with Steve Gibson, Episode 168 for October 30, 2008: Clickjacking. It's time for Security Now!, the show where we cover everything you'd ever want to know about security. And we do it with a guy who is the king, really, as far as I'm concerned, the man who discovered spyware, named spyware, wrote some of the most used security utilities out there, including ShieldsUP!, Mr. Steve Gibson of GRC.com. Hi, Steve. Steve Gibson: Yes, in fact sometimes we're discussing things that you'd rather wish weren't the case. I mean... Leo: Well, lately it's been kind of bleak because it's like, there's bad stuff, and there doesn't really seem like there's any cure. Steve: Yes, that's true.
    [Show full text]
  • A Semi-Automated Security Advisory System to Resist Cyber-Attack in Social Networks
    A Semi-Automated Security Advisory System to Resist Cyber-attack in Social Networks Samar Muslah Albladi and George R S Weir University of Strathclyde, Glasgow G1 1XH, UK {samar.albladi; george.weir}@strath.ac.uk Abstract. Social networking sites often witness various types of social engi- neering (SE) attacks. Yet, limited research has addressed the most severe types of social engineering in social networks (SNs). The present study in- vestigates the extent to which people respond differently to different types of attack in a social network context and how we can segment users based on their vulnerability. In turn, this leads to the prospect of a personalised security advisory system. 316 participants have completed an online-ques- tionnaire that includes a scenario-based experiment. The study result re- veals that people respond to cyber-attacks differently based on their de- mographics. Furthermore, people’s competence, social network experience, and their limited connections with strangers in social networks can decrease their likelihood of falling victim to some types of attacks more than others. Keywords: Advisory System, Social Engineering, Social Networks. 1 Introduction Individuals and organisations are becoming increasingly dependent on working with computers, accessing the World Wide Web and, more importantly, sharing data through virtual communication. This makes cyber-security one of today’s greatest issues. Pro- tecting people and organisations from being targeted by cybercriminals is becoming a priority for industry and academia [1]. This is due to the huge potential damage that could be associated with losing valuable data and documents in such attacks. Previous research focuses on identifying factors that influence people’s vulnerability to cyber-attack [2] as the human has been characterised as the weakest link in infor- mation security research.
    [Show full text]
  • Financial Fraud and Internet Banking: Threats and Countermeasures
    Report Financial Fraud and Internet Banking: Threats and Countermeasures By François Paget, McAfee® Avert® Labs Report Financial Fraud and Internet Banking: Threats and Countermeasures Table of Contents Some Figures 3 U.S. Federal Trade Commission Statistics 3 CyberSource 4 Internet Crime Complaint Center 4 In Europe 5 The Many Faces of Fraud 6 Small- and large-scale identity theft 7 Carding and skimming 8 Phishing and pharming 8 Crimeware 9 Money laundering 10 Mules 10 Virtual casinos 11 Pump and dump 12 Nigerian advance fee fraud (419 fraud) 12 Auctions 14 Online shopping 16 Anonymous payment methods 17 Protective Measures 18 Scoring 18 Europay, MasterCard, and Visa (EMV) standard 18 PCI-DSS 19 Secure Sockets Layer (SSL) and Transport Secured Layer (TLS) protocols 19 SSL extended validation 20 3-D Secure technology 21 Strong authentication and one-time password devices 22 Knowledge-based authentication 23 Email authentication 23 Conclusion 24 About McAfee, Inc. 26 Report Financial Fraud and Internet Banking: Threats and Countermeasures Financial fraud has many faces. Whether it involves swindling, debit or credit card fraud, real estate fraud, drug trafficking, identity theft, deceptive telemarketing, or money laundering, the goal of cybercriminals is to make as much money as possible within a short time and to do so inconspicuously. This paper will introduce you to an array of threats facing banks and their customers. It includes some statistics and descriptions of solutions that should give readers—whether they are responsible for security in a financial organization or a customer—an overview of the current situation. Some Figures U.S.
    [Show full text]
  • Clickjacking: Attacks and Defenses
    Clickjacking: Attacks and Defenses Lin-Shung Huang Alex Moshchuk Helen J. Wang Carnegie Mellon University Microsoft Research Microsoft Research [email protected] [email protected] [email protected] Stuart Schechter Collin Jackson Microsoft Research Carnegie Mellon University [email protected] [email protected] Abstract such as a “claim your free iPad” button. Hence, when Clickjacking attacks are an emerging threat on the web. the user “claims” a free iPad, a story appears in the user’s In this paper, we design new clickjacking attack variants Facebook friends’ news feed stating that she “likes” the using existing techniques and demonstrate that existing attacker web site. For ease of exposition, our description clickjacking defenses are insufficient. Our attacks show will be in the context of web browsers. Nevertheless, the that clickjacking can cause severe damages, including concepts and techniques described are generally applica- compromising a user’s private webcam, email or other ble to all client operating systems where display is shared private data, and web surfing anonymity. by mutually distrusting principals. We observe the root cause of clickjacking is that an Several clickjacking defenses have been proposed and attacker application presents a sensitive UI element of a deployed for web browsers, but all have shortcomings. target application out of context to a user (such as hiding Today’s most widely deployed defenses rely on frame- the sensitive UI by making it transparent), and hence the busting [21, 37], which disallows a sensitive page from user is tricked to act out of context. To address this root being framed (i.e., embedded within another web page).
    [Show full text]
  • A Case Study on Clickjacking Attack and Location Leakage
    International Journal of Scientific & Engineering Research, Volume 5, Issue 7, July-2014 190 ISSN 2229-5518 A Case Study on Clickjacking Attack and Location Leakage Lim Chin Nei, Loo Yow Cherng, Manmeet Mahinderjit Singh Abstract— The advanced in technologies such as mobile devices, GSP, WIFI, and 3G has encourage the information sharing using social media. The large amount of information shared on social media often lead to security issues which are unaware by the users. This information may include sensitive information such as a person’s name, location, relationship status and many more and can be dangerous if is put in a wrong hand. In this research, we provide a review on the type of social media ad what are the current threat in social media. We then focus on two specific threat namely clickjacking and location leakage, and proposed a solution for each of it as well as the evaluation of the solution. Index Terms—Security; Social media; Attack; Defense Machine, Clickjacking, Location leakage —————————— —————————— 1 INTRODUCTION This rapid shift of technologies in this era of informa- media. With this large amount of information shared online, tion and communication has dramatically boosted the usage the social media actually has become a perfect platform for of the social media. With the advanced in technologies such hackers to find their victims. The information shared using as smart mobile devices, GPS, WIFI, and 3G services, user social media often contain sensitive and private information were able to connect to the internet regardless of time and which can be easily compromised by the hackers.
    [Show full text]
  • Cisco 2017 Midyear Cybersecurity Report
    Cisco 2017 Midyear Cybersecurity Report 1 Executive Summary Table of Contents Executive Summary ..........................................................03 Vulnerabilities update: Rise in attacks following key disclosures ................................................................ 47 Major Findings ..................................................................05 Don’t let DevOps technologies leave the Introduction ......................................................................07 business exposed ............................................................ 50 Attacker Behavior .............................................................09 Organizations not moving fast enough to patch Exploit kits: Down, but not likely out ................................. 09 known Memcached server vulnerabilities ......................... 54 How defender behavior can shift attackers’ focus ...........11 Malicious hackers head to the cloud to shorten the path to top targets ..................................................... 56 Web attack methods provide evidence of a mature Internet ............................................................. 12 Unmanaged infrastructure and endpoints leave organizations at risk ......................................................... 59 Web block activity around the globe ................................ 13 Security Challenges and Opportunities Spyware really is as bad as it sounds............................... 14 for Defenders ...................................................................61
    [Show full text]
  • Comparisons of Machine Learning Techniques for Detecting Malicious Webpages ⇑ H.B
    Expert Systems with Applications 42 (2015) 1166–1177 Contents lists available at ScienceDirect Expert Systems with Applications journal homepage: www.elsevier.com/locate/eswa Comparisons of machine learning techniques for detecting malicious webpages ⇑ H.B. Kazemian , S. Ahmed Intelligent Systems Research Centre, School of Computing, London Metropolitan University, United Kingdom article info abstract Article history: This paper compares machine learning techniques for detecting malicious webpages. The conventional Available online 16 September 2014 method of detecting malicious webpages is going through the black list and checking whether the web- pages are listed. Black list is a list of webpages which are classified as malicious from a user’s point of Keywords: view. These black lists are created by trusted organizations and volunteers. They are then used by modern K-Nearest Neighbor web browsers such as Chrome, Firefox, Internet Explorer, etc. However, black list is ineffective because of Support Vector Machine the frequent-changing nature of webpages, growing numbers of webpages that pose scalability issues Naive Bayes and the crawlers’ inability to visit intranet webpages that require computer operators to log in as authen- Affinity Propagation ticated users. In this paper therefore alternative and novel approaches are used by applying machine K-Means Supervised and unsupervised learning learning algorithms to detect malicious webpages. In this paper three supervised machine learning techniques such as K-Nearest Neighbor, Support Vector Machine and Naive Bayes Classifier, and two unsupervised machine learning techniques such as K-Means and Affinity Propagation are employed. Please note that K-Means and Affinity Propagation have not been applied to detection of malicious web- pages by other researchers.
    [Show full text]
  • UI Redressing and Clickjacking: About Click Fraud and Data Theft
    Introduction Attack vectors Counteractive measures Conclusion and outlook UI Redressing and Clickjacking: About click fraud and data theft Marcus Niemietz [email protected] Ruhr-University Bochum Chair for Network and Data Security 25th of November 2011 Marcus Niemietz, RUB @Zeronights UI Redressing and Clickjacking Introduction Attack vectors Counteractive measures Conclusion and outlook Short and crisp details about me Studying \IT-Security/Information Technology", RUB \Computer Science", Distance University Hagen B.Sc. in \IT-Security/Information Technology" Books Authentication Web Pages with Selenium ≥Feb. 2012: Clickjacking und UI-Redressing International speaker Work: RUB, Pixelboxx, ISP and IT-Security, Freelancer (trainings, penetration tests) Twitter: @mniemietz Marcus Niemietz, RUB @Zeronights UI Redressing and Clickjacking Introduction Attack vectors Counteractive measures Conclusion and outlook Contents 1 Introduction UI redressing Clickjacking 2 Attack vectors UI redressing Round up Clickjacking Tool 3 Counteractive measures Frame busting Busting frame busting Clickjacking statistics 4 Conclusion and outlook Marcus Niemietz, RUB @Zeronights UI Redressing and Clickjacking Introduction Attack vectors UI redressing Counteractive measures Clickjacking Conclusion and outlook Introduction Google Inc. can generate a profit of over $8.5 billion in 2010 Interesting for commercial companies to offer web applications shopping banking share status messages New attacks available that can bypass existing protection mechanisms CSRF
    [Show full text]
  • Scams and Spam to Avoid on Facebook
    Security Response in association with: Scams and Spam to Avoid on Facebook Candid Wüest Principal Software Engineer foreword by the Facebook Security Team Foreword Contents At Facebook, we work hard to protect the people that use our service. We in- Foreword ............................................................ 1 vest in equipment, develop proprietary tools, create innovative security fea- Summary ............................................................ 2 tures and devote hundreds of employees around the world to keep you and Introduction ...................................................... 2 your data safe. But we can’t do this alone, which is why we worked on a guide Attack types ....................................................... 2 with our friends at Symantec to educate people on the most prevalent threats Like/share-baiting ........................................ 3 we are seeing and the best ways for users to keep their data safe while online. Like clickjacking ........................................... 4 We process a huge amount of content to protect the people on Facebook – Malicious (iFrame) application ................... 5 every single day we vet over 26 billion pieces of content and 2 trillion link Self-XSS copy/paste attacks ....................... 6 clicks. But with more than 800 million people visiting our site each month Tagging ......................................................... 8 and more than 400 million visiting every day, Facebook has become an Phishing ......................................................
    [Show full text]
  • Threat Landscape Report – 1St Quarter 2018
    TLP-AMBER Threat Landscape Report – 1st Quarter 2018 (FINAL) V1.0 – 10/04/2018 This quarterly report summarises the most significant direct cyber threats to EU institutions, bodies, and agencies (EU-I or 'Constituents') in Part I, the development of cyber-threats on a broader scale in Part II, and recent technical trends in Part III. KEY FINDINGS Direct Threats • In Europe, APT28 / Sofacy threat actor (likely affiliated to Russia military intelligence GRU) targeted government institutions related to foreign affairs and attendees of a military conference. Another threat actor, Turla (likely affiliated to Russia’s security service FSB) executed a cyber-operation against foreign affairs entities in a European country. • A spear-phishing campaign that targeted European foreign ministries in the end of 2017 was attributed to a China-based threat actor (Ke3chang) which has a long track record of targeting EU institutions (since 2011). As regards cyber-criminality against EU institutions, attempts to deliver banking trojans are stable, ransomware activities are still in decline and cryptojacking on the rise. Phishing lures involve generic matters (’invoice’, ‘payment’, ‘purchase’, ‘wire transfer’, ‘personal banking’, ‘job application’) and more specific ones (foreign affairs issues, European think tanks matters, energy contracts, EU delegation, EU watch keeper). Almost all EU-I are affected by credential leaks (email address | password) on pastebin-like websites. Several credential- harvesting attempts have also been detected. Attackers keep attempting to lure EU-I staff by employing custom methods such as spoofed EU-I email addresses or weaponisation of EU-I documents. Broader Threats • Critical infrastructure. In the energy sector, the US authorities have accused Russian actors of targeting critical infrastructure (including nuclear) for several years and are expecting this to continue in 2018.
    [Show full text]
  • Detecting Malicious Campaigns in Obfuscated Javascript with Scalable Behavioral Analysis
    Detecting malicious campaigns in obfuscated JavaScript with scalable behavioral analysis 1st Oleksii Starov 2nd Yuchen Zhou 3rd Jun Wang Palo Alto Networks, Inc. Palo Alto Networks, Inc. Palo Alto Networks, Inc. [email protected] [email protected] [email protected] Abstract—Modern security crawlers and firewall solutions for malicious scripts [4], [10], [13]. However, proposed sys- have to analyze millions of websites on a daily basis, and tems usually require additional instrumentation and resources significantly more JavaScript samples. At the same time, fast that are unsuitable for near real-time analysis on a large static approaches, such as file signatures and hash matching, often are not enough to detect advanced malicious campaigns, population of URLs. Moreover, such approaches use machine i.e., obfuscated, packed, or randomized scripts. As such, low- learning models, which must be trained and calibrated to overhead yet efficient dynamic analysis is required. minimize false positives. In contrast, there is lack of research In the current paper we describe behavioral analysis after in terms of lightweight behavioral detection methods and indi- executing all the scripts on web pages, similarly to how real cators of dynamic script execution that conclusively determine browsers do. Then, we apply light “behavioral signatures” to the malicious behavior. To the best of our knowledge, we are the collected dynamic indicators, such as global variables declared during runtime, popup messages shown to the user, established first to present a systematic case-study on detecting modern WebSocket connections. Using this scalable method for a month, malicious campaigns with such scalable dynamic analysis. we enhanced the coverage of a commercial URL filtering product In this paper, we describe behavioral analysis that exe- by detecting 8,712 URLs with intrusive coin miners.
    [Show full text]
  • Internet Security Threat Report
    INTERNET SECURITY THREAT REPORT 2011 Trends Volume 17 Published April 2012 INTERNET SECURITY THREAT REPORT Paul Wood Mathew Nisbet Executive Editor Malware Data Analyst Manager, Cyber Security Intelligence Security Technology and Response Security Technology and Response Nicholas Johnston Gerry Egan Sr. Software Engineer Sr. Director, Product Management Security Technology and Response Security Technology and Response Bhaskar Krishnappa Kevin Haley Sr. Software Engineer Director, Product Management Security Technology and Response Security Technology and Response Irfan Asrar Tuan-Khanh Tran Security Response Manager Group Product Manager Security Technology and Response Security Technology and Response Sean Hittel Orla Cox Principal Software Engineer Sr. Manager, Security Operations Security Technology and Response Security Technology and Response Eric Chien Hon Lau Technical Director Manager, Development Security Technology and Response Security Technology and Response Eric Park Candid Wueest Sr. Business Intelligence Analyst Principal Software Engineer Anti-Spam Engineering Security Technology and Response Mathew Maniyara David McKinney Security Response Analyst Principal Threat Analyst Anti-Fraud Response Security Technology and Response Olivier Thonnard Tony Millington Sr. Research Engineer Associate Software Engineer Symantec Research Laboratories Security Technology and Response Pierre-Antoine Vervier Benjamin Nahorney Network Systems Engineer Senior Information Developer Symantec Research Laboratories Security Technology and Response
    [Show full text]