All packages, except for Tini have been added to termux-root. To install them, simply pkg install root-repo && pkg install docker. This will install the whole docker suite, left only Tini to be compiled manually.
| 1. Download STLinkReflash (Version 190812 tested) | |
| 2. Modify the following offsets in STLinkReflash.exe | |
| 2566 3C > 38 | |
| 2567 40 > C0 | |
| 26B2 3C > 38 | |
| 26B3 4A > C0 | |
| 3. Run STLinkReflash.exe and accept, selecting option 1. | |
| 4. Fun and profit! |
https://www.oracle.com/java/technologies/javase-downloads.html
Install to the default location, eg: C:\Program Files\Java\jdk-14.0.2
- keytool.exe
- jarsigner.exe
| # For more options and information see | |
| # http://rpf.io/configtxt | |
| # Some settings may impact device functionality. See link above for details | |
| # uncomment if you get no picture on HDMI for a default "safe" mode | |
| #hdmi_safe=1 | |
| # uncomment this if your display has a black border of unused pixels visible | |
| # and your display can output without overscan | |
| #disable_overscan=1 |
| Pipeline to send video (simulating SRC) get the data from video0 | |
| gst-launch-1.0 v4l2src device=/dev/video0 \ | |
| ! decodebin \ | |
| ! x264enc \ | |
| ! rtph264pay \ | |
| ! udpsink host=localhost port=5000 | |
| // if you are running it inside a docker container be aware of the host ip in udpsink | |
| gst-launch-1.0 v4l2src device=/dev/video0 \ | |
| ! decodebin \ |
These are notes I've taken while rying to get srslte up and running. This is messy, sorry...
Dependencies:
sudo apt install tree vim git g++ make cmake pkg-config libpython-dev python-numpy swig libi2c-dev libusb-1.0-0-dev libfftw3-dev libmbedtls-dev libboost-program-options-dev libconfig++-dev libsctp-dev gnuradio
As the Ghidra open source community is growing, trying to document the new projects around Ghidra. Feel free to fork the gist and propose improvements.
- New 6502 language module for Ghidra
- Atmel AVR helpers for Ghidra - ATmega328p
- Processor definitions for DMG and CGB in Ghidra - Gameboy CPU (LR35902) (WiP)
- ghidra based disassembly of the x68000's IPL.
Dockerized: V2ray + WebSocket + TLS + Web
also see: https://toutyrater.github.io/advanced/wss_and_web.html
Server side sontents:
- Caddyfile
- config.json
- docker-compose.yml
Client side contents:
Microsoft partnered with Canonical to create Bash on Ubuntu on Windows, running through a technology called the Windows Subsystem for Linux. Below are instructions on how to set up the ssh server to run automatically at boot.
- Edit the
/etc/ssh/sshd_configfile by running the commandsudo vi /etc/ssh/sshd_configand do the following- Change
Portto 2222 (or any other port above 1000) - Change
PasswordAuthenticationto yes. This can be changed back to no if ssh keys are setup.
- Change
- Restart the ssh server:
sudo service ssh --full-restart
- With this setup, the ssh server must be turned on every time you run Bash on Ubuntu on Windows, as by default it is off. Use this command to turn it on:
| #!/usr/bin/env sh | |
| ## I don't have any devices running Android OS now. These settings may have been outdated but I cannot verify it. | |
| adb shell settings put global captive_portal_fallback_url http://g.cn/generate_204 | |
| adb shell settings put global captive_portal_http_url http://www.google.cn/generate_204 | |
| adb shell settings put global captive_portal_https_url https://www.google.cn/generate_204 | |
| adb shell settings put global captive_portal_other_fallback_urls http://www.qualcomm.cn/generate_204 |