Aruba produces two different software loads for their Access Point hardware. The first is called ArubaOS and the second is called Aruba Instant. With ArubaOS, the AP requires a Mobility Controller (hardware) to be installed in the network. With the Aruba Instant it is possible to run AP’s independently (standalone mode) or in a cluster, with no Mobility Controller in the network.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Project Homepage: https://github.com/avast-tl/retdec#linux | |
# This file is based on the Dockerfile from the repo above | |
# | |
apt update -y | |
apt install -y build-essential cmake git perl python3 doxygen graphviz upx flex bison zlib1g-dev libtinfo-dev autoconf automake pkg-config m4 libtool | |
cd /opt | |
git clone https://github.com/avast-tl/retdec | |
cd retdec && mkdir build && cd build | |
cmake .. -DCMAKE_INSTALL_PREFIX=/home/retdec/retdec-install |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# For when you decompile an Android APK and some of the strings are static integer arrays instead of strings, | |
# this snippet will print them out as strings. I've re-written this a few times so I figured I'd just | |
# post it here so I can find it when I need it. | |
strArray = [] | |
# Drop your "private static final short[] a = { 65, 66, 67, 68, 69, 70, 71, 72, 73 ... }"" here, but replace [] w/ {} | |
strArray.append( | |
[65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# Kali Docker Setup Script | |
# @decidedlygray 20180902 | |
# LICENSE: MIT | |
# | |
# Steps taken from: https://docs.docker.com/install/linux/docker-ce/debian/ | |
# And: https://medium.com/@airman604/installing-docker-in-kali-linux-2017-1-fbaa4d1447fe | |
# Install uses the repository, so we can get updates in the future |
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.IO; | |
using System.Text; | |
using System.IO.Compression; | |
using System.EnterpriseServices; | |
using System.Collections.Generic; | |
using System.Runtime.InteropServices; | |
using System.Security.Cryptography; | |
/* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ### | |
# install_letsencrypt_ca_certificates_for_jvm_windows.ps1 | |
# Based on the linux script here: https://www.nuharborsecurity.com/creating-a-private-burp-collaborator-in-amazon-aws-with-a-letsencrypt-wildcard-certificate/ | |
# Written by @decidedlygray, 20180626 | |
# | |
# NOTE: Not working at the moment. Comments welcome. | |
# ### | |
# BurpSuitePro Install Location | |
$BurpInstallLocation="C:\Program Files\BurpSuitePro\" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
############################################################################## | |
# burp-rest-api Kali build script | |
# Builds: https://github.com/vmware/burp-rest-api | |
# | |
# Currently Kali ships using java 9 as its default version of Java. This | |
# causes building https://github.com/vmware/burp-rest-api to fail. This | |
# script is meant to help fix that and get the tool to build properly | |
# |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# The py2 code below is an abomination that was slapped together in a matter of | |
# minutes to see if the internet was behaving as expected. It is utter garbage | |
# and should not be used by anyone. - @decidedlygray | |
import socket | |
import urllib2 | |
import zipfile | |
import csv |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
""" | |
Python2 snippet for taking a base64-encoded unicode string, decoding it | |
properly so there aren't trailing null bytes for ASCII characters | |
Leaving this here so I don't have to look it up again | |
@decidedlygray | |
""" |
This section is a boiled down version of everything above. It should serve as an easy reference. These steps assume you've identified and installed the correct JDK.
- Locate the jar file: Extender > Extensions > Select extension > Details.
bapps\
directory is located atC:\Users\yourusername\AppData\Roaming\BurpSuite\bapps
- Backup the original jar file to a different folder, outside of bapps.
- Change extension from .jar to .zip, extract contents, delete .zip file
- Make your modifications
- Re-jar:
jar cvf yourJarName.jar -C extractedContentsDirectory/ .
NewerOlder