Some notes and techniques for reverse engineering Webpack (and a little bit about React/Vue/Angular) apps.
Trying to figure out how to capture the audio from the WebSDR @ Twente.
http://websdr.ewi.utwente.nl:8901
wget --mirror http://websdr.ewi.utwente.nl:8901
The ruby script will successfully pull down the audio IQ, however the IQ cannot be played in Audacity. I believe this is because the audio is encoded or otherwise slightly mangled to deter us.
This file contains 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
# IDA REALbasic reverse engineering helper script | |
# It seems that every version of REALbasic (Xojo) the loader | |
# has a different behaviour (especially with regard to parsing | |
# the imports table), so I'm documenting here that this script | |
# was created based on a 2009r5 executable. | |
# iscgar, 2018-09-26 | |
# | |
# Based on the REALbasic OVERLAY resolver | |
# XpoZed @ http://nullsecurity.org, 2017-07-16 | |
# http://www.nullsecurity.org/article/reverse_engineering_realbasic_applications |