Nginx paketinin kurulması
mps kur nginx
Nginx servisinin eklenmesi
servis ekle nginx
/* -*- Mode: C; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ | |
/* coap-client -- simple CoAP client | |
* | |
* Copyright (C) 2010--2023 Olaf Bergmann <[email protected]> and others | |
* | |
* SPDX-License-Identifier: BSD-2-Clause | |
* | |
* This file is part of the CoAP library libcoap. Please see README for terms of | |
* use. |
package main | |
import ( | |
"fmt" | |
"io/ioutil" | |
"net/http" | |
"os" | |
"os/exec" | |
"strings" | |
"regexp" |
#!/bin/env python3 | |
import boto3 | |
import requests | |
import json | |
import os | |
import sys | |
from botocore.config import Config | |
s3 = boto3.client('s3') |
#!/usr/bin/env python3 | |
import sys | |
import socket, os | |
import json | |
soket = os.getenv("GREETD_SOCK") | |
client = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM) | |
client.connect(soket) |
server: | |
http_listen_port: 9080 | |
grpc_listen_port: 0 | |
positions: | |
filename: /tmp/positions.yaml | |
client: | |
url: http://${LOKI_SERVER}:${LOKI_PORT}/api/prom/push |
#!/bin/sh | |
tmux new-session -d | |
tmux split-window -v | |
tmux split-window -h | |
tmux swap-pane -D | |
tmux split-window -h | |
tmux -2 attach-session -d |
/* SPDX-License-Identifier: GPL-2.0 */ | |
/* | |
* Copyright 2022 CM4all GmbH / IONOS SE | |
* | |
* author: Max Kellermann <[email protected]> | |
* | |
* Proof-of-concept exploit for the Dirty Pipe | |
* vulnerability (CVE-2022-0847) caused by an uninitialized | |
* "pipe_buffer.flags" variable. It demonstrates how to overwrite any | |
* file contents in the page cache, even if the file is not permitted |