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
A 00001 | |
B 00010 | |
C 00011 | |
D 00100 | |
E 00101 | |
F 00110 | |
G 00111 | |
H 01000 | |
I 01001 | |
J 01010 |
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
/* | |
Hunting Russian Intelligence “Snake” Malware | |
The Snake implant is considered the most sophisticated cyber espionage tool designed and used by | |
Center 16 of Russia’s Federal Security Service (FSB) for long-term intelligence collection on sensitive | |
targets. | |
*/ | |
rule Windows_Snake_Malware { | |
meta: |
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
; ___ _ __ ___ __ ___ | |
; / __|_ _ __ _| |_____ / /| __|/ \_ ) | |
; \__ \ ' \/ _` | / / -_) _ \__ \ () / / | |
; |___/_||_\__,_|_\_\___\___/___/\__/___| | |
; An annotated version of the snake example from Nick Morgan's 6502 assembly tutorial | |
; on http://skilldrick.github.io/easy6502/ that I created as an exercise for myself | |
; to learn a little bit about assembly. I **think** I understood everything, but I may | |
; also be completely wrong :-) |
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
pacman -S libtool make automake autoconf gcc clang llvm pkg-config \ | |
m4 gdb vim git intltool wayland cairo libxkbcommon alsa-lib jack \ | |
flac opus libogg libsamplerate libvorbis libtheora libvpx ffmpeg \ | |
xmms2 xcb-util-image xcb-proto xcb-util xcb-util-cursor \ | |
xcb-util-image xcb-util-keysyms xcb-util-renderutil \ | |
xcb-util-wm alsa-tools alsa-utils |
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
Getting Source: | |
mkdir kode | |
cd kode | |
git clone https://github.com/krad-radio/krad_radio.git | |
cd krad_radio | |
Updating source: | |
git pull |
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
Get docker and install it. | |
Enable IP Forwarding: | |
% sudo sysctl -w net.ipv4.ip_forward=1 | |
Run the docker daemon: | |
% sudo docker -d & | |
Get the Krad Radio test image: | |
% wget http://europa.kradradio.com:8040/oneman/kradtest_docker.tar.xz | |
% sha1sum kradtest_docker.tar.xz |
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
export ANDROID_NDK=/path/to/your/android/ndk/root | |
export TOOLCHAIN=/tmp/toolchain | |
export SYSROOT=$TOOLCHAIN/sysroot/ | |
$ANDROID_NDK/build/tools/make-standalone-toolchain.sh --platform=android-14 --install-dir=$TOOLCHAIN | |
export PATH=$TOOLCHAIN/bin:$PATH | |
export CC=arm-linux-androideabi-gcc | |
export LD=arm-linux-androideabi-ld | |
export AR=arm-linux-androideabi-ar | |
cd ~/krcam/jni/krad_nanolib/ |
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 ruby | |
# | |
# Multithreaded Recursive FLAC dir -> Opus converter | |
# Destination dir tree is flat | |
# | |
# Example: | |
# flac_to_opus.rb music/ /media/3632-6166/MUSIC/ | |
# | |
$bitrate = 180 |