Analyzing Variation Among Iot Botnets Using Medium Interaction Honeypots

Total Page:16

File Type:pdf, Size:1020Kb

Analyzing Variation Among Iot Botnets Using Medium Interaction Honeypots Analyzing Variation Among IoT Botnets Using Medium Interaction Honeypots Bryson Lingenfelter Iman Vakilinia Shamik Sengupta Dept. of Computer Science and Eng. School of Computing Dept. of Computer Science and Eng. University of Nevada, Reno University of North Florida University of Nevada, Reno Reno, USA Jacksonville, USA Reno, USA [email protected] [email protected] [email protected] Abstract—Through analysis of sessions in which files were pattern comparison, root cause identification, risk assessment, created and downloaded on three Cowrie SSH/Telnet honeypots, attack frequency analysis, and attack origins analysis [2]. we find that IoT botnets are by far the most common source of Medium interaction honeypots such as Cowrie [3] provide a malware on connected systems with weak credentials. We detail our honeypot configuration and describe a simple method for fake shell and virtual file system to the attacker, such that listing near-identical malicious login sessions using edit distance. the attacker can enter commands and see believable output A large number of IoT botnets attack our honeypots, but without having access to a real system [4]. This is an ideal the malicious sessions which download botnet software to the environment for tracking the state of IoT botnets, which are honeypot are almost all nearly identical to one of two common easy to capture samples from because they are automated and attack patterns. It is apparent that the Mirai worm is still the dominant botnet software, but has been expanded and modified not able to perform honeypot detection as thoroughly as a by other hackers. We also find that the same loader devices deploy real attacker. We collect data using the open source Cowrie several different botnet malware strains to the honeypot over the honeypot, which is a continuation of the Kippo honeypot. course of a 40 day period, suggesting multiple botnet deployments Kippo/Cowrie honeypots have previously been used to cluster from the same source. We conclude that Mirai continues to be login sessions based on session time and attacker skill [5], and adapted but can be effectively tracked using medium interaction honeypots such as Cowrie. visualize attacker location and common commands [6]. Index Terms In this paper we describe a honeypot configuration based on the Cowrie SSH/Telnet honeypot for capturing remote login sessions and downloaded files, expanding from our previous I. INTRODUCTION work analyzing password attempts [7]. For our analysis, we Shortly after the Mirai malware made headlines in 2016 due look at sessions which created and downloaded files. Login to its usage in a 620 Gbps attack against krebsonsecurity.com session analysis has previously been done using high inter- [1], the botnet code was publicly released as open source action honeypots and classifying each command as part of software. The original version of Mirai targeted vulnerable a specific state [8]. We instead describe a simple method Internet of Things (IoT) devices using a short wordlist based for clustering these sessions using edit distance to enumerate on default username and password combinations, amassing an identical attack patterns. In light of these sessions almost army of hundreds of thousands of connected devices using universally being associated with the Mirai malware, we just these credentials. The release of Mirai’s source code provide discussion of Mirai’s functionality. Previous work pro- has resulted in numerous clones and modifications by other vides complete description of the original malware’s behavior, malicious actors which have expanded upon the attacks present architecture, and attack methods [9], [10]; we instead focus on in the original version of Mirai. Despite receiving much how much Mirai has been modified. There is some existing attention after the 2016 attacks, IoT security is still a major work in this area. Y. Liu and H. Wang [11] use branch name, issue and new botnets appear regularly. As a result, there is a configuration, IP addresses, attack methods, and credential need to keep track of developments in IoT botnets so current dictionaries to distinguish between binary files from different attacks can be appropriately dealt with. Mirai variants. Other work describing Mirai has identified Honeypots are a popular technique for capturing malicious versions which target different ports and devices [10]. activity. They provide a sandbox environment for malicious Using our clustering results, we note how many different actors to attack, recording each action for later analysis. Hon- Mirai variants attack our honeypots and how much they differ eypots have been used for a wide range of tasks, such as attack from one another and the publicly available Mirai source code in terms of commands entered, choice of filler words, and This research is supported by the National Science Foundation (NSF), USA, downloaded files. We aim to provide an idea of the amount of Award #1739032. variation present in Mirai attacks both in terms of number of distinct variants and variation amount. We also provide 978-1-7281-3783-4/20/$31.00 ©2020 IEEE analysis of variation in files from apparently identical malware 0761 Authorized licensed use limited to: UNIVERSITY OF NEVADA RENO. Downloaded on December 18,2020 at 22:04:09 UTC from IEEE Xplore. Restrictions apply. loaders as well as identical IP addresses and find that many IP the Combined Log Format data generated by Apache into the addresses serve as loader servers for multiple strains of Mirai- format used by the Elasticsearch search and analytics engine. based botnets. Finally, we provide information on other attacks We make an ssh server available on the Postfix machine by observed by the honeypot to give some perspective regarding forwarding port 22222 on the pfsense router to port 22 on the prevalence of Mirai. the mail server. We also make the ELK machine accessible through ssh over port 22 from the internal network, allowing II. METHODOLOGY access to Elasticsearch and Kibana via an ssh tunnel through A. Honeypot Configuration the mail server. This allows us to remotely access ELK without needing to expose the server publicly. Malware data was collected from 3 honeypots running the Cowrie SSH/Telnet honeypot [3], the continuation of the popular Kippo honeypot. The Cowrie honeypot is a medium- B. Dataset interaction honeypot which provides a dummy shell imple- Every event Cowrie adds to its log has a structure defined mented in python to the attacker with a virtual filesystem by the event type, such as cowrie.login.success and and prefab command outputs. Cowrie can be used to emulate cowrie.command.input. Each event, regardless of type, an IoT system by setting the prefab outputs to be consistent has a session id field that can be used to identify events with actual IoT devices, and is therefore a good environment generated by the same session. To collect the data for this for observing IoT botnets without the overhead of a high- paper, we enumerated every unique session id associated with interaction honeypot. Cowrie has also been modified multiple a cowrie.session.file_download event and used times during its development specifically in response to issues Elasticsearch to collect all other events for these ids. The where sessions from the Mirai malware didn’t result in a file file download event is used for both downloads from remote download, making it particularly good for capturing samples servers and files created during the login session, so we of Mirai. consider both for our analysis. The data was collected over We made minimal alterations to Cowrie’s default config- a period of 40 days, from 4 February 2019 to 15 March 2019, uration as of February 2019. Cowrie’s userdb was modified and consists of 84,602 unique login sessions. These sessions slightly to allow login for the three default cowrie users account for 21.2% of the 398,233 session dataset; that is, (root, tomcat, and oracle) given any password. Additionally, roughly 20% of the time a connection was initiated with a the honeypot was configured to accept both ssh and telnet honeypot it resulted in a successful login followed by a file connections on ports 22/2222 and 23/2223, respectively. This creation or download. These login sessions resulted in a total was done to allow as much traffic as possible. Each honeypot of 312 unique files collected by the honeypot. had an Apache webserver running on port 80 associated with a registered domain name and static web page. Finally, each C. Attack Pattern Comparison honeypot had a Postfix mailserver running on port 25 with To identify identical attack patterns, each session was en- several valid email accounts set up. Each portion of the coded as a list of the first argument for each command entered honeypot (login, web, and mail) ran on a separate virtual by the attacker. For example, if an attacker logged in, typed machine and received traffic through port forwarding. For the cat /proc/mounts followed by echo test, then ended analysis in this paper, only the Cowrie component is necessary. the session, the encoded list would be ["cat", "echo"]. A command containing ; (which most shells treat as end of line), but not commands with && or ||, was split into multiple commands. If the first argument was a shell such as /bin/busybox or /bin/bash we instead use the second argument, which is the first argument to the shell being called. To identify identical attack patterns, Levenshtein distance between lists of arguments was used as a similarity metric. Levenshtein distance computes the number of edits (substitution, insertion, and deletion) required to match two sequences of non-equal length, providing a rough estimation of similarity between login sessions. Edit distance has previously been used for applications such as root cause analysis [12]. The metric was normalized by dividing by its upper bound, Fig.
Recommended publications
  • Malware Trends
    NCCIC National Cybersecurity and Communications Integration Center Malware Trends Industrial Control Systems Emergency Response Team (ICS-CERT) Advanced Analytical Laboratory (AAL) October 2016 This product is provided subject only to the Notification Section as indicated here:http://www.us-cert.gov/privacy/ SUMMARY This white paper will explore the changes in malware throughout the past several years, with a focus on what the security industry is most likely to see today, how asset owners can harden existing networks against these attacks, and the expected direction of developments and targets in the com- ing years. ii CONTENTS SUMMARY .................................................................................................................................................ii ACRONYMS .............................................................................................................................................. iv 1.INTRODUCTION .................................................................................................................................... 1 1.1 State of the Battlefield ..................................................................................................................... 1 2.ATTACKER TACTIC CHANGES ........................................................................................................... 2 2.1 Malware as a Service ...................................................................................................................... 2 2.2 Destructive Malware ......................................................................................................................
    [Show full text]
  • A Malicious Concept That Conquered the Elf Format
    DDOS TROJAN: A MALICIOUS fl ooding tools) that provides an attacker with the possibility of forming a malicious botnet. The framework consists of C&C CONCEPT THAT CONQUERED panels, bot builders, installation scripts, port scanners, SSH THE ELF FORMAT brute-forcers, etc. In our paper we provide a survey of current Linux DDoS bots and we sketch a wider context of usage of Peter Kálnai & Jaromír Hořejší the above-mentioned components. This topic has been covered Avast Software, Czech Republic by many independent security researchers, e.g. the MalwareMustDie! group summarised their series of blogposts Email {kalnai, horejsi}@avast.com in [2]. The authors presented its early development in [21]. 2. COMMON CHARACTERISTICS ABSTRACT DDoS threats have been around ever since the Internet took 2.1 About the ELF format over half of global communications, posing the real problem of ELF is short for ‘Executable and Linkable Format’, which is a denial of access to online service providers. Recently, a new common standard format for executables under Unix systems. trend has emerged in non-Windows DDoS attacks that has been The instruction set architecture (ISA) of the binary is stored at induced by code availability, lack of security and an abundance the offset e_machine, and we refer to this parameter using the of resources. The attack infrastructure has undergone prefi x ‘EM_’. Unix systems power not only desktop and server signifi cant changes in structure, function and complexity. machines, but are also the main operating systems for Malware has evolved into complex and relatively sophisticated embedded devices. Although Intel 80386 (EM_386) and pieces of code, employing compression, advanced encryption AMD64 (EM_x86_64) ISAs are the most common for desktops and even rootkit capabilities.
    [Show full text]
  • An Automated and Comprehensive Framework for Iot Botnet Detection and Analysis (Iot-BDA)
    This article has been accepted for publication in a future issue of this journal, but has not been fully edited. Content may change prior to final publication. Citation information: DOI 10.1109/ACCESS.2021.3110188, IEEE Access Digital Object Identifier 10.1109/ACCESS.2017.DOI An Automated and Comprehensive Framework for IoT Botnet Detection and Analysis (IoT-BDA) TOLIJAN TRAJANOVSKI1, NING ZHANG1 1Department of Computer Science, University of Manchester, M13 9PL UK Corresponding author: Tolijan Trajanovski (e-mail: [email protected]). ABSTRACT The proliferation of insecure Internet-connected devices gave rise to the IoT botnets which can grow very large rapidly and may perform high-impact cyber-attacks. The related studies for tackling IoT botnets are concerned with either capturing or analyzing IoT botnet samples, using honeypots and sandboxes, respectively. The lack of integration between the two implies that the samples captured by the honeypots must be manually submitted for analysis in sandboxes, introducing a delay during which a botnet may change its operation. Furthermore, the effectiveness of the proposed sandboxes is limited by the potential use of anti-analysis techniques and the inability to identify features for effective detection and identification of IoT botnets. In this paper, we propose and evaluate a novel framework, the IoT-BDA framework, for automated capturing, analysis, identification, and reporting of IoT botnets. The framework consists of honeypots integrated with a novel sandbox that supports a wider range of hardware and software configurations, and can identify indicators of compromise and attack, along with anti-analysis, persistence, and anti-forensics techniques. These features can make botnet detection and analysis, and infection remedy more effective.
    [Show full text]
  • Iot Vulnerabilities Easily 5
    • Babak D. Beheshti, Associate Dean of the School of Engineering and Computing Sciences at NYIT. • Clyde Bennett, Chief Healthcare Technology Strategist at Aldridge Health. • Ross Brewer, VP and MD of EMEA at LogRhythm. • Ben Desjardins, Director of Security Solutions at Radware. • Eric O'Neill, National Security Strategist at Carbon Black. • Jeff Schilling, Chief of Operations and Security at Armor. • Karl Sigler, Threat Intelligence Manager at Trustwave. • Sigurdur Stefnisson, VP of Threat Research at CYREN. • Amos Stern, CEO at Siemplify. • Ronen Yehoshua, CEO at Morphisec. ! Visit the magazine website at www.insecuremag.com Feedback and contributions: Mirko Zorz, Editor in Chief - [email protected] News: Zeljka Zorz, Managing Editor - [email protected] Marketing: Berislav Kucan, Director of Operations - [email protected] (IN)SECURE Magazine can be freely distributed in the form of the original, non-modified PDF document. Distribution of modified versions of (IN)SECURE Magazine content is prohibited without permission. ! Copyright (IN)SECURE Magazine 2016. www.insecuremag.com Are all IoT vulnerabilities easily 5. Insecure or no network pairing control op- avoidable? tions (device to device or device to net- works). Every vulnerability or privacy issue reported 6. Not testing for common code injection ex- for consumer connected home and wearable ploits. technology products since November 2015 7. The lack of transport security and encrypt- could have been easily avoided, according to ed storage including unencrypted data the Online Trust Alliance (OTA). transmission of personal and sensitive in- formation including but not limited to user OTA researchers analyzed publicly reported ID and passwords. device vulnerabilities from November 2015 8. Lacking a sustainable and supportable through July 2016, and found the most glaring plan to address vulnerabilities through the failures were attributed to: product lifecycle including the lack of soft- ware/firmware update capabilities and/or insecure and untested security patches/ 1.
    [Show full text]
  • Cyber@UC Meeting 38
    Cyber@UC Meeting 38 Becoming a Certified Ethical Hacker If You’re New! ● Join our Slack ucyber.slack.com ● Feel free to get involved with one of our committees: Content, Finance, Public Affairs, Outreach, Recruitment ● Ongoing Projects: ○ Malware Sandboxing Lab ○ Cyber Range ○ RAPIDS Cyber Op Center Announcements ● P&G visit set for Jan 22nd 2-3pm ● We’re planning school visits, reach out! ● Logo designs welcome! Public Affairs ● Please fill out Google form for GroupMe Numbers! https://goo.gl/forms/94i9kMJgtpDGXsC22 ● Our brand new YouTube channel has just been made. We will be live streaming meetings, events, etc and posting relevant videos to the channel. Please subscribe! youtube.com/channel/UCWcJuk7A_1nDj4m-cHWvIFw Follow us on our social media: Facebook: facebook.com/CyberAtUC/ Twitter: twitter.com/UCyb3r Instagram: instagram.com/cyberatuc/ Website: gauss.ececs.uc.edu/UC.yber/ Weekly Content Botnets targets ARC Processors ● What is an ARC Processor? ○ ARC stands for Argonaut RISC Core ○ 32-bit CPUs popularly used for SoC devices ○ World’s second most popular CPU core ○ In more than 2 billion products every year ● A new variant of the Mirai botnet has been found that hijacks insecure devices using ARC processors, known as Mirai Okiru ● Discovered by the MalwareMustDie team, a malware research group ● ARC processor malware is apparently very uncommon ● This malware is similar to another version of Mirai that targeted MIPS and ARM processors Mirai Okiru (continued) ● The malware used is known as Linux/Mirai ELF ● ELF malware is very
    [Show full text]
  • An Accidental Discovery of Iot Botnets and a Method for Investigating Them with a Custom Lua Dissector
    2017 Annual ADFSL Conference on Digital Forensics, Security and Law Proceedings May 15th, 10:00 AM An Accidental Discovery of IoT Botnets and a Method for Investigating Them With a Custom Lua Dissector Max Gannon University of Alabama, Birmingham, [email protected] Gary Warner University of Alabama, Birmingham, [email protected] Arsh Arora University of Alabama, Birmingham, [email protected] Follow this and additional works at: https://commons.erau.edu/adfsl Part of the Digital Communications and Networking Commons, Forensic Science and Technology Commons, Information Security Commons, OS and Networks Commons, Other Computer Engineering Commons, and the Other Computer Sciences Commons Scholarly Commons Citation Gannon, Max; Warner, Gary; and Arora, Arsh, "An Accidental Discovery of IoT Botnets and a Method for Investigating Them With a Custom Lua Dissector" (2017). Annual ADFSL Conference on Digital Forensics, Security and Law. 3. https://commons.erau.edu/adfsl/2017/papers/3 This Peer Reviewed Paper is brought to you for free and open access by the Conferences at Scholarly Commons. It has been accepted for inclusion in Annual ADFSL Conference on Digital Forensics, Security and Law by an (c)ADFSL authorized administrator of Scholarly Commons. For more information, please contact [email protected]. An Accidental Discovery of IoT Botnets and ... CDFSL Proceedings 2017 AN ACCIDENTAL DISCOVERY OF IOT BOTNETS AND A :METHOD FOR INVESTIGATING THEM WITH A CUSTOM LUA DISSECTOR Max Gannon, Gary Warner, Arsh Arora University of Alabama at Birmingham 1201 University Blvd, Birmingham, AL 35233 {gannonm, gar, ararora}@uab.edu ABSTRACT This paper presents a case study that occurred while observing peer-to-peer network communications on a botnet monitoring station and shares how tools were developed to discover what ultimately was identified as Mirai and many related IoT DDOS Botnets.
    [Show full text]
  • Decade of the Rats Threat Report
    Decade of the Cross-Platform APT Espionage Attacks Targeting Linux, Windows and Android Table of Contents Executive Summary ................................................................................................3 Lancer – An Installation Script ..................................................................................20 PWNLNX5 – The Controller .......................................................................................22 Key Findings ...........................................................................................................5 Another Linux Oddity — CASPER Mirai Variant .........................................................23 Strategic Intelligence Assessments: ........................................................................... 5 Tactical Intelligence Assessments: ............................................................................ 6 Cellular Division ...................................................................................................24 PWNDROID4 ..............................................................................................................24 Why the Targeting of Linux Systems Matters ..........................................................7 An Interesting Find .....................................................................................................26 The Linux Advantage ..............................................................................................8 CASPER Goes Mobile – PWNDROID5 .......................................................................27
    [Show full text]
  • Turning Internet of Things(Iot) Into Internet of Vulnerabilities (Iov) : Iot Botnets
    TURNING IOT INTO IOV : IOT BOTNETS 1 Turning Internet of Things(IoT) into Internet of Vulnerabilities (IoV) : IoT Botnets Kishore Angrishi Abstract—Internet of Things (IoT) is the next big evolutionary step in the world of internet. The main intention behind the IoT is to enable safer living and risk mitigation on different levels of life. Home Automation / With the advent of IoT botnets, the view towards IoT devices Smart Home has changed from enabler of enhanced living into Internet of vulnerabilities for cyber criminals. IoT botnets has exposed two Industrial Control Systems different glaring issues, 1) A large number of IoT devices are Smart City accessible over public Internet. 2) Security (if considered at all) is often an afterthought in the architecture of many wide spread Internet of Things (IoT) IoT devices. In this article, we briefly outline the anatomy of Autonomous the IoT botnets and their basic mode of operations. Some of the Vehicles Medical and healthcare major DDoS incidents using IoT botnets in recent times along Smart traffic & parking with the corresponding exploited vulnerabilities will be discussed. control We also provide remedies and recommendations to mitigate IoT Smart Metering & related cyber risks and briefly illustrate the importance of cyber Smart Grids insurance in the modern connected world. Index Terms—DDoS, IoT, IoT Botnets, Mirai Botnet, Cyber Insurance, Security I. INTRODUCTION Fig. 1. Internet of Things (IoT) The Internet of Things (IoT) is key in the digital world of connected living. The futuristic appeal to make life bit more enjoyable in a hectic day-to-day routine is enticing to many.
    [Show full text]
  • Mirai – Inside of an Iot Botnet
    Mirai – Inside of an IoT Botnet Ron Winward Security Evangelist, Americas February 7, 2017 Agenda • What this is… • A study of the Mirai structure, components, and aack vectors • A focus on the network aspects of the botnet • What this isn’t… • A code review • A how-to guide 2 Mirai Overview 3 Mirai source code released on HackForums.net • By Anna-senpai on Sep 30, 2016 • From posts and replies in the thread Anna-senpai used it for the aack on Krebs and OVH. • Some users doubNng the authenNcity of Anna-senpai, but high reputaon users acknowledged his capabiliNes 4 $$$ Efficient bot harves>ng Create account Exists ? + Assign bots - Loader and Bot wri7en in C C2 API - ScanListen and CnC service in Go ScanListen CnC - Scalable, distributed services New vic! - TargeNng BusyBox based devices 48101 23 - 60+ factory default passwords Load Svc CnC Connect Report IP + credenNals Load bot Telnet port scan Telnet port scans Bot new vicBot Telnet port scans (infected device) (infected device) Brute force login 5 Mirai predefined creden>als for brung 6 Aack Vectors 7 Mirai Easter Eggs 8 Mirai Easter Eggs I love chicken nuggets 9 Lab Setup 10 Lab Network Topology 192.168.3.2 X 192.168.3.1/24 192.168.1.1/24 192.168.2.1/24 Linksys WRT54GL/ Tomato Sricam AP003 Eth0: 192.168.3.140 ESXI Ens33: Eth1: Eth0: Eth0: Eth0: Enp2s0: 192.168.2.10 192.168.2.53 192.168.2.11 192.168.2.12 192.168.2.16 192.168.3.10 util1 ns1 cnc scanrec bot2 Target ubuntu ubuntu debian debian raspbian ubuntu Ens32: Eth0: Enp3s6: 192.168.1.4 192.168.1.53 192.168.1.8 11 management My test
    [Show full text]
  • Building a Honeypot to Research Cyber-Attack Techniques
    Building a Honeypot to Research Cyber-Attack Techniques Simon Bell, Computer Science BSc Candidate Number 18585 School of Engineering and Informatics Project Supervisor: Dr. Martin Berger University of Sussex, May 2014 Declaration This report is submitted as part requirement for the degree of Computer Science at the University of Sussex. It is the product of my own labour except where indicated in the text. The report may be freely copied and distributed provided the source is acknowledged. Signature: Simon Bell ii Acknowledgements The author wishes to thank Dr. Gareth Owen, University of Portsmouth for his input and advice on cybersecurity; Dr. Lorenzo Cavallaro, Royal Holloway, University of London for the online course on malware and advice during the project and Dr. Martin Berger for his encouragement, advice and support while supervising the project. UNIVERSITY OF SUSSEX Simon Bell, Computer Science BSc Building a Honeypot to Research Cyber-Attack Techniques Summary The internet can be a dark and dangerous place; featuring viruses and cyber attacks. This project aims to uncover some of these threats and reveal just how vulnerable the inter- net can be. The project involves creating a honeypot - a device designed to attract cyber attackers - and to analyse cyber attacks to see what is going on in the dark underworld of the internet. This dissertation explains the process involved in building a honeypot in the program- ming language C along with the results produced from that honeypot. Malicious files up- loaded to the honeypot will be analyses to gain an understanding into how cyber-attackers carry out certain types of attacks.
    [Show full text]
  • F-Secure Threat Report H1 2014
    THREAT REPORT H1 2014 SWITCH ON FREEDOM www.f-secure.com 1 CONTENTS CONTENTS 2 AT A GLANCE 3 FOREWORD 4 TOP-10 DETECTIONS DOWNADUP (aka OF NOTE CONFICKER) 5 This six years old worm exploits the MS08-067 vulnerability in Windows. It spreads over the Internet and through removable media and INCIDENTS CALENDAR 6 network shares. rounded up by... THREAT LANDSCAPE SUMMARY 8 SALITY TOP-10 DETECTIONS 9,11 MOBILE MALWARE 12 MAC MALWARE 14 SOURCES 15 H1 2014 THREAT REPORT AT A GLANCE... JANUARY FEBRUARY MARCH APRIL MAY JUNE iOS updates Coremax FBI hunts down released to fix extension does Gameover Zeus’ major SSL flaw browser hijacking mastermind Active attacks Windows XP Police ‘Oleg Pliss’ using new IE reaches official ransomware hackers arrested 0-day bug end of life (EOL) moves to Android in Moscow INCIDENTS CALENDAR Page 2014 6 +201138N MAJAVA, 11% 31 MALWARE PC MALWARE Page 12 TOP-10 DETECTIONS WEB-BASED ATTACKS, 20% MOBILE Page 9, 11 Android continues to be a favorite target for majority of the Windows threat landscape is filled with mobile threats. But threats directed towards iOS do exist, even if there are far fewer of them. existing malware families—some of which OTHERS, 38% has been around for years, being kept alive by unpatched machines. ANDROID + iOS DOWNADUP/ CONFICKER, 31% 1 FAMILYnew NEW SSLCREDTHIEF TOP-10 DETECTIONS 294 Signed library file FAMILIES DOWNADUP (aka WEB-BASED ATTACKS MAJAVA listens to outgoing SSL connections to CONFICKER) A collection of malware, A collection of exploits against VARIANTSor This six years old worm techniques, or exploits used vulnerabilities in the Java steal Apple ID and exploits the MS08-067 to redirect the web browser development platform.
    [Show full text]
  • White-Hat Worm to Fight Malware and Its Evaluation by Agent-Oriented Petri Nets †
    sensors Article White-Hat Worm to Fight Malware and Its Evaluation by Agent-Oriented Petri Nets † Shingo Yamaguchi Graduate School of Sciences and Technology for Innovation, Yamaguchi University, Ube 755-8611, Japan; [email protected] † This paper is an extended version of our paper published in Yamaguchi, S. Modeling and Evaluation of IoT Worm with Lifespan and Secondary Infectivity by Agent-Oriented Petri Net PN2. In Proceeding of the IEEE 6th International Conference on Consumer Electronics – Taiwan (IEEE 2019 ICCE-TW), Yilan, Taiwan, 20–22 May 2019. Received: 23 December 2019; Accepted: 16 January 2020; Published: 19 January 2020 Abstract: A new kind of malware called Mirai is spreading like wildfire. Mirai is characterized by targeting Internet of Things (IoT) devices. Since IoT devices are increasing explosively, it is not realistic to manage their vulnerability by human-wave tactics. This paper proposes a new approach that uses a white-hat worm to fight malware. The white-hat worm is an extension of an IoT worm called Hajime and introduces lifespan and secondary infectivity (the ability to infect a device infected by Mirai). The proposed white-hat worm was expressed as a formal model with agent-oriented Petri nets called PN2. The model enables us to simulate a battle between the white-hat worm and Mirai. The result of the simulation evaluation shows that (i) the lifespan successfully reduces the worm’s remaining if short; (ii) if the worm has low secondary infectivity, its effect depends on the lifespan; and (iii) if the worm has high secondary infectivity, it is effective without depending on the lifespan.
    [Show full text]