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
| #upon first boot run sudo /root/upgrade-to-sid.sh if you want to upgrade your apt to the latest unstable version of Debian | |
| #!/usr/bin/env bash | |
| set -euo pipefail | |
| OUTDIR="${1:-.}" | |
| # Early check for xorriso | |
| if ! command -v xorriso >/dev/null 2>&1; then | |
| echo "ERROR: xorriso is not installed." | |
| echo "Install it first, e.g.:" |
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
| version: "3.4" | |
| services: | |
| deluge: | |
| container_name: deluge | |
| image: linuxserver/deluge:latest | |
| restart: unless-stopped | |
| network_mode: host | |
| environment: | |
| - PUID=${PUID} # default user id, defined in .env | |
| - PGID=${PGID} # default group id, defined in .env |
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
| // Bookmark this https://docs.uniswap.org/contracts/v3/reference/deployments/ethereum-deployments | |
| // Sources flattened with hardhat v2.7.0 https://hardhat.org | |
| // File @openzeppelin/contracts/utils/Context.sol@v4.4.0 | |
| // SPDX-License-Identifier: MIT | |
| // OpenZeppelin Contracts v4.4.0 (utils/Context.sol) | |
| pragma solidity ^0.8.0; |
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
| https://osint.digitalside.it/Threat-Intel/lists/latestdomains.txt | |
| https://s3.amazonaws.com/lists.disconnect.me/simple_malvertising.txt | |
| https://v.firebog.net/hosts/Prigent-Crypto.txt | |
| https://bitbucket.org/ethanr/dns-blacklists/raw/8575c9f96e5b4a1308f2f12394abd86d0927a4a0/bad_lists/Mandiant_APT1_Report_Appendix_D.txt | |
| https://phishing.army/download/phishing_army_blocklist_extended.txt | |
| https://gitlab.com/quidsup/notrack-blocklists/raw/master/notrack-malware.txt | |
| https://raw.githubusercontent.com/Spam404/lists/master/main-blacklist.txt | |
| https://raw.githubusercontent.com/FadeMind/hosts.extras/master/add.Risk/hosts | |
| https://urlhaus.abuse.ch/downloads/hostfile/ | |
| https://pgl.yoyo.org/adservers/serverlist.php?hostformat=hosts&showintro=0&mimetype=plaintext |
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 script will setup docker and docker compose on Ubuntu 20 | |
| sudo apt update | |
| sudo apt install -y apt-transport-https ca-certificates curl software-properties-common | |
| curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - | |
| sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu focal stable" | |
| sudo apt update | |
| apt-cache policy docker-ce | |
| sudo apt install -y docker-ce | |
| # now that we installed docker, we will move onto docker compose |
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 script will install all needed dependencies. | |
| # Set repositories and update apt | |
| mv /etc/apt/sources.list /etc/apt/sources.list.bak | |
| echo "deb http://deb.debian.org/debian/ buster main contrib non-free | |
| deb-src http://deb.debian.org/debian/ buster main contrib non-free | |
| deb http://deb.debian.org/debian/ buster-backports main contrib non-free | |
| deb http://security.debian.org/debian-security buster/updates main |
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 | |
| apt-get install -y pkg-config libusb-1.0-0-dev libusb-1.0-0 libcurl4-openssl-dev libncurses5-dev libudev-dev | |
| wget http://ck.kolivas.org/apps/cgminer/4.9/cgminer-4.9.2.tar.bz2 | |
| tar xvf cgminer-4.9.2.tar.bz2 | |
| rm cgminer-4.9.2.tar.bz2 | |
| mv cgminer-4.9.2 cgminer | |
| cd cgminer | |
| ./configure --enable-icarus --enable-blockeruptor | |
| make |
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 script will install all needed dependencies. | |
| # Set repositories and update apt | |
| echo "deb http://deb.debian.org/debian/ unstable main" > /etc/apt/sources.list.d/unstable.list | |
| printf 'Package: *\nPin: release a=unstable\nPin-Priority: 90\n' > /etc/apt/preferences.d/limit-unstable | |
| apt update | |
| apt install -y linux-headers-4.19.0-6-amd64 | |
| # Now we set up 2gb of swap space to ensure we do not run out of memory while compiling or running the daemon under normal load. | |
| apt install -y dphys-swapfile | |
| # Set size of swap file and setup swapfile |
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
| ## | |
| # You should look at the following URL's in order to grasp a solid understanding | |
| # of Nginx configuration files in order to fully unleash the power of Nginx. | |
| # https://www.nginx.com/resources/wiki/start/ | |
| # https://www.nginx.com/resources/wiki/start/topics/tutorials/config_pitfalls/ | |
| # https://wiki.debian.org/Nginx/DirectoryStructure | |
| # | |
| # In most cases, administrators will remove this file from sites-enabled/ and | |
| # leave it as reference inside of sites-available where it will continue to be | |
| # updated by the nginx packaging team. |
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
| 0.0.0.0 www.youtube.com | |
| 0.0.0.0 host.youtube.com | |
| 0.0.0.0 mx.youtube.com | |
| 0.0.0.0 admin.youtube.com | |
| 0.0.0.0 devel.youtube.com | |
| 0.0.0.0 stats.youtube.com | |
| 0.0.0.0 http.youtube.com | |
| 0.0.0.0 mx0.youtube.com | |
| 0.0.0.0 administration.youtube.com | |
| 0.0.0.0 development.youtube.com |
NewerOlder