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.
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
| FROM ubuntu:18.04 as binary-build-stage | |
| RUN apt update -y && \ | |
| apt install -y --no-install-recommends \ | |
| build-essential \ | |
| gcc-arm-none-eabi \ | |
| libnewlib-arm-none-eabi | |
| WORKDIR /src | |
| COPY . . | |
| ARG DEBUG=1 |
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 | |
| ## Executing this script is not a guarantee for a secure host! | |
| ## This script is a collection of the junk I have found on my hosts and what | |
| ## the SaltStack community gave as input. We have seen this attack evolve. | |
| ## Please have a very close look at your systems and consider reinstalling them | |
| ## to be absolutely sure you are free of malware. | |
| # remove crontab persistence | |
| for i in 54.36.185.99 217.8.117.137 176.31.60.91 217.12.210.192 54.36.185.99 54.36.185.99 89.223.121.139 torsocks anagima3 sa.sh$ c.sh$ selcdn.ru salt-store; do |
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 | |
| # | |
| # This is sp, the command-line Spotify controller. It talks to a running | |
| # instance of the Spotify Linux client over dbus, providing an interface not | |
| # unlike mpc. | |
| # | |
| # Put differently, it allows you to control Spotify without leaving the comfort | |
| # of your command line, and without a custom client or Premium subscription. | |
| # |
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/sh | |
| #Megasaturnv 2017-07-28 | |
| #Url of the RSS feed | |
| RSS_URL="" | |
| ##Commented version: | |
| #Download the rss feed | |
| curl --silent "$RSS_URL" | \ | |
| #Only match lines with 'title>' or 'description>' |
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 | |
| echo -e 'power on\n' | |
| sleep 2 | |
| echo -e 'scan on\n' | |
| sleep 2 | |
| echo -e 'discoverable on\n' | |
| sleep 2 | |
| echo -e 'pairable on\n' | |
| sleep 2 | |
| echo -e 'pair [your mac here]\n' |
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 | |
| # | |
| # This is sp, the command-line Spotify controller. It talks to a running | |
| # instance of the Spotify Linux client over dbus, providing an interface not | |
| # unlike mpc. | |
| # | |
| # Put differently, it allows you to control Spotify without leaving the comfort | |
| # of your command line, and without a custom client or Premium subscription. | |
| # |