Attention: this is the key used to sign the certificate requests, anyone holding this can sign certificates on your behalf. So keep it in a safe place!
openssl genrsa -des3 -out rootCA.key 4096
#!/bin/bash | |
# | |
# File: CallSignal.sh | |
# Author: Jake Dolan ([email protected]) | |
# | |
# Purpose: Listen for incoming SIP signals on | |
# a specified address and send a | |
# TCP signal to another address when | |
# detected. (Optional) Can be disabled | |
# for specified time periods. |
import RPi.GPIO as GPIO | |
import time, random | |
import os, subprocess | |
from threading import Thread | |
GPIO.setmode(GPIO.BOARD) | |
GPIO.setwarnings(False) | |
import sys,tty,os,termios | |
from keypresses import getkey |
[Unit] | |
Description=Peluno | |
After=network.target | |
[Service] | |
Type=simple | |
ExecStart=/bin/python3 /path/to/peluno.py | |
Restart=always | |
[Install] |
apt-get install build-essential cython python python-dev python-ipy | |
mkdir /opt/SwiperProxy | |
wget https://github.com/SwiperProxy/swiperproxy/archive/v1.1.tar.gz \ | |
-O /usr/local/src/swiperproxy-v1.1.tar.gz | |
tar -zxvf /usr/local/src/swiperproxy-v1.1.tar.gz | |
mv /usr/local/src/swiperproxy-v1.1 /opt/SwiperProxy/swiperproxy | |
/opt/SwiperProxy/swiperproxy/include/streamhtmlparser/configure | |
## EXECUTE AS SELF |