Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

3,497

Downloads of v 3.1.0:

526

Last Update:

14 Jan 2019

Package Maintainer(s):

Software Author(s):

  • pancake aka @trufae

Tags:

radare2 c commandline unix reverse-engineering forensics analysis

radare (Install)

  • 1
  • 2
  • 3

3.1.0 | Updated: 14 Jan 2019

Downloads:

3,497

Downloads of v 3.1.0:

526

Maintainer(s):

Software Author(s):

  • pancake aka @trufae

radare (Install) 3.1.0

  • 1
  • 2
  • 3

Some Checks Have Failed or Are Not Yet Complete

Not All Tests Have Passed


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Resulted in Flagged:

This package was submitted (and approved) prior to automated virus scanning integration into the package moderation processs.

We recommend clicking the "Details" link to make your own decision on installing this package.

Details
NOTE

Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...

Package Approved

This package was approved as a trusted package on 09 Sep 2019.

WARNING

This package is unlisted and hidden from package listings.

Description

Radare is a portable reversing framework that can...

  • Disassemble (and assemble for) many different architectures
  • Debug with local native and remote debuggers (gdb, rap, webui, r2pipe, winedbg, windbg)
  • Run on Linux, *BSD, Windows, OSX, Android, iOS, Solaris and Haiku
  • Perform forensics on filesystems and data carving
  • Be scripted in Python, Javascript, Go and more
  • Support collaborative analysis using the embedded webserver
  • Visualize data structures of several file types
  • Patch programs to uncover new features or fix vulnerabilities
  • Use powerful analysis capabilities to speed up reversing
  • Aid in software exploitation

tools\chocolateyinstall.ps1
$ErrorActionPreference = 'Stop';
$toolsDir   = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$url        = 'http://radare.mikelloc.com/get/3.1.0/radare2_installer-msvc_32-3.1.0.exe'
$url64      = 'http://radare.mikelloc.com/get/3.1.0/radare2_installer-msvc_64-3.1.0.exe'

$packageArgs = @{
  packageName   = $env:ChocolateyPackageName
  unzipLocation = $toolsDir
  fileType      = 'exe'
  url           = $url
  url64bit      = $url64

  softwareName  = 'radare*'

  checksum      = '4FD79FE59DBEEDE119CADFBB8638FF7FCEB9C18BC022051E1AC4311C6C04D143'
  checksumType  = 'sha256'
  checksum64    = '3EDD86E43EC50E1659DC5A45808EA5096F98A9CF410B820A33F2F5A4446A8E07'
  checksumType64= 'sha256'

  silentArgs    = "/SILENT /NORESTART /RESTARTAPPLICATIONS"
  validExitCodes= @(0, 3010, 1641)
}

try{
  Uninstall-ChocolateyPackage -PackageName 'radare'
}
catch{
  #no op
}

Install-ChocolateyPackage @packageArgs

Log in or click on link to see number of positives.

In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status

3.1.0 - codename Shibboleet

anal

  • Improvements arm/thumb analysis
  • anal: arm: emulate correctly BX PC in arm32/thumb
  • anal: arm: modify r_anal_build_range_on_hints
  • anal: arm: handle better anal hints to increase performance
  • Use r_return in RAnalOp, reduce some code paths in xrefs search
  • axt with a space handles local var xrefs
  • Fix #9709 - Implement aeab to get input and output regs of the basic block
  • Fix r_core_anal_graph_to and abt, abtj commands
  • Fixed ttj feature for printing in JSON
  • Set as dword all the jmptbl offsets
  • Support overlapping basic blocks in anal.endsize
  • Cannot extract reg args if no calling convention is present
  • af-* removes jmprefs as well
  • Enable invalid insn notification in fcn_recurse and remove warn-near-end break
  • Handle alias returns and delay slot for SPARC
  • pdf sparse honors anal.jmpmid + afb+ fills op_pos array (x86 only)
  • Add new axff command (xrefs from function)
  • Check addrs 1-by-1 in pdf sparse code
  • Honor anal.jmpmid in r_anal_fcn_bbget_in (fixes test and bug in pdr and graph)
  • Fix #10420 - Enable anal.jmpmid and support overlapping bbs
  • Improve array indexing in disassembly
  • Remove aae dup and enable anal.types.constraint in aaaa
  • Small optimization and bugfix when auto-renaming functions
  • anal.jmpmid: Continue analysis after jump to middle of instruction
  • Use op->val instead of op->ptr in cmp [mem], imm
  • Add missing FITFCNSZ in r_anal_fcn_split_bb
  • Add new function prelude for ARM thumb
  • Implement ARM32/Thumb ESIL for ADR and ADDW
  • Fix #11879 - Move aae in aaa
  • Check addrs 1-by-1 in pdf sparse code

asm

  • Support REX in NOT instruction for the x86 assembler
  • Fix #12239 - crash in the x86.nz assembler

bin

  • Introduce RBinArchOptions to avoid creating fake RBinFile/Objects
  • Access last ElfSymbol only after reallocating the array
  • Fix #12194 - Resolve symbol names in WebAssembly bins
  • New RBin plugin for "symbols" files
  • Fix #9825 - Wrong import addresses in the ELF for ppc64 elfs
  • Fix some bugs in RBin.mdmp
  • Remove deprecated load methods from MZ parser
  • Implement load_buffer for MZ parser
  • Cleanup and fix the MZ
  • Correctly allocate strings when filtering them
  • Fix #12082 - infinite loop when loading PE
  • Use ht to query strings for the cfstrings
  • Refactoring RBin.open/close and RBinOptions
  • Improve MSVC detection and demangling
  • Another RBin API cleanup
  • Fix last gf 4byte write overflow in ELF
  • Fix big allocation issue found by googlefuzz in ELF
  • Fix #11947 and fix #11945 - Implement iS= and iSq.
  • Eliminate unnecessary global in mach0 parser
  • Parse the LC_MAIN in rabin2 -H
  • Fix googlefuzz crash caused by OOB in shdr_link
  • Fix loading of entrypoints on some huge mach0s
  • Refactoring and optimization for the RBin.language identification
  • Fix #11922 - Allocate space for sentinel too
  • Fix a crash in the OMF RBin parser
  • Lookup for golang and asan traces once
  • Fix crash in fuzzed sega master system rom
  • Fix crash in the MZ parser found by googlefuzz
  • Parse the mach0's requirements codesign slot
  • Fix entry0's hvaddr for ELF

build

  • Handle libr/libs.custom.mk to make partial r2 builds if you need just a portion of r2
  • Fix ios-arm32
  • Add --without-libuv and companion flags in ios-static-appstore.sh
  • Fix MacOS Mojave User Debugging Problem
  • Downgrade credentials when building with sudo
  • Add -static for the binaries when --with-libr
  • Add io.r2web, io.r2pipe, fs.io and debug.io for iOS
  • Fix the build of the iOS SDK

core

  • Fix #12060 and #12072 - Rewrite r_num_abs and r_num_units
  • Fix #10324 - Implement RLog API for leveled logging

debug

  • Fix #12022 - Slow backtrace fixed by speeding up ptrace_wrap_func()
  • Add dbg.verbose variable to show more info when debugging
  • Improve pid_to_task and handle =!pid
  • Fix some spawn args escape bugs

disasm

  • Fix ANSI injection vulnerability in pd and pdj
  • Fix #12202 - Add asm.maxflags to specify how many flags per offset we want to see
  • Fix #11889 - Fix varsub when some ANSI escape sequences are involved
  • Fix echo in ppc disassembler on invalid instructions
  • Honor asm.bb.middle in r_core_print_disasm_instructions()
  • Honor asm.bb.middle in r_core_print_disasm_json() / pdfj
  • Use fastcall in emustr on function calls
  • Fix heap overflow in long asm lines /via radareorg/cutter#803
  • Add asm.bb.middle: Realign disasm on bb start

docs

  • Remove legacy issue templates and use modern one's
  • Fixed typo in DEVELOPERS.md

esil

  • Fix zero interrupt issue

graph

  • Fix asm.flags.inbytes not showing in graph

magic

Add help in wtf!? and add bitcode magic signature

panels

First step to support xrefs in visual panels

port

  • self plugin is now working in DragonFlyBSD
  • Support DragonflyBSD build and backtrace
  • Adding self proc support for FreeBSD

print

  • Implement , and ; in pf to rewind and be able to support unions
  • Fix #12116 - Implement bytesize for pvj
  • Add pfj Z format

projects

  • Open radare2 project after loading plugins and keep the -e flags

refactor

  • ELF plugin code cleaning
  • Upgrade SDB and use the new HtPP, HtUP, HtUU
  • Remove "referenced" from RBinObject and remove get_object
  • Move trie, mixed, slist into Sdb's Attic, and DES from util to crypto
  • Remove other unused functions in RBin and make others static
  • Cast arguments to ut8 when feeding ctype.h functions
  • RBinSection now lives in the heap
  • Remove unused functions in iosections
  • Remove all S commands
  • Use r_return_* in RAnal's cc and fcn
  • Modernize RFlag with asserts, boolified and more
  • Initial import of the REvent API
  • Remove SR commands
  • Fix #11936 - Optimize RCons.hud with cache
  • Fix build and start refactor of r_cons_hud()
  • Remove Sf command
  • Kill anal.bb.align variable
  • remove r_bin_load_io2 and rename MODE defines
  • Code cleanup in the mach0 parser
  • Fix #11881 r_list_length assert for o->libs
  • Some code cleanup and asserts in RBin
  • Upgrade SDB and use the new HtPP, HtUP, HtUU
  • Remove "referenced" from RBinObject and remove get_object
  • /Cd is now using a proper bitmask to search the values
  • Fix regression in /rc and avoid repeated errors
  • Fix #11977 - Handle arg in on /r subcommands
  • Fix #11961 - /at swi for unconditional (or cswi)

types

  • ta command now takes an optional offset argument
  • Implemented tec command
  • Add ttc - dump types in C syntax
  • Fix #12166 - Implement tt* to list all types at once

visual

  • Add support for shift-arrows in st and rxvt-unicode
  • Fix #12307 - Escape ansi chars in cbin
  • Improve the Visual xrefs with from/to disasm and handle JK
  • Move the fcn refs visual feature into the view instead of adding more keys
  • Fix #12230 - Honor cursor in Vp xX
  • Fix #12258 - Fix glitches in VV with |= aka cmd.gprompt
  • Get cursor position only if screen_bounds == 1
  • Fix VJ scrolling stuck issue
  • Improve the visual titlebar in cursor is enabled
  • Change the behaviour of V< and V> to make it slurp or dump files
  • Initial support for key repetitions in visual mode
  • Fix #11552 - Implemlent r_cons_more and refactor some less.c
  • Implement scr.scrollbar
  • Implement cmd.hexcursor feature
  • Add stack.reg and handle pP in Vppc
  • Add LL command to lock screen
  • Fix the resizing algorithm of panels
  • Fix help in panels
  • Fix : command
  • Change the default panels depending on the analysis
  • Null terminate buffer to fix garbage in psi, psb and psz
  • Properly support the Hud in panels ?? && _
  • Handle / key in visual panels to set scr.highlight
  • Handle ^C in RCons.less

wasm

  • Initial ESIL support for WASM

windows

  • Fix gmtime_r for msvc
  • Fix visual panels crash on Windows
  • Fix unicode path issues in Windows

This package has no dependencies.

Discussion for the radare (Install) Package

Ground Rules:

  • This discussion is only about radare (Install) and the radare (Install) package. If you have feedback for Chocolatey, please contact the Google Group.
  • This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
  • The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
  • Tell us what you love about the package or radare (Install), or tell us what needs improvement.
  • Share your experiences with the package, or extra configuration or gotchas that you've found.
  • If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
comments powered by Disqus