Home

Awesome

asafw

Preliminary note: we recommend you to use this as part of asatools but it can also be used standalone.

asafw is a set of scripts to deal with Cisco ASA firmware. It allows someone to unpack firmware required when debugging with gdb, as well as unpacking/repacking them in order to enable certain features such as:

The more useful tools are unpack_repack_bin.sh and unpack_repack_qcow2.sh. They allow respectively to manipulate asa*.bin and asav*.qcow2 image formats. They both need to be executed as root when actually repacking rootfs to keep the right permissions.

Requirements

You initially need to modify asafw/env.sh to match your environment. It will allow you to define paths to the tools used by all the scripts as well as some variables matching your ASA environment. Note there is a simmilar asadbg/env.sh but only one is required to be used for both projects. We recommend that you add it to your ~/.bashrc:

source /path/to/asafw/env.sh

unpack_repack_bin.sh

unpack_repack_bin.sh is used to unpack/repack asa*.bin images which are used for real Cisco ASA hardware (such as ASA 5500 and 5500-X series). The complete usage is:

$ unpack_repack_bin.sh -h
Usage:
./unpack_repack_bin.sh -i <firmware_file> -o <out_dir> [-f -g -G -a -A -m -b -r -u -l <linabin_dir> -d -e -k]
      -h, --help                    This help menu
      -i, --input <firmware_file>   What firmware bin to operate on
      -o, --output  <out_dir>       Where to write new firmware
      -f, --free-space              Remove space from .bin to ensure injections fit
      -g, --enable-gdb              Set gdb to start on boot
      -G, --disable-gdb             Stop gdb from starting on boot
      -a, --enable-aslr             Turn on ASLR
      -A, --disable-aslr            Turn off ASLR
      -m, --inject-gdb              Inject gdbserver to run
      -b, --debug-shell             Inject ssh-triggered debug shell
      -H, --lina-hook               Inject hooks for monitor lina heap (requires -b)
      -r, --root                    root the bin to get a rootshell on boot
      -c, --custom                  custom?
      -n, --n-custom                custom?
      -q, --gns3-fixup              gns?
      -u, --unpack-only             unpack the firmware and nothing else
      -l, --linabins <linabin_dir>  destination folder to save lina binaries
      -d, --delete-extracted        delete files extracted during modification
      -e, --delete-original-bin     delete the original firmware being modified
      -k, --keep-rootfs             keep the extracted rootfs on disk
      -s, --simple-name             use a simple name for the output .bin with just appended '-repacked'
Examples:
 ./unpack_repack_bin.sh -i /home/user/firmware -o /home/user/firmware_repacked --free-space --enable-gdb --inject-gdb
 ./unpack_repack_bin.sh -i /home/user/firmware/asa961-smp-k8.bin -f -g -m
 ./unpack_repack_bin.sh -u -i /home/user/firmware -l /home/user/linabins
 ./unpack_repack_bin.sh -u -i /home/user/firmware/asa924-k8.bin -k

Extract multiple firmare

Let's assume we have these two firmware:

~/fw$ ls
asa924-k8.bin  asa981-smp-k8.bin

If you only want to extract firmware, e.g. to debug them with asadbg, you can use -u to unpack only and -k to only keep the rootfs and delete other files extracted by binwalk that you don't need. Note that the output folder is the same as the input folder as we rely on binwalk for this:

~/fw$ unpack_repack_bin.sh -i . -k -u
[unpack_repack_bin] Directory of firmware detected: .
[unpack_repack_bin] extract_one: asa924-k8.bin

DECIMAL       HEXADECIMAL     DESCRIPTION
--------------------------------------------------------------------------------
75000         0x124F8         SHA256 hash constants, little endian
144510        0x2347E         gzip compressed data, maximum compression, from Unix, last modified: 2015-07-15 04:53:23
1501296       0x16E870        gzip compressed data, has original file name: "rootfs.img", from Unix, last modified: 2015-07-15 05:19:52
27168620      0x19E8F6C       MySQL ISAM index file Version 4
28192154      0x1AE2D9A       Zip archive data, at least v2.0 to extract, name: com/cisco/webvpn/csvrjavaloader64.dll
28773362      0x1B70BF2       Zip archive data, at least v2.0 to extract, name: AliasHandlerWrapper-win64.dll

[unpack_repack_bin] Extracted firmware to /home/user/fw/_asa924-k8.bin.extracted
[unpack_repack_bin] Firmware uses regular rootfs/ dir
[unpack_repack_bin] Extracting /home/user/fw/_asa924-k8.bin.extracted/rootfs/rootfs.img into /home/user/fw/_asa924-k8.bin.extracted/rootfs
[unpack_repack_bin] Keeping rootfs
[unpack_repack_bin] Deleting "/home/user/fw/_asa924-k8.bin.extracted/rootfs.img"
[unpack_repack_bin] Deleting "/home/user/fw/_asa924-k8.bin.extracted/2347E"
[unpack_repack_bin] Deleting "/home/user/fw/_asa924-k8.bin.extracted/1AE2D9A.zip"
[unpack_repack_bin] extract_one: asa981-smp-k8.bin

DECIMAL       HEXADECIMAL     DESCRIPTION
--------------------------------------------------------------------------------
75264         0x12600         SHA256 hash constants, little endian
133120        0x20800         Microsoft executable, portable (PE)
149183        0x246BF         gzip compressed data, maximum compression, from Unix, last modified: 2017-01-30 19:33:09
3678112       0x381FA0        gzip compressed data, has original file name: "rootfs.img", from Unix, last modified: 2017-05-10 22:42:05
14838307      0xE26A23        MySQL MISAM compressed data file Version 4
87985870      0x53E8ECE       MySQL MISAM compressed data file Version 7
96261881      0x5BCD6F9       Zip archive data, at least v2.0 to extract, name: com/cisco/webvpn/csvrjavaloader64.dll
96890193      0x5C66D51       MySQL ISAM compressed data file Version 5

[unpack_repack_bin] Extracted firmware to /home/user/fw/_asa981-smp-k8.bin.extracted
[unpack_repack_bin] Firmware uses regular rootfs/ dir
[unpack_repack_bin] Extracting /home/user/fw/_asa981-smp-k8.bin.extracted/rootfs/rootfs.img into /home/user/fw/_asa981-smp-k8.bin.extracted/rootfs
[unpack_repack_bin] Keeping rootfs
[unpack_repack_bin] Deleting "/home/user/fw/_asa981-smp-k8.bin.extracted/rootfs.img"
[unpack_repack_bin] Deleting "/home/user/fw/_asa981-smp-k8.bin.extracted/5BCD6F9.zip"
[unpack_repack_bin] Deleting "/home/user/fw/_asa981-smp-k8.bin.extracted/246BF"

Note that errors like below you may get don't matter in this case because you are not going to repack the firmware:

cpio: lib/udev/devices/kmem: Function mknod failed: Operation not permitted
cpio: lib/udev/devices/net/tun: Function mknod failed: Operation not permitted
cpio: lib/udev/devices/loop01: Function mknod failed: Operation not permitted
cpio: lib/udev/devices/null: Function mknod failed: Operation not permitted
cpio: lib/udev/devices/console: Function mknod failed: Operation not permitted
cpio: lib/udev/devices/loop00: Function mknod failed: Operation not permitted
134992 blocks

Enable gdb at boot / debug shell

Let's assume we have these two firmware:

~/fw$ ls
asa924-k8.bin  asa981-smp-k8.bin

We enable gdb with -g and remove some unused files with -f to be able to repack the firmware (the compressed rootfs needs to be smaller than the original one). We also patch lina to add a debug shell with -b. As we see below, it worked for asa924-k8.bin but it failed for asa981-smp-k8.bin. This is because we haven't added the target to our json database:

~/fw# unpack_repack_bin.sh -i . -f -g -b -o .
[unpack_repack_bin] Directory of firmware detected: .
[unpack_repack_bin] unpack_one: asa924-k8.bin
[bin] Unpacking...
[bin] Writing /home/user/fw/asa924-k8-initrd-original.gz (29013841 bytes)...
[bin] unpack: Writing /home/user/fw/asa924-k8-vmlinuz (1368176 bytes)...
134992 blocks
[unpack_repack_bin] modify_one: asa924-k8.bin
[unpack_repack_bin] ENABLE GDB
[unpack_repack_bin] FREE SPACE IN .BIN
[unpack_repack_bin] Using 32-bit firmware
[unpack_repack_bin] Adding debug shell for 192.168.210.78:4444
[lina] WARN: No index specified. Will guess based on lina path...
[lina] Using index: 132 for asa924-k8.bin
[lina] Input file: /home/user/fw/work/asa/bin/lina
[lina] Size of clean lina: 43386588 bytes
[lina] Patching lina offset: 0x3db00 with len = 445 bytes
[lina] Output file: /home/user/fw/work/asa/bin/lina
[unpack_repack_bin] repack_one: asa924-k8.bin
132192 blocks
[bin] Repacking...
[bin] repack: Writing ./asa924-k8-debugshell-gdbserver.bin (30597120 bytes)...
[unpack_repack_bin] MD5: 6ee6af342a5b1ef31d633fca6dfa0d1a  ./asa924-k8-debugshell-gdbserver.bin
[unpack_repack_bin] CLEANUP
[unpack_repack_bin] unpack_one: asa981-smp-k8.bin
[bin] Unpacking...
[bin] Writing /home/user/fw/asa981-smp-k8-initrd-original.gz (100973358 bytes)...
[bin] Could not find Direct booting from string
[bin] Probably handling a 64-bit firmware...
[bin] unpack: Writing /home/user/fw/asa981-smp-k8-vmlinuz (3544992 bytes)...
458699 blocks
[unpack_repack_bin] modify_one: asa981-smp-k8.bin
[unpack_repack_bin] ENABLE GDB
[unpack_repack_bin] FREE SPACE IN .BIN
[unpack_repack_bin] Using 32-bit firmware
[unpack_repack_bin] Adding debug shell for 192.168.210.78:4444
[lina] WARN: No index specified. Will guess based on lina path...
[lina] [x] Failed to get target index matching bin name
/path/asafw/lina.py -b asa981-smp-k8.bin -f /home/user/fw/work/asa/bin/lina -o /home/user/fw/work/asa/bin/lina -c 192.168.210.78 -p 4444 -d /path/to/asadbg/asadb.json failed

As you can see we get an additional firmware with gdb enabled: asa924-k8-debugshell-gdbserver.bin that can be used with asadbg.

~/fw# ls
asa924-k8.bin                       asa981-smp-k8.bin                   asa981-smp-k8-initrd-original.gz  work
asa924-k8-debugshell-gdbserver.bin  asa981-smp-k8-initrd-original.cpio  asa981-smp-k8-vmlinuz

Also the latest extracted rootfs is kept in work for debugging purpose. The remaining files for asa981-smp-* are there because of the failure. You can use the idahunt scripts in asadbg to import the new lina. You can more specifically refer to the Importing additional symbols section in the README.

Retrieve lina and co files for future analysis

Because firmware files are quite big, and extracted files are even worse, it may be interesting to extract each firmware, get the lina, lina_monitor files and then delete temporary extracted files.

You can do it with the following command line:

$ unpack_repack_bin.sh -u -i /home/user/fw/ --linabins /home/user/linabins/ --delete-extracted
[unpack_repack_bin] Created /home/user/linabins/ directory
[unpack_repack_bin] Directory of firmware detected: /home/user/fw/
[unpack_repack_bin] extract_bin: asa924-25-k8.bin
[unpack_repack_bin] Extracted firmware to /home/user/fw/_asa924-25-k8.bin.extracted
[unpack_repack_bin] Firmware uses regular rootfs/ dir
[unpack_repack_bin] Extracting /home/user/fw/_asa924-25-k8.bin.extracted/rootfs/rootfs.img into /home/user/fw/_asa924-25-k8.bin.extracted/rootfs
[unpack_repack_bin] Deleting extracted files
[unpack_repack_bin] Deleting "/home/user/fw/_asa924-25-k8.bin.extracted"
[unpack_repack_bin] extract_bin: asa924-27-k8.bin
[unpack_repack_bin] Extracted firmware to /home/user/fw/_asa924-27-k8.bin.extracted
[unpack_repack_bin] Firmware uses regular rootfs/ dir
[unpack_repack_bin] Extracting /home/user/fw/_asa924-27-k8.bin.extracted/rootfs/rootfs.img into /home/user/fw/_asa924-27-k8.bin.extracted/rootfs
[unpack_repack_bin] Deleting extracted files
[unpack_repack_bin] Deleting "/home/user/fw/_asa924-27-k8.bin.extracted"
[unpack_repack_bin] extract_bin: asa924-k8.bin
[unpack_repack_bin] Extracted firmware to /home/user/fw/_asa924-k8.bin.extracted
[unpack_repack_bin] Firmware uses regular rootfs/ dir
[unpack_repack_bin] Extracting /home/user/fw/_asa924-k8.bin.extracted/rootfs/rootfs.img into /home/user/fw/_asa924-k8.bin.extracted/rootfs
[unpack_repack_bin] Deleting extracted files
[unpack_repack_bin] Deleting "/home/user/fw/_asa924-k8.bin.extracted"
$ tree /home/user/linabins/
/home/user/linabins/
├── asa924-25-k8.bin
│   ├── lina
│   └── lina_monitor
├── asa924-27-k8.bin
│   ├── lina
│   └── lina_monitor
└── asa924-k8.bin
    ├── lina
    └── lina_monitor

3 directories, 6 files

unpack_repack_qcow2.sh

Extract one firmware

You need to be root even if you just want to unpack firmware:

$ unpack_repack_qcow2.sh -i asav941-200.qcow2 -u
[unpack_repack_qcow2] You need to be root to mount/unmount the qcow2

You can extract one asav*.qcow2 image with the following. Again -u is used to unpack only.

~/fw_qcow2# unpack_repack_qcow2.sh -i asav941-200.qcow2 -u
[unpack_repack_qcow2] Using input qcow2 file: asav941-200.qcow2
[unpack_repack_qcow2] Using template qcow2 file: asav941-200.qcow2
[unpack_repack_qcow2] Using output qcow2 file: /home/user/fw_qcow2/asav941-200-repacked.qcow2
[unpack_repack_qcow2] Command line: -f 
[unpack_repack_qcow2] extract_one: asav941-200.qcow2
[unpack_repack_qcow2] Mounted /dev/nbd01 to /home/user/mnt/qcow2
[unpack_repack_qcow2] Copied asa941-200-smp-k8.bin to /home/user/fw_qcow2/bin/asav941-200.qcow2
[unpack_repack_qcow2] Unmounted /home/user/mnt/qcow2
[unpack_repack_bin] Single firmware detected
[unpack_repack_bin] extract_one: asav941-200.qcow2

DECIMAL       HEXADECIMAL     DESCRIPTION
--------------------------------------------------------------------------------
74656         0x123A0         SHA256 hash constants, little endian
133120        0x20800         Microsoft executable, portable (PE)
149183        0x246BF         gzip compressed data, maximum compression, from Unix, last modified: 1970-01-01 00:00:00 (null date)
3447872       0x349C40        gzip compressed data, has original file name: "rootfs.img", from Unix, last modified: 2015-05-12 00:16:47
68057161      0x40E7849       Zip archive data, at least v2.0 to extract, name: com/cisco/webvpn/csvrjavaloader64.dll
68700208      0x4184830       Zip archive data, at least v2.0 to extract, name: libAliasHandlerWrapper-mac.jnilib

[unpack_repack_bin] Extracted firmware to /home/user/fw_qcow2/bin/_asav941-200.qcow2.extracted
[unpack_repack_bin] Firmware uses regular rootfs/ dir
[unpack_repack_bin] Extracting /home/user/fw_qcow2/bin/_asav941-200.qcow2.extracted/rootfs/rootfs.img into /home/user/fw_qcow2/bin/_asav941-200.qcow2.extracted/rootfs
334503 blocks
[unpack_repack_bin] Keeping rootfs
[unpack_repack_bin] Deleting "/home/user/fw_qcow2/bin/_asav941-200.qcow2.extracted/rootfs.img"
[unpack_repack_bin] Deleting "/home/user/fw_qcow2/bin/_asav941-200.qcow2.extracted/246BF"
[unpack_repack_bin] Deleting "/home/user/fw_qcow2/bin/_asav941-200.qcow2.extracted/40E7849.zip"

We can access the extracted rootfs or use it with asadbg.

~/fw_qcow2# ls
asav941-200.qcow2  _asav941-200.qcow2.extracted  asav971.qcow2  bin
~/fw_qcow2# ls _asav941-200.qcow2.extracted/rootfs/
asa  bin  boot  dev  etc  home  init  lib  lib64  media  mnt  proc  root  run  sbin  sys  tmp  usr  var

Enable gdb at boot / disable ASLR

You can enable gdb at boot with -g and disable ASLR with -A. This allows debugging the firmware with gdb after loading it with GNS3:

~/fw_qcow2# unpack_repack_qcow2.sh -i asav962-7.qcow2 -g -A 
[unpack_repack_qcow2] Using input qcow2 file: asav962-7.qcow2
[unpack_repack_qcow2] Using template qcow2 file: asav962-7.qcow2
[unpack_repack_qcow2] Using output qcow2 file: /home/user/fw_qcow2/asav962-7-repacked.qcow2
[unpack_repack_qcow2] Command line: -f  -g -A
[unpack_repack_qcow2] extract_repack_one: asav962-7.qcow2
[unpack_repack_qcow2] Mounted /dev/nbd01 to /home/user/mnt/qcow2
[unpack_repack_qcow2] Copied asa962-7-smp-k8.bin to /home/user/fw_qcow2/bin/asav962-7.qcow2
[unpack_repack_qcow2] Unmounted /home/user/mnt/qcow2
[unpack_repack_bin] Single firmware detected
[unpack_repack_bin] unpack_one: asav962-7.qcow2
[bin] Unpacking...
[bin] Writing /home/user/fw_qcow2/bin/asav962-7-initrd-original.gz (86019506 bytes)...
[bin] Could not find Direct booting from string
[bin] Probably handling a 64-bit firmware...
[bin] unpack: Writing /home/user/fw_qcow2/bin/asav962-7-vmlinuz (3624768 bytes)...
455629 blocks
[unpack_repack_bin] modify_one: asav962-7.qcow2
[unpack_repack_bin] DISABLE ASLR
[unpack_repack_bin] ENABLE GDB
[unpack_repack_bin] FREE SPACE IN .BIN
[unpack_repack_bin] repack_one: asav962-7.qcow2
442851 blocks
[bin] Repacking...
[bin] repack: Writing /home/user/fw_qcow2/bin/asav962-7-repacked-gdbserver.qcow2 (89874432 bytes)...
[unpack_repack_bin] MD5: b898d5db383a95fa412527f8b1cd52e4  /home/user/fw_qcow2/bin/asav962-7-repacked-gdbserver.qcow2
[unpack_repack_bin] CLEANUP
[unpack_repack_qcow2] Mounted /dev/nbd01 to /home/user/mnt/qcow2
[unpack_repack_qcow2] Moved modified .bin inside of /home/user/fw_qcow2/asav962-7-repacked.qcow2
[unpack_repack_qcow2] Unmounted /home/user/mnt/qcow2

The obtained /home/user/fw_qcow2/asav962-7-repacked.qcow2 has both gdb enabled at boot and ASLR disabled.

Retrieve lina and co files for future analysis

Similarly to the asa*.bin files, but with a different command line and as root:

# for QCOW2FILE in $(find /home/user/fw/*); do echo --- Handling $QCOW2FILE; unpack_repack_qcow2.sh -u -i $QCOW2FILE; done
--- Handling /home/user/fw/asav962-2.qcow2
[unpack_repack_qcow2] Using input qcow2 file: /home/user/fw/asav962-2.qcow2
[unpack_repack_qcow2] Using template qcow2 file: /home/user/fw/asav962-2.qcow2
[unpack_repack_qcow2] Using output qcow2 file: /home/user/fw/asav962-2-repacked.qcow2
[unpack_repack_qcow2] Command line: -f 
[unpack_repack_qcow2] extract_one: /home/user/fw/asav962-2.qcow2
[unpack_repack_qcow2] Mounting /home/user/fw/asav962-2.qcow2 to /dev/nbd0
[unpack_repack_qcow2] Mounted /dev/nbd0p1 to /home/user/mnt/qcow2
[unpack_repack_qcow2] Copied asa962-2-smp-k8.bin to /home/user/fw/bin/asav962-2.qcow2
[unpack_repack_qcow2] Unmounted /home/user/mnt/qcow2
[unpack_repack_qcow2] Disconnecting /dev/nbd0
[unpack_repack_bin] Single firmware detected
[unpack_repack_bin] extract_bin: asav962-2.qcow2
[unpack_repack_bin] Extracted firmware to /home/user/fw/bin/_asav962-2.qcow2.extracted
[unpack_repack_bin] Firmware uses regular rootfs/ dir
[unpack_repack_bin] Extracting /home/user/fw/bin/_asav962-2.qcow2.extracted/rootfs/rootfs.img into /home/user/fw/bin/_asav962-2.qcow2.extracted/rootfs
--- Handling /home/user/fw/asav962-7.qcow2
[unpack_repack_qcow2] Using input qcow2 file: /home/user/fw/asav962-7.qcow2
[unpack_repack_qcow2] Using template qcow2 file: /home/user/fw/asav962-7.qcow2
[unpack_repack_qcow2] Using output qcow2 file: /home/user/fw/asav962-7-repacked.qcow2
[unpack_repack_qcow2] Command line: -f 
[unpack_repack_qcow2] extract_one: /home/user/fw/asav962-7.qcow2
[unpack_repack_qcow2] Mounting /home/user/fw/asav962-7.qcow2 to /dev/nbd0
[unpack_repack_qcow2] Mounted /dev/nbd0p1 to /home/user/mnt/qcow2
[unpack_repack_qcow2] Copied asa962-7-smp-k8.bin to /home/user/fw/bin/asav962-7.qcow2
[unpack_repack_qcow2] Unmounted /home/user/mnt/qcow2
[unpack_repack_qcow2] Disconnecting /dev/nbd0
[unpack_repack_bin] Single firmware detected
[unpack_repack_bin] extract_bin: asav962-7.qcow2
[unpack_repack_bin] Extracted firmware to /home/user/fw/bin/_asav962-7.qcow2.extracted
[unpack_repack_bin] Firmware uses regular rootfs/ dir
[unpack_repack_bin] Extracting /home/user/fw/bin/_asav962-7.qcow2.extracted/rootfs/rootfs.img into /home/user/fw/bin/_asav962-7.qcow2.extracted/rootfs
--- Handling /home/user/fw/asav962.qcow2
[unpack_repack_qcow2] Using input qcow2 file: /home/user/fw/asav962.qcow2
[unpack_repack_qcow2] Using template qcow2 file: /home/user/fw/asav962.qcow2
[unpack_repack_qcow2] Using output qcow2 file: /home/user/fw/asav962-repacked.qcow2
[unpack_repack_qcow2] Command line: -f 
[unpack_repack_qcow2] extract_one: /home/user/fw/asav962.qcow2
[unpack_repack_qcow2] Mounting /home/user/fw/asav962.qcow2 to /dev/nbd0
[unpack_repack_qcow2] Mounted /dev/nbd0p1 to /home/user/mnt/qcow2
[unpack_repack_qcow2] Copied asa962-smp-k8.bin to /home/user/fw/bin/asav962.qcow2
[unpack_repack_qcow2] Unmounted /home/user/mnt/qcow2
[unpack_repack_qcow2] Disconnecting /dev/nbd0
[unpack_repack_bin] Single firmware detected
[unpack_repack_bin] extract_bin: asav962.qcow2
[unpack_repack_bin] Extracted firmware to /home/user/fw/bin/_asav962.qcow2.extracted
[unpack_repack_bin] Firmware uses regular rootfs/ dir
[unpack_repack_bin] Extracting /home/user/fw/bin/_asav962.qcow2.extracted/rootfs/rootfs.img into /home/user/fw/bin/_asav962.qcow2.extracted/rootfs
# cd /home/user/fw/
# linabins.sh /home/user/linabins
_asav962-2.qcow2.extracted/rootfs/asa/bin/lina
_asav962-2.qcow2.extracted/rootfs/asa/bin/lina_monitor
_asav962-7.qcow2.extracted/rootfs/asa/bin/lina
_asav962-7.qcow2.extracted/rootfs/asa/bin/lina_monitor
_asav962.qcow2.extracted/rootfs/asa/bin/lina
_asav962.qcow2.extracted/rootfs/asa/bin/lina_monitor
# tree /home/user/linabins
/home/user/linabins
├── asav962-2.qcow2
│   ├── lina
│   └── lina_monitor
├── asav962-7.qcow2
│   ├── lina
│   └── lina_monitor
└── asav962.qcow2
    ├── lina
    └── lina_monitor

3 directories, 6 files

Firmware helpers

bin.py

bin.py is used to manipulate asa*.bin images. It is mainly used by unpack_repack_bin.sh and unpack_repack_qcow2.sh.

$ bin.py -h
usage: bin.py [-h] [-f FIRMWARE_FILE] [-g GZIP_FILE] [-u] [-r] [-t] [-T]
              [-o OUTPUTFILE]

optional arguments:
  -h, --help            show this help message and exit
  -f FIRMWARE_FILE, --firmware-file FIRMWARE_FILE
  -g GZIP_FILE, --gzip-file GZIP_FILE
  -u, --unpack
  -r, --repack
  -t, --root
  -T, --unroot
  -o OUTPUTFILE, --output-file OUTPUTFILE

It can still be used to quickly extract a Linux kernel and a rootfs from an asa*.bin firmware:

$ bin.py -f asa924-k8.bin -u
[bin] Unpacking...
[bin] Writing asa924-k8-initrd-original.gz (29013841 bytes)...
[bin] unpack: Writing asa924-k8-vmlinuz (1368176 bytes)...
$ file asa924-k8-*
asa924-k8-initrd-original.gz:       gzip compressed data, was "rootfs.img", from Unix, last modified: Wed Jul 15 06:19:52 2015
asa924-k8-vmlinuz:                  x86 boot sector

You can also use it to root a single binary:

$ bin.py -f asa924-k8.bin -t
[bin] root: Writing asa924-k8-rooted.bin (30597120 bytes)...

We check the differences in the two asa*.bin:

$ xxd asa924-k8.bin > b1.hex
$ xxd asa924-k8-rooted.bin > b2.hex
$ diff b1.hex b2.hex 
1907204,1907206c1907204,1907206
< 1d1a030: 0048 2000 70e0 1400 51b7 ba01 7175 6965  .H .p...Q...quie
< 1d1a040: 7420 6c6f 676c 6576 656c 3d30 2061 7574  t loglevel=0 aut
< 1d1a050: 6f20 6b73 7461 636b 3d31 3238 2072 6562  o kstack=128 reb
---
> 1d1a030: 0048 2000 70e0 1400 51b7 ba01 7264 696e  .H .p...Q...rdin
> 1d1a040: 6974 3d2f 6269 6e2f 7368 2020 2020 2020  it=/bin/sh      
> 1d1a050: 2020 6b73 7461 636b 3d31 3238 2072 6562    kstack=128 reb

cpio.sh

The cpio.sh is used to manipulate CPIO images (rootfs). It is mainly used by unpack_repack_bin.sh and unpack_repack_qcow2.sh. It's a pretty slim wrapper around cpio to just combine a few commands together for convenience:

$ cpio.sh -h
Unknown option
-c  Create cpio image
-d  Directory to turn into cpio image
-e  Extract cpio image
-o  Output file
Examples:
Create ./cpio.sh -c -d rootfs -o rootfs.img
Extract ./cpio.sh -e -i rootfs.img

If you want to play with it as standalone, you can do the following. After extracting a gzipped rootfs with bin.py, we decompress it:

$ gunzip asa924-k8-initrd-original.gz
$ file asa924-k8-initrd-original 
asa924-k8-initrd-original: ASCII cpio archive (SVR4 with no CRC)

Now we extract the rootfs into the rootfs_924 folder:

$ cpio.sh -e -i asa924-k8-initrd-original -d rootfs_924
$ ls rootfs_924/
asa  bin  boot  config  dev  etc  home  init  lib  lib64  linuxrc  mnt  opt  proc  root  sbin  share  sys  tmp  usr  var

lina.py

lina.py is used to patch the main Cisco ASA executable a.k.a. lina. It is mainly used by unpack_repack_bin.sh and unpack_repack_qcow2.sh.

$ lina.py -h
usage: lina.py [-h] [-c CBHOST] [-p CBPORT] [--log-port CBLOGPORT]
               [-i TARGET_INDEX] [-f LINA_FILE] [-b BIN_NAME]
               [-o LINA_FILE_OUT] [--hook] [-v] [-d TARGET_FILE]

optional arguments:
  -h, --help            show this help message and exit
  -c CBHOST             Attacker or debugger IP addr for reverse shell
  -p CBPORT             Attacker or debugger port for reverse shell
  --log-port CBLOGPORT  Port for sending hook logs
  -i TARGET_INDEX       Index of the target (use -l to list them all)
  -f LINA_FILE          Input lina file
  -b BIN_NAME           Input bin name
  -o LINA_FILE_OUT      Output lina file
  --hook                Insert lina hooks
  -v                    Display more info
  -d TARGET_FILE        JSON db name

We can use it as a standalone tool to patch lina to contain a debug shell. We use the asadbg.json from asadbg as it already contains addresses required. Otherwise you may need to use idahunt to find them first.

$ lina.py -c 192.168.1.1 -p 5555 -f _asa924-k8.bin.extracted/rootfs/asa/bin/lina -b asa924-k8.bin -o lina_patched -d /path/to/asadbg/asadb.json 
[lina] WARN: No index specified. Will guess based on lina path...
[lina] Using index: 0 for asa924-k8.bin
[lina] Input file: _asa924-k8.bin.extracted/rootfs/asa/bin/lina
[lina] Size of clean lina: 43386588 bytes
[lina] Patching lina offset: 0x3db00 with len = 445 bytes
[lina] Output file: lina_patched

We can check that it just patched one function with the reverse debug shell shellcode:

$ xxd _asa924-k8.bin.extracted/rootfs/asa/bin/lina > b1.hex
$ xxd lina_patched > b2.hex
$ diff b1.hex b2.hex 
15793,15820c15793,15820
< 003db00: 5589 e557 5653 81ec 8c05 0000 8b7d 208d  U..WVS.......} .
< 003db10: 45f0 c745 f001 0000 0066 c745 b0c1 1085  E..E.....f.E....
< 003db20: ffc7 45b4 0400 0000 8945 b866 c745 bc00  ..E......E.f.E..
< 003db30: 00c7 45c0 0000 0000 c745 c400 0000 0074  ..E......E.....t
< 003db40: 088b 4520 66c7 0000 008b 7524 85f6 7409  ..E f.....u$..t.
< 003db50: 8b55 24c7 0200 0000 008d 95f4 feff ff31  .U$............1
< 003db60: db89 d789 d8b9 2000 0000 f3ab c785 f4fe  ...... .........
< 003db70: ffff 0100 0000 c785 50ff ffff ffff ffff  ........P.......
< 003db80: 8b45 0889 1424 8985 68ff ffff e8bf 3525  .E...$..h.....5%
< 003db90: 01c7 85a4 faff ff00 0000 0085 c089 85a0  ................
< 003dba0: faff ff0f 849f 0400 008b 4018 8db5 38fe  ..........@...8.
< 003dbb0: ffff 89f7 8904 24e8 24a9 2501 b92f 0000  ......$.$.%../..
< 003dbc0: 0089 85b0 faff ff89 d8f3 abc7 8538 feff  .............8..
< 003dbd0: ff00 0000 008b 95a0 faff ff8b 7d08 8b42  ............}..B
< 003dbe0: 1889 853c feff ff8b 4244 897c 2404 c785  ...<....BD.|$...
< 003dbf0: 4cfe ffff ffff ffff c785 48fe ffff ffff  L.........H.....
< 003dc00: ffff 8985 44fe ffff 8934 24e8 e0f8 ffff  ....D....4$.....
< 003dc10: b909 0000 0089 8590 faff ff8d 8574 ffff  .............t..
< 003dc20: ff89 859c faff ff89 c789 d8f3 abc7 85a4  ................
< 003dc30: faff ffff ffff ff83 bd90 faff ffff 0f84  ................
< 003dc40: 1c04 0000 8d85 b4fa ffff b1a1 8985 98fa  ................
< 003dc50: ffff 89c7 89d8 f3ab 8d95 b4fa ffff 8d9d  ................
< 003dc60: 33fb ffff 8b4d 0ceb 138d b426 0000 0000  3....M.....&....
< 003dc70: 8802 83c2 0139 da74 0a83 c101 0fb6 0184  .....9.t........
< 003dc80: c075 edc6 0200 8d9d b3fb ffff 8b4d 108d  .u...........M..
< 003dc90: 9534 fbff ffeb 0d90 8802 83c2 0139 da74  .4...........9.t
< 003dca0: 0a83 c101 0fb6 0184 c075 edc6 0200 8b55  .........u.....U
< 003dcb0: 148d bd6c 2e00 008b 4508 c785 10fd ffff  ...l....E.......
---
> 003db00: b840 bc2a 09ff d0b8 0200 0000 cd80 85c0  .@.*............
> 003db10: 0f85 a101 0000 baed 0100 00b9 c200 0000  ................
> 003db20: 682f 7368 0068 2f74 6d70 8d1c 24b8 0500  h/sh.h/tmp..$...
> 003db30: 0000 cd80 50eb 3159 8b11 8d49 0489 c3b8  ....P.1Y...I....
> 003db40: 0400 0000 cd80 5bb8 0600 0000 cd80 8d1c  ......[.........
> 003db50: 2431 d252 538d 0c24 b80b 0000 00cd 8031  $1.RS..$.......1
> 003db60: dbb8 0100 0000 cd80 e8ca ffff ff46 0100  .............F..
> 003db70: 007f 454c 4601 0101 0000 0000 0000 0000  ..ELF...........
> 003db80: 0002 0003 0001 0000 0054 8004 0834 0000  .........T...4..
> 003db90: 0000 0000 0000 0000 0034 0020 0001 0000  .........4. ....
> 003dba0: 0000 0000 0001 0000 0000 0000 0000 8004  ................
> 003dbb0: 0800 8004 08f2 0000 00f2 0000 0007 0000  ................
> 003dbc0: 0000 1000 0055 89e5 83ec 106a 006a 016a  .....U.....j.j.j
> 003dbd0: 028d 0c24 bb01 0000 00b8 6600 0000 cd80  ...$......f.....
> 003dbe0: 83c4 0c89 45fc 687f 0000 0168 0200 0438  ....E.h....h...8
> 003dbf0: 8d14 246a 1052 508d 0c24 bb03 0000 00b8  ..$j.RP..$......
> 003dc00: 6600 0000 cd80 83c4 1485 c07d 186a 006a  f..........}.j.j
> 003dc10: 018d 1c24 31c9 b8a2 0000 00cd 8083 c408  ...$1...........
> 003dc20: ebc4 8b45 fc83 ec20 8d0c 24ba 0300 0000  ...E... ..$.....
> 003dc30: 8b5d fcc7 0105 0100 00b8 0400 0000 cd80  .]..............
> 003dc40: ba04 0000 00b8 0300 0000 cd80 c701 0501  ................
> 003dc50: 0001 c741 04c0 a801 0166 c741 0815 b3ba  ...A.....f.A....
> 003dc60: 0a00 0000 b804 0000 00cd 80ba 2000 0000  ............ ...
> 003dc70: b803 0000 00cd 8083 c420 8b5d fcb9 0200  ......... .]....
> 003dc80: 0000 b83f 0000 00cd 8049 7df6 31d2 682d  ...?.....I}.1.h-
> 003dc90: 6900 0089 e768 2f73 6800 682f 6269 6e89  i....h/sh.h/bin.
> 003dca0: e352 5753 8d0c 24b8 0b00 0000 cd80 31db  .RWS..$.......1.
> 003dcb0: b801 0000 00cd 80b8 0100 0000 c3fd ffff  ................

Datamining

info.sh

The info.sh script allows listing mitigations on the firmare in the current folder.

$ info.sh -h
Display/save mitigations and additional info for all firmware in the current folder
Usage: info.sh [--save-result --db-name <json_db>]

Once you have extracted all firmware, you can analyse them:

fw$ ls
_asa802-k8.bin.extracted         _asa825-51-k8.bin.extracted      _asa844-5-k8.bin.extracted    _asa911-4-k8.bin.extracted    _asa922-4-k8.bin.extracted        _asa944-smp-k8.bin.extracted
_asa803-k8.bin.extracted         _asa825-52-k8.bin.extracted      _asa844-9-k8.bin.extracted    _asa911-k8.bin.extracted      _asa922-4-smp-k8.bin.extracted    _asa951-smp-k8.bin.extracted
_asa804-16-k8.bin.extracted      _asa825-57-k8.bin.extracted      _asa844-k8.bin.extracted      _asa911-smp-k8.bin.extracted  _asa922-k8.bin.extracted          _asa952-smp-k8.bin.extracted
_asa804-k8.bin.extracted         _asa825-59-k8.bin.extracted      _asa845-k8.bin.extracted      _asa912-k8.bin.extracted      _asa923-k8.bin.extracted          _asa953-smp-k8.bin.extracted
_asa805-23-k8.bin.extracted      _asa825-k8.bin.extracted         _asa845-smp-k8.bin.extracted  _asa912-smp-k8.bin.extracted  _asa923-smp-k8.bin.extracted      _asa961-10-smp-k8.bin.extracted
_asa805-28-k8.bin.extracted      _asa825-smp-k8.bin.extracted     _asa846-5-k8.bin.extracted    _asa913-k8.bin.extracted      _asa924-10-k8.bin.extracted       _asa961-smp-k8.bin.extracted
_asa805-31-k8.bin.extracted      _asa831-k8.bin.extracted         _asa846-k8.bin.extracted      _asa913-smp-k8.bin.extracted  _asa924-13-smp-k8.bin.extracted   _asa962-3-smp-k8.bin.extracted
_asa805-k8.bin.extracted         _asa831-smp-k8.bin.extracted     _asa846-smp-k8.bin.extracted  _asa914-5-k8.bin.extracted    _asa924-14-k8.bin.extracted       _asa962-smp-k8.bin.extracted
_asa811-smp-k8.bin.extracted     _asa832-13-k8.bin.extracted      _asa847-15-k8.bin.extracted   _asa914-k8.bin.extracted      _asa924-18-k8.bin.extracted       _asa971-smp-k8.bin.extracted
_asa812-23-smp-k8.bin.extracted  _asa832-25-k8.bin.extracted      _asa847-26-k8.bin.extracted   _asa914-smp-k8.bin.extracted  _asa924-5-k8.bin.extracted        _asav932-200.qcow2.extracted
_asa812-49-smp-k8.bin.extracted  _asa832-39-k8.bin.extracted      _asa847-28-k8.bin.extracted   _asa915-12-k8.bin.extracted   _asa924-5-smp-k8.bin.extracted    _asav933-10.qcow2.extracted
_asa812-50-smp-k8.bin.extracted  _asa832-40-k8.bin.extracted      _asa847-29-k8.bin.extracted   _asa915-16-k8.bin.extracted   _asa924-8-k8.bin.extracted        _asav933-11.qcow2.extracted
_asa812-55-smp-k8.bin.extracted  _asa832-44-k8.bin.extracted      _asa847-30-k8.bin.extracted   _asa915-19-k8.bin.extracted   _asa924-8-smp-k8.bin.extracted    _asav933-9.qcow2.extracted
_asa812-56-smp-k8.bin.extracted  _asa832-44-smp-k8.bin.extracted  _asa847-31-k8.bin.extracted   _asa915-21-k8.bin.extracted   _asa924-k8.bin.extracted          _asav941-13.qcow2.extracted
_asa812-smp-k8.bin.extracted     _asa832-4-k8.bin.extracted       _asa847-k8.bin.extracted      _asa915-k8.bin.extracted      _asa924-smp-k8.bin.extracted      _asav941-200.qcow2.extracted
_asa821-k8.bin.extracted         _asa832-k8.bin.extracted         _asa847-smp-k8.bin.extracted  _asa915-smp-k8.bin.extracted  _asa931-smp-k8.bin.extracted      _asav941-6.qcow2.extracted
_asa822-k8.bin.extracted         _asa832-smp-k8.bin.extracted     _asa861-smp-k8.bin.extracted  _asa916-10-k8.bin.extracted   _asa932-200-smp-k8.bin.extracted  _asav941.qcow2.extracted
_asa822-smp-k8.bin.extracted     _asa841-11-k8.bin.extracted      _asa901-k8.bin.extracted      _asa916-11-k8.bin.extracted   _asa932-smp-k8.bin.extracted      _asav942-6.qcow2.extracted
_asa823-k8.bin.extracted         _asa841-k8.bin.extracted         _asa902-k8.bin.extracted      _asa916-4-k8.bin.extracted    _asa933-11-smp-k8.bin.extracted   _asav942.qcow2.extracted
_asa823-smp-k8.bin.extracted     _asa841-smp-k8.bin.extracted     _asa902-smp-k8.bin.extracted  _asa916-k8.bin.extracted      _asa933-7-smp-k8.bin.extracted    _asav952-204.qcow2.extracted
_asa824-4-k8.bin.extracted       _asa842-8-k8.bin.extracted       _asa903-k8.bin.extracted      _asa916-smp-k8.bin.extracted  _asa933-9-smp-k8.bin.extracted    _asav961.qcow2.extracted
_asa824-k8.bin.extracted         _asa842-k8.bin.extracted         _asa903-smp-k8.bin.extracted  _asa917-12-k8.bin.extracted   _asa933-smp-k8.bin.extracted      _asav962-2.qcow2.extracted
_asa824-smp-k8.bin.extracted     _asa842-smp-k8.bin.extracted     _asa904-38-k8.bin.extracted   _asa917-13-k8.bin.extracted   _asa941-13-smp-k8.bin.extracted   _asav962-7.qcow2.extracted
_asa825-13-k8.bin.extracted      _asa843-8-k8.bin.extracted       _asa904-39-k8.bin.extracted   _asa917-4-k8.bin.extracted    _asa941-smp-k8.bin.extracted      _asav962.qcow2.extracted
_asa825-22-k8.bin.extracted      _asa843-k8.bin.extracted         _asa904-40-k8.bin.extracted   _asa917-6-k8.bin.extracted    _asa942-11-smp-k8.bin.extracted   _asav971.qcow2.extracted
_asa825-26-k8.bin.extracted      _asa843-smp-k8.bin.extracted     _asa904-42-k8.bin.extracted   _asa917-9-k8.bin.extracted    _asa942-6-smp-k8.bin.extracted
_asa825-33-k8.bin.extracted      _asa844-1-k8.bin.extracted       _asa904-5-k8.bin.extracted    _asa917-k8.bin.extracted      _asa942-smp-k8.bin.extracted
_asa825-41-k8.bin.extracted      _asa844-1-smp-k8.bin.extracted   _asa904-k8.bin.extracted      _asa921-k8.bin.extracted      _asa943-12-smp-k8.bin.extracted
_asa825-46-k8.bin.extracted      _asa844-3-k8.bin.extracted       _asa904-smp-k8.bin.extracted  _asa921-smp-k8.bin.extracted  _asa943-smp-k8.bin.extracted
fw$ info.sh --save-result --db-name /path/to/asafw/asadb.json

A database with already a bunch of firmware version is provided in the repo as asadb.json.

If you simply want to list the mitigations, you simply go to the root folder containing all the extracted firmware and use it without any argument:

$ info.sh

info.py

The following script is used by info.sh to fill a json database.

$ info.py -h
usage: info.py [-h] [-l] [-u UPDATE_INFO] [-i BIN_NAME] [-v VERBOSE]
               [-d DBNAME]

optional arguments:
  -h, --help      show this help message and exit
  -l              List migitations in all firmware versions
  -u UPDATE_INFO  Output from info.sh to update db
  -i BIN_NAME     firmware bin name to update or display
  -v VERBOSE      display more info
  -d DBNAME       json database name to read/list info from

Outside of its use by info.sh, its main interest is using the following command to display the summary of mitigations:

asafw$ info.py -l asadbg.json

Note that info.py -l can also be used to get the index (first column) of a specific version in case it is required (e.g. for lina.py).

Mitigation summary

Below is a copy of the output of info.py -l -d asadbg.json, formatted correctly for markdown:

IDVersionArchASLRNXPIECanRELROSymStripLinuxGlibcHeap allocatorBuild dateFirmware
0008.0.232NNNNNNN2.6.17.82.3.2dlmalloc 2.6.x15-06-2007asa802-k8.bin
0018.0.332NNNNNNN2.6.17.82.3.2dlmalloc 2.6.x06-11-2007asa803-k8.bin
0028.0.432NNNNNNN2.6.17.82.3.2dlmalloc 2.6.x07-08-2008asa804-k8.bin
0038.0.4.1632NNNNNNN2.6.17.82.3.2dlmalloc 2.6.x04-12-2008asa804-16-k8.bin
0048.0.532NNNNNNN2.6.17.82.3.2dlmalloc 2.6.x02-11-2009asa805-k8.bin
0058.0.5.2332NNNNNNN2.6.17.82.3.2dlmalloc 2.6.x20-01-2011asa805-23-k8.bin
0068.0.5.2832NNNNNNN2.6.17.82.3.2dlmalloc 2.6.x26-09-2012asa805-28-k8.bin
0078.0.5.3132NNNNNNN2.6.17.82.3.2dlmalloc 2.6.x13-03-2013asa805-31-k8.bin
0088.1.132NNNNNNN2.6.17.82.3.2dlmalloc 2.8.301-03-2008asa811-smp-k8.bin
0098.1.232NNNNNNN2.6.17.82.3.2dlmalloc 2.8.309-10-2008asa812-smp-k8.bin
0108.1.2.2332NNNNNNN2.6.17.82.3.2dlmalloc 2.8.322-04-2009asa812-23-smp-k8.bin
0118.1.2.4932NNNNNNN2.6.17.82.3.2dlmalloc 2.8.322-02-2011asa812-49-smp-k8.bin
0128.1.2.5032NNNNNNN2.6.17.82.3.2dlmalloc 2.8.322-09-2011asa812-50-smp-k8.bin
0138.1.2.5532NNNNNNN2.6.17.82.3.2dlmalloc 2.8.329-02-2012asa812-55-smp-k8.bin
0148.1.2.5632NNNNNNN2.6.17.82.3.2dlmalloc 2.8.326-09-2012asa812-56-smp-k8.bin
0158.2.132NNNNNNN2.6.17.82.3.2dlmalloc 2.8.305-05-2009asa821-k8.bin
0168.2.232NNNNNNN2.6.17.82.3.2dlmalloc 2.8.311-01-2010asa822-k8.bin
0178.2.232NNNNNNN2.6.17.82.3.2dlmalloc 2.8.311-01-2010asa822-smp-k8.bin
0188.2.332NNNNNNN2.6.29.62.3.2dlmalloc 2.8.306-08-2010asa823-k8.bin
0198.2.332NNNNNNN2.6.29.62.3.2dlmalloc 2.8.306-08-2010asa823-smp-k8.bin
0208.2.432NNNNNNN2.6.29.62.3.2dlmalloc 2.8.314-12-2010asa824-k8.bin
0218.2.432NNNNNNN2.6.29.62.3.2dlmalloc 2.8.314-12-2010asa824-smp-k8.bin
0228.2.4.432NNNNNNN2.6.29.62.3.2dlmalloc 2.8.303-03-2011asa824-4-k8.bin
0238.2.532NNNNNNN2.6.29.62.3.2dlmalloc 2.8.320-05-2011asa825-k8.bin
0248.2.532NNNNNNN2.6.29.62.3.2dlmalloc 2.8.320-05-2011asa825-smp-k8.bin
0258.2.5.1332NNNNNNN2.6.29.62.3.2dlmalloc 2.8.305-09-2011asa825-13-k8.bin
0268.2.5.2232NNNNNNN2.6.29.62.3.2dlmalloc 2.8.320-01-2012asa825-22-k8.bin
0278.2.5.2632NNNNNNN2.6.29.62.3.2dlmalloc 2.8.302-03-2012asa825-26-k8.bin
0288.2.5.3332NNNNNNN2.6.29.62.3.2dlmalloc 2.8.321-08-2012asa825-33-k8.bin
0298.2.5.4132NNNNNNN2.6.29.62.3.2dlmalloc 2.8.313-03-2013asa825-41-k8.bin
0308.2.5.4632NNNNNNN2.6.29.62.3.2dlmalloc 2.8.323-08-2013asa825-46-k8.bin
0318.2.5.5132NNNNNNN2.6.29.62.3.2dlmalloc 2.8.320-08-2014asa825-51-k8.bin
0328.2.5.5232NNNNNNN2.6.29.62.3.2dlmalloc 2.8.313-10-2014asa825-52-k8.bin
0338.2.5.5732NNNNNNN2.6.29.62.3.2dlmalloc 2.8.324-03-2015asa825-57-k8.bin
0348.2.5.5932NNNNNNN2.6.29.62.3.2dlmalloc 2.8.312-02-2016asa825-59-k8.bin
0358.3.132NNNNNNN2.6.29.62.3.2dlmalloc 2.8.304-03-2010asa831-k8.bin
0368.3.132NNNNNNN2.6.29.62.3.2dlmalloc 2.8.304-03-2010asa831-smp-k8.bin
0378.3.232NNNNNNN2.6.29.62.3.2dlmalloc 2.8.330-07-2010asa832-k8.bin
0388.3.232NNNNNNN2.6.29.62.3.2dlmalloc 2.8.330-07-2010asa832-smp-k8.bin
0398.3.2.1332NNNNNNN2.6.29.62.3.2dlmalloc 2.8.319-01-2011asa832-13-k8.bin
0408.3.2.2532NNNNNNN2.6.29.62.3.2dlmalloc 2.8.326-08-2011asa832-25-k8.bin
0418.3.2.3932NNNNNNN2.6.29.62.3.2dlmalloc 2.8.330-09-2013asa832-39-k8.bin
0428.3.2.432NNNNNNN2.6.29.62.3.2dlmalloc 2.8.320-09-2010asa832-4-k8.bin
0438.3.2.4032NNNNNNN2.6.29.62.3.2dlmalloc 2.8.311-02-2014asa832-40-k8.bin
0448.3.2.4432NNNNNNN2.6.29.62.3.2dlmalloc 2.8.324-03-2015asa832-44-k8.bin
0458.3.2.4432NNNNNNN2.6.29.62.3.2dlmalloc 2.8.324-03-2015asa832-44-smp-k8.bin
0468.4.132NNNNNNN2.6.29.62.9dlmalloc 2.8.331-01-2011asa841-k8.bin
0478.4.164NNNNNNN2.6.29.62.9dlmalloc 2.8.331-01-2011asa841-smp-k8.bin
0488.4.1.1132NNNNNNN2.6.29.62.9dlmalloc 2.8.306-05-2011asa841-11-k8.bin
0498.4.232NNNNNNN2.6.29.62.9dlmalloc 2.8.315-06-2011asa842-k8.bin
0508.4.264NNNNNNN2.6.29.62.9dlmalloc 2.8.315-06-2011asa842-smp-k8.bin
0518.4.2.832NNNNNNN2.6.29.62.9dlmalloc 2.8.326-08-2011asa842-8-k8.bin
0528.4.332NNNNNNN2.6.29.62.9dlmalloc 2.8.306-01-2012asa843-k8.bin
0538.4.364NNNNNNN2.6.29.62.9dlmalloc 2.8.306-01-2012asa843-smp-k8.bin
0548.4.3.832NNNNNNN2.6.29.62.9dlmalloc 2.8.301-03-2012asa843-8-k8.bin
0558.4.432NNNNNNN2.6.29.62.9dlmalloc 2.8.321-05-2012asa844-k8.bin
0568.4.4.132NNNNNNN2.6.29.62.9dlmalloc 2.8.314-06-2012asa844-1-k8.bin
0578.4.4.164NNNNNNN2.6.29.62.9dlmalloc 2.8.314-06-2012asa844-1-smp-k8.bin
0588.4.4.332NNNNNNN2.6.29.62.9dlmalloc 2.8.311-07-2012asa844-3-k8.bin
0598.4.4.532NNNNNNN2.6.29.62.9dlmalloc 2.8.308-08-2012asa844-5-k8.bin
0608.4.4.932NNNNNNN2.6.29.62.9dlmalloc 2.8.321-09-2012asa844-9-k8.bin
0618.4.532NNNNNNN2.6.29.62.9dlmalloc 2.8.329-10-2012asa845-k8.bin
0628.4.564NNNNNNN2.6.29.62.9dlmalloc 2.8.329-10-2012asa845-smp-k8.bin
0638.4.632NNNNNNN2.6.29.62.9dlmalloc 2.8.326-04-2013asa846-k8.bin
0648.4.664NNNNNNN2.6.29.62.9dlmalloc 2.8.326-04-2013asa846-smp-k8.bin
0658.4.6.532NNNNNNN2.6.29.62.9dlmalloc 2.8.303-07-2013asa846-5-k8.bin
0668.4.732NNNNNNN2.6.29.62.9dlmalloc 2.8.330-08-2013asa847-k8.bin
0678.4.764NNNNNNN2.6.29.62.9dlmalloc 2.8.330-08-2013asa847-smp-k8.bin
0688.4.7.1532NNNNNNN2.6.29.62.9dlmalloc 2.8.325-03-2014asa847-15-k8.bin
0698.4.7.2632NNNNNNN2.6.29.62.9dlmalloc 2.8.314-01-2015asa847-26-k8.bin
0708.4.7.2832NNNNNNN2.6.29.62.9dlmalloc 2.8.324-03-2015asa847-28-k8.bin
0718.4.7.2932NNNNNNN2.6.29.62.9dlmalloc 2.8.309-09-2015asa847-29-k8.bin
0728.4.7.3032NNNNNNN2.6.29.62.9dlmalloc 2.8.321-12-2015asa847-30-k8.bin
0738.4.7.3132NNNNNNN2.6.29.62.9dlmalloc 2.8.303-02-2016asa847-31-k8.bin
0748.6.164NNNNNNN2.6.29.62.9dlmalloc 2.8.318-11-2011asa861-smp-k8.bin
0758.6.1.264NNNNNNN?2.9dlmalloc 2.8.301-06-2012asa861-2-smp-k8.bin
0768.7.1.364NNNNNNN?2.9dlmalloc 2.8.314-11-2012asa871-3-smp-k8.bin
0778.7.1.464NNNNNNN?2.9dlmalloc 2.8.306-02-2013asa871-4-smp-k8.bin
0789.0.132NNNNNNN2.6.29.62.9dlmalloc 2.8.326-10-2012asa901-k8.bin
0799.0.232NNNNNNN2.6.29.62.9dlmalloc 2.8.321-02-2013asa902-k8.bin
0809.0.264NNNNNNN2.6.29.62.9dlmalloc 2.8.321-02-2013asa902-smp-k8.bin
0819.0.332NNNNNNN2.6.29.62.9dlmalloc 2.8.319-07-2013asa903-k8.bin
0829.0.364NNNNNNN2.6.29.62.9dlmalloc 2.8.319-07-2013asa903-smp-k8.bin
0839.0.432NNNNNNN2.6.29.62.9dlmalloc 2.8.304-12-2013asa904-k8.bin
0849.0.464NNNNNNN2.6.29.62.9dlmalloc 2.8.304-12-2013asa904-smp-k8.bin
0859.0.4.3832NNNNNNN2.6.29.62.9dlmalloc 2.8.321-12-2015asa904-38-k8.bin
0869.0.4.3932NNNNNNN2.6.29.62.9dlmalloc 2.8.308-02-2016asa904-39-k8.bin
0879.0.4.4032NNNNNNN2.6.29.62.9dlmalloc 2.8.318-08-2016asa904-40-k8.bin
0889.0.4.4232NNNNNNN2.6.29.62.9dlmalloc 2.8.309-09-2016asa904-42-k8.bin
0899.0.4.4264NNNNNNN?2.9dlmalloc 2.8.309-09-2016asa904-42-smp-k8.bin
0909.0.4.532NNNNNNN2.6.29.62.9dlmalloc 2.8.319-03-2014asa904-5-k8.bin
0919.1.132NNNNNNN2.6.29.62.9dlmalloc 2.8.328-11-2012asa911-k8.bin
0929.1.164NNNNNNN2.6.29.62.9dlmalloc 2.8.328-11-2012asa911-smp-k8.bin
0939.1.1.432NNNNNNN2.6.29.62.9dlmalloc 2.8.313-03-2013asa911-4-k8.bin
0949.1.1.464NNNNNNN?2.9dlmalloc 2.8.313-03-2013asa911-4-smp-k8.bin
0959.1.232NNNNNNN2.6.29.62.9dlmalloc 2.8.309-05-2013asa912-k8.bin
0969.1.264NNNNNNN2.6.29.62.9dlmalloc 2.8.309-05-2013asa912-smp-k8.bin
0979.1.332NNNNNNN2.6.29.62.9dlmalloc 2.8.316-09-2013asa913-k8.bin
0989.1.364NNNNNNN2.6.29.62.9dlmalloc 2.8.316-09-2013asa913-smp-k8.bin
0999.1.432NNNNNNN2.6.29.62.9dlmalloc 2.8.305-12-2013asa914-k8.bin
1009.1.464NNNNNNN2.6.29.62.9dlmalloc 2.8.305-12-2013asa914-smp-k8.bin
1019.1.4.532NNNNNNN2.6.29.62.9dlmalloc 2.8.321-02-2014asa914-5-k8.bin
1029.1.532NNNNNNN2.6.29.62.9dlmalloc 2.8.327-03-2014asa915-k8.bin
1039.1.564NNNNNNN2.6.29.62.9dlmalloc 2.8.327-03-2014asa915-smp-k8.bin
1049.1.5.1232NNNNNNN2.6.29.62.9dlmalloc 2.8.320-08-2014asa915-12-k8.bin
1059.1.5.1632NNNNNNN2.6.29.62.9dlmalloc 2.8.306-10-2014asa915-16-k8.bin
1069.1.5.1932NNNNNNN2.6.29.62.9dlmalloc 2.8.323-10-2014asa915-19-k8.bin
1079.1.5.2132NNNNNNN2.6.29.62.9dlmalloc 2.8.312-12-2014asa915-21-k8.bin
1089.1.632NNNNNNN2.6.29.62.9dlmalloc 2.8.327-02-2015asa916-k8.bin
1099.1.664NNNNNNN2.6.29.62.9dlmalloc 2.8.327-02-2015asa916-smp-k8.bin
1109.1.6.1032NNNNNNN2.6.29.62.9dlmalloc 2.8.311-09-2015asa916-10-k8.bin
1119.1.6.1132NNNNNNN2.6.29.62.9dlmalloc 2.8.315-02-2016asa916-11-k8.bin
1129.1.6.432NNNNNNN2.6.29.62.9dlmalloc 2.8.307-05-2015asa916-4-k8.bin
1139.1.6.664NNNNNNN?2.9dlmalloc 2.8.303-06-2015asa916-6-smp-k8.bin
1149.1.6.632NNNNNNN?2.9dlmalloc 2.8.303-06-2015asa916-6-k8.bin
1159.1.732NNNNNNN2.6.29.62.9dlmalloc 2.8.314-01-2016asa917-k8.bin
1169.1.7.1232NNNNNNN2.6.29.62.9dlmalloc 2.8.308-12-2016asa917-12-k8.bin
1179.1.7.1332NNNNNNN2.6.29.62.9dlmalloc 2.8.304-01-2017asa917-13-k8.bin
1189.1.7.1964NNNNNNN2.6.29.62.9dlmalloc 2.8.311-08-2017asa917-19-smp-k8.bin
1199.1.7.2064NNNNNNN2.6.29.62.9dlmalloc 2.8.302-11-2017asa917-20-smp-k8.bin
1209.1.7.2032NNNNNNN2.6.29.62.9dlmalloc 2.8.302-11-2017asa917-20-k8.bin
1219.1.7.2132NNNNNNN2.6.29.62.9dlmalloc 2.8.319-12-2017asa917-21-k8.bin
1229.1.7.2164NNNNNNN2.6.29.62.9dlmalloc 2.8.319-12-2017asa917-21-smp-k8.bin
1239.1.7.2364NNNNNNN?2.9dlmalloc 2.8.301-02-2018asa917-23-smp-k8.bin
1249.1.7.2332NNNNNNN?2.9dlmalloc 2.8.301-02-2018asa917-23-k8.bin
1259.1.7.2564NNNNNNN?2.9dlmalloc 2.8.306-03-2018asa917-25-smp-k8.bin
1269.1.7.2532NNNNNNN?2.9dlmalloc 2.8.306-03-2018asa917-25-k8.bin
1279.1.7.432NNNNNNN2.6.29.62.9dlmalloc 2.8.319-02-2016asa917-4-k8.bin
1289.1.7.632NNNNNNN2.6.29.62.9dlmalloc 2.8.305-04-2016asa917-6-k8.bin
1299.1.7.932NNNNNNN2.6.29.62.9dlmalloc 2.8.318-08-2016asa917-9-k8.bin
1309.2.132NNNNNNN2.6.29.62.9dlmalloc 2.8.324-04-2014asa921-k8.bin
1319.2.164NNNNNNN2.6.29.62.9dlmalloc 2.8.324-04-2014asa921-smp-k8.bin
1329.2.232NNNNNNN2.6.29.62.9dlmalloc 2.8.326-06-2014asa922-k8.bin
1339.2.264NNNNNNN?2.9dlmalloc 2.8.326-06-2014asa922-smp-k8.bin
1349.2.2.432NNNNNNN2.6.29.62.9dlmalloc 2.8.329-07-2014asa922-4-k8.bin
1359.2.2.464NNNNNNN2.6.29.62.9dlmalloc 2.8.329-07-2014asa922-4-smp-k8.bin
1369.2.332NNNNNNN2.6.29.62.9dlmalloc 2.8.315-12-2014asa923-k8.bin
1379.2.364NNNNNNN2.6.29.62.9dlmalloc 2.8.315-12-2014asa923-smp-k8.bin
1389.2.432NNNNNNN2.6.29.62.9dlmalloc 2.8.314-07-2015asa924-k8.bin
1399.2.464NNNNNNN2.6.29.62.9dlmalloc 2.8.314-07-2015asa924-smp-k8.bin
1409.2.4.1032NNNNNNN2.6.29.62.9dlmalloc 2.8.319-04-2016asa924-10-k8.bin
1419.2.4.1364NNNNNNN2.6.29.62.9dlmalloc 2.8.322-06-2016asa924-13-smp-k8.bin
1429.2.4.1432NNNNNNN2.6.29.62.9dlmalloc 2.8.318-08-2016asa924-14-k8.bin
1439.2.4.1832NNNNNNN2.6.29.62.9dlmalloc 2.8.327-10-2016asa924-18-k8.bin
1449.2.4.1864NNNNNNN?2.9dlmalloc 2.8.327-10-2016asa924-18-smp-k8.bin
1459.2.4.2432NNNNNNN2.6.29.62.9dlmalloc 2.8.313-09-2017asa924-24-k8.bin
1469.2.4.2464NNNNNNN2.6.29.62.9dlmalloc 2.8.313-09-2017asa924-24-smp-k8.bin
1479.2.4.2564NNNNNNN2.6.29.62.9dlmalloc 2.8.314-12-2017asa924-25-smp-k8.bin
1489.2.4.2532NNNNNNN2.6.29.62.9dlmalloc 2.8.314-12-2017asa924-25-k8.bin
1499.2.4.2732NNNNNNN?2.9dlmalloc 2.8.302-02-2018asa924-27-k8.bin
1509.2.4.2764NNNNNNN?2.9dlmalloc 2.8.302-02-2018asa924-27-smp-k8.bin
1519.2.4.2832NNNNNNN?2.9dlmalloc 2.8.306-03-2018asa924-28-k8.bin
1529.2.4.532NNNNNNN2.6.29.62.9dlmalloc 2.8.321-12-2015asa924-5-k8.bin
1539.2.4.564NNNNNNN2.6.29.62.9dlmalloc 2.8.321-12-2015asa924-5-smp-k8.bin
1549.2.4.832NNNNNNN2.6.29.62.9dlmalloc 2.8.324-02-2016asa924-8-k8.bin
1559.2.4.864NNNNNNN2.6.29.62.9dlmalloc 2.8.324-02-2016asa924-8-smp-k8.bin
1569.3.164NNNNNNN2.6.29.62.9dlmalloc 2.8.323-07-2014asa931-smp-k8.bin
1579.3.264NNNNNNN3.10.192.18ptmalloc 2.x16-12-2014asa932-smp-k8.bin
1589.3.2.20064NNNNNNN3.10.192.18ptmalloc 2.x18-12-2014asa932-200-smp-k8.bin
1599.3.2.20064NNNNNNN3.10.192.18ptmalloc 2.x18-12-2014asav932-200.qcow2
1609.3.364NNNNNNN3.10.192.18ptmalloc 2.x?asa933-smp-k8.bin
1619.3.3.1064NYNNNNN3.10.192.18ptmalloc 2.x18-08-2016asav933-10.qcow2
1629.3.3.1164NYNNNNN3.10.192.18ptmalloc 2.x09-09-2016asa933-11-smp-k8.bin
1639.3.3.1164NYNNNNN3.10.192.18ptmalloc 2.x09-09-2016asav933-11.qcow2
1649.3.3.764NNNNNNN3.10.192.18ptmalloc 2.x21-12-2015asa933-7-smp-k8.bin
1659.3.3.964NYNNNNN3.10.192.18ptmalloc 2.x26-02-2016asa933-9-smp-k8.bin
1669.3.3.964NYNNNNN3.10.192.18ptmalloc 2.x26-02-2016asav933-9.qcow2
1679.4.164NNNNNNN3.10.552.18ptmalloc 2.x21-03-2015asa941-smp-k8.bin
1689.4.164NNNNNNN3.10.552.18ptmalloc 2.x21-03-2015asav941.qcow2
1699.4.1.1364NNNNNNN3.10.552.18ptmalloc 2.x03-08-2016asa941-13-smp-k8.bin
1709.4.1.1364NNNNNNN3.10.552.18ptmalloc 2.x03-08-2016asav941-13.qcow2
1719.4.1.20064NNNNNNN3.10.552.18ptmalloc 2.x11-05-2015asav941-200.qcow2
1729.4.1.664NNNNNNN3.10.552.18ptmalloc 2.x16-10-2015asav941-6.qcow2
1739.4.264NNNNNNN3.10.552.18ptmalloc 2.x23-09-2015asa942-smp-k8.bin
1749.4.264NNNNNNN3.10.552.18ptmalloc 2.x23-09-2015asav942.qcow2
1759.4.2.1164NNNNNNN3.10.552.18ptmalloc 2.x22-02-2016asa942-11-smp-k8.bin
1769.4.2.664NNNNNNN3.10.552.18ptmalloc 2.x27-01-2016asa942-6-smp-k8.bin
1779.4.2.664NNNNNNN3.10.552.18ptmalloc 2.x27-01-2016asav942-6.qcow2
1789.4.364NYNNNNN3.10.552.18ptmalloc 2.x24-04-2016asa943-smp-k8.bin
1799.4.3.1264NYNNNNN3.10.552.18ptmalloc 2.x20-10-2016asa943-12-smp-k8.bin
1809.4.464NYNNNNN3.10.552.18ptmalloc 2.x06-01-2017asa944-smp-k8.bin
1819.4.4.1064NYNNNNN?2.18ptmalloc 2.x16-08-2017asa944-10-smp-k8.bin
1829.4.4.1264NYNNNNN?2.18ptmalloc 2.x14-09-2017asa944-12-smp-k8.bin
1839.4.4.1364NYNNNNN3.10.552.18ptmalloc 2.x12-10-2017asa944-13-smp-k8.bin
1849.4.4.1464NYNNNNN3.10.552.18ptmalloc 2.x28-11-2017asa944-14-smp-k8.bin
1859.4.4.1664NYNNNNN?2.18ptmalloc 2.x02-02-2018asa944-16-smp-k8.bin
1869.4.4.1764NYNNNNN?2.18ptmalloc 2.x06-02-2018asa944-17-smp-k8.bin
1879.4.4.1864NYNNNNN?2.18ptmalloc 2.x29-03-2018asa944-18-smp-k8.bin
1889.4.4.664NYNNNNN?2.18ptmalloc 2.x27-04-2017asa944-6-smp-k8.bin
1899.4.4.864NYNNNNN?2.18ptmalloc 2.x16-07-2017asa944-8-smp-k8.bin
1909.5.164YNYNNNN3.10.622.18ptmalloc 2.x12-08-2015asa951-smp-k8.bin
1919.5.264YNYNNYN3.10.622.18ptmalloc 2.x28-11-2015asa952-smp-k8.bin
1929.5.2.264YNYNNYN?2.18ptmalloc 2.x22-12-2015asa952-2-smp-k8.bin
1939.5.2.20464YNYNNYN3.10.622.18ptmalloc 2.x15-02-2016asav952-204.qcow2
1949.5.2.664YYYNNYN?2.18ptmalloc 2.x04-03-2016asa952-6-smp-k8.bin
1959.5.364YYYNNYN3.10.622.18ptmalloc 2.x30-08-2016asa953-smp-k8.bin
1969.6.164YYYNNYN3.10.622.18ptmalloc 2.x18-03-2016asa961-smp-k8.bin
1979.6.164YYYNNYN3.10.622.18ptmalloc 2.x18-03-2016asav961.qcow2
1989.6.1.1064YYYNNYN3.10.622.18ptmalloc 2.x09-08-2016asa961-10-smp-k8.bin
1999.6.264YYYNNYN3.10.622.18ptmalloc 2.x23-08-2016asa962-smp-k8.bin
2009.6.264YYYNNYN3.10.622.18ptmalloc 2.x23-08-2016asav962.qcow2
2019.6.2.264YYYNNYN3.10.622.18ptmalloc 2.x07-10-2016asav962-2.qcow2
2029.6.2.364YYYNNYN3.10.622.18ptmalloc 2.x26-10-2016asa962-3-smp-k8.bin
2039.6.2.764YYYNNYN3.10.622.18ptmalloc 2.x05-12-2016asav962-7.qcow2
2049.6.3.1764YYYNNNN3.10.622.18ptmalloc 2.x16-10-2017asa963-17-smp-k8.bin
2059.6.3.2064YYYNNNN3.10.622.18ptmalloc 2.x17-11-2017asa963-20-smp-k8.bin
2069.6.464YYYNNNN3.10.622.18ptmalloc 2.x13-12-2017asa964-smp-k8.bin
2079.6.4.364YYYNNNN?2.18ptmalloc 2.x02-02-2018asa964-3-smp-k8.bin
2089.6.4.864YYYNNNN?2.18ptmalloc 2.x11-04-2018asa964-8-smp-k8.bin
2099.7.164YYYNNYN3.10.622.18ptmalloc 2.x16-01-2017asa971-smp-k8.bin
2109.7.164YYYNNYN3.10.622.18ptmalloc 2.x16-01-2017asav971.qcow2
2119.7.1.1564YYYNNNN3.10.622.18ptmalloc 2.x29-08-2017asa971-15-smp-k8.bin
2129.7.1.1664YYYNNNN3.10.622.18ptmalloc 2.x19-10-2017asa971-16-smp-k8.bin
2139.7.1.2164YYYNNNN?2.18ptmalloc 2.x02-02-2018asa971-21-smp-k8.bin
2149.7.1.464YYYNNNN?2.18ptmalloc 2.x31-03-2017asa971-4-smp-k8.bin
2159.8.164YYYNNNN?2.18ptmalloc 2.x10-05-2017asa981-smp-k8.bin
2169.8.1.564YYYNNNN3.10.622.18ptmalloc 2.x23-06-2017asav981-5.qcow2
2179.8.1.764YYYNNNN?2.18ptmalloc 2.x28-07-2017asa981-7-smp-k8.bin
2189.8.264YYYNNNN?2.18ptmalloc 2.x27-08-2017asa982-smp-k8.bin
2199.8.2.1464YYYNNNN3.10.622.18ptmalloc 2.x06-11-2017asa982-14-smp-k8.bin
2209.8.2.1564YYYNNNN3.10.622.18ptmalloc 2.x10-11-2017asa982-15-smp-k8.bin
2219.8.2.1764YYYNNNN?2.18ptmalloc 2.x04-01-2018asa982-17-smp-k8.bin
2229.8.2.2064YYYNNNN?2.18ptmalloc 2.x02-02-2018asa982-20-smp-k8.bin
2239.8.2.2464YYYNNNN?2.18ptmalloc 2.x01-03-2018asa982-24-smp-k8.bin
2249.8.2.2664YYYNNNN?2.18ptmalloc 2.x14-03-2018asa982-26-smp-k8.bin
2259.8.2.2864YYYNNNN?2.18ptmalloc 2.x05-04-2018asa982-28-smp-k8.bin
2269.8.2.3364YYYNNNN?2.18ptmalloc 2.x04-05-2018asa982-33-smp-k8.bin
2279.8.2.864YYYNNNN3.10.622.18ptmalloc 2.x05-10-2017asa982-8-smp-k8.bin
2289.9.164YYYNNNN3.10.622.18ptmalloc 2.x30-11-2017asa991-smp-k8.bin
2299.9.164YYYNNNN3.10.622.18ptmalloc 2.x30-11-2017asav991.qcow2
2309.9.1.264YYYNNNN?2.18ptmalloc 2.x02-02-2018asa991-2-smp-k8.bin
2319.9.1.364YYYNNNN?2.18ptmalloc 2.x06-02-2018asa991-3-smp-k8.bin
2329.9.264YYYNNNN3.10.622.18ptmalloc 2.x25-03-2018asav992.qcow2
2339.9.264YYYNNNN?2.18ptmalloc 2.x25-03-2018asa992-smp-k8.bin
2349.9.2.164YYYNNNN3.10.622.18ptmalloc 2.x05-04-2018asav992-1.qcow2
2359.9.2.164YYYNNNN?2.18ptmalloc 2.x05-04-2018asa992-1-smp-k8.bin
2369.9.2.1464YYYNNNN3.10.622.18ptmalloc 2.x12-07-2018asav992-14.qcow2
IDVersionArchASLRNXPIECanRELROSymStripLinuxGlibcHeap allocatorBuild dateFirmware

End-of-life ASA versions

To our knowledge there isn't any summary of ASA branches being End-of-life (EOL)

Cisco ASA BranchLatest UpdateEnd-of-life?Notes
7.2<= Feb 2016Yes
8.0<= Feb 2016Yes
8.1<= Feb 2016Yes
8.2<= Feb 2016YesExceptional patch for IKE heap overflow
8.3<= Feb 2016Yes
8.4<= May 2016Yes
8.5<= Feb 2016Yes
8.6<= Feb 2016Yes
8.7<= May 2016Yes
9.0<= Feb 2017Yes
9.1No
9.2No
9.3<= Feb 2017Yes
9.4No
9.5<= Apr 2017Yes
9.6No
9.7No
9.8No
9.9No

Known issues

sudo -E not keeping the PATH

On Ubuntu 18.04 at least, they have a defined secure_path in /etc/sudoers which forbids using the sudo -E command:

$ unpack_repack_qcow2.sh
[unpack_repack_qcow2] You need to be root to mount/unmount the qcow2
$ sudo -E unpack_repack_qcow2.sh
[sudo] password for user:
sudo: unpack_repack_qcow2.sh: command not found

So you may need to comment that out, see here.

#Defaults	secure_path="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin"
$ sudo -E unpack_repack_qcow2.sh 
[sudo] password for user: 
[unpack_repack_qcow2] ERROR: You must specify at least a valid -i file: 
[unpack_repack_qcow2] ERROR: Double check your working directory as  doesn't appear to exist