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
// ==UserScript== | |
// @name ShadowServants admin | |
// @namespace http://tampermonkey.net/ | |
// @version 0.2 | |
// @description Add buttons to open/close admin panel to shadowservants.ru | |
// @author LeKSuS | |
// @match https://summer.shadowservants.ru/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=shadowservants.ru | |
// @grant none | |
// ==/UserScript== |
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
#include <stdio.h> | |
#include <stdlib.h> | |
const int MEMSIZE = 30000; | |
void run_bf(FILE *fptr) { | |
char cmd; | |
int mempos = 0, filepos = -1; | |
u_char *memory = calloc(MEMSIZE, sizeof(unsigned char)); | |
int *jump_stack = calloc(MEMSIZE, sizeof(int)); |
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 | |
set -ex | |
for pkg in docker.io docker-doc docker-compose podman-docker containerd runc; | |
do | |
apt-get remove -y $pkg | |
done | |
apt-get update -y | |
apt-get install -y ca-certificates curl gnupg |