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
#!/system/xbin/bash | |
# Android Linux chroot DNS Updater Script | |
# Written by: Geofferey @ XDA / IG | |
# For updating /etc/resolv.conf in chroot | |
# Tested on Kali Nethunter / Linux Deploy | |
# Chroot placed in directory not file.img | |
# Works on Android Version Nougat 7.1.2 | |
# Place in init.d of Nethunter or Android |
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
#!/usr/bin/python | |
#A multi-function switch for the Raspberry Pi | |
#This script was originally inspired by [email protected]/member/AndrewH7 | |
#Modified by: Geofferey@XDA/Instagram/Github | |
#Use this script at your own risk | |
import RPi.GPIO as GPIO | |
import os | |
import time |
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
#!/system/xbin/bash | |
# Android Remote Unlock Script | |
# By: Geofferey @ IG & XDA 2018 | |
# Just a simple script to input PIN | |
# via ADB, SSH, Telnet etc on Android | |
# Pace in /system/xbin/pin-unlock & | |
# give execute perms (e.g. chmod 500) | |
echo "" |
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
#!/system/xbin/bash | |
#This script can pull GPS coordinates & sysinfo from android | |
#& Output to terminal. This script requires root access | |
#Place in /system/xbin or /data/local/tmp | |
echo "GPS_SHELL" >> /sys/power/wake_lock; | |
settings put secure location_providers_allowed +gps; |
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
#!/bin/bash | |
#This script was written for raspberry-pi-audio-reciever | |
#Project and can be found in it's original form at: | |
#https://github.com/BaReinhard/Super-Simple-Raspberry-Pi-Audio-Receiver-Install/blob/master/usr/local/bin/bluez-udev | |
#My version of this script directs audio input from a | |
#bluetooth device to all availabe audio outputs (aka sinks) | |
audio_sink=0 | |
name=$(sed 's/\"//g' <<< $NAME) | |
#exit if not a BT address |
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
#!/system/xbin/bash | |
# | |
# Google Pixel Pattern Input | |
# OG Author: Matt Wilson | |
# Modified for Pixel aka sailfish | |
# By: Geofferey Eakins | |
# License: Free to use, modify and share | |
# | |
# This script sends simulated touch input for | |
# remotely swiping pattern on a Google Pixel |
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
#!/system/xbin/bash | |
## A simple set of iptables firewall rules to | |
# to block incoming connevtions on rooted | |
# Android devices. | |
## Place this script in /su.d or /etc/init.d | |
# to run at startup. | |
## Firat perform several checks to confirm |
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
#!/system/bin/sh | |
until [[ $(getprop sys.boot_completed) = 1 ]] && [[ $(getprop dev.bootcomplete) = 1 ]] && [[ $(getprop service.bootanim.exit) = 1 ]] && [[ $(getprop init.svc.bootanim) = stopped ]] && [[ -d /sdcard/Android ]]; do | |
sleep 3 | |
log "[init.d] - Waiting for boot animation exit & data decryption to complete before continuing..." | |
done |
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
file included from ../../../../../../kernel/motorola/msm8953/drivers/staging/prima/CORE/HDD/src/wlan_hdd_assoc.c:64: | |
../../../../../../kernel/motorola/msm8953/drivers/staging/prima/CORE/HDD/inc/wlan_hdd_tdls.h:529:39: error: unknown type name 'eTDLSSupportMode' | |
eTDLSSupportMode tdls_mode) | |
^ | |
../../../../../../kernel/motorola/msm8953/drivers/staging/prima/CORE/HDD/inc/wlan_hdd_tdls.h:537:1: error: unknown type name 'tdlsConnInfo_t' | |
tdlsConnInfo_t *wlan_hdd_get_conn_info(hdd_context_t *pHddCtx, | |
^ | |
../../../../../../kernel/motorola/msm8953/drivers/staging/prima/CORE/HDD/src/wlan_hdd_assoc.c:4697:22: error: no member named 'MFPCapable' in 'struct tagCsrRoamProfile' | |
roam_profile->MFPCapable = roam_profile->MFPEnabled; | |
~~~~~~~~~~~~ ^ |
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
# LineageOS core functionality | |
on init | |
export ANDROID_CACHE /cache | |
export TERMINFO /system/etc/terminfo | |
on post-fs-data | |
mkdir /cache/recovery 0770 system cache | |
# Run sysinit | |
start sysinit |
OlderNewer