Skip to content

Instantly share code, notes, and snippets.

View Tato418's full-sized avatar
🏠
Working from home

Carlos Gutierrez Tato418

🏠
Working from home
View GitHub Profile
@Tato418
Tato418 / docker-compose.yml
Last active February 23, 2026 08:24
Media platform to deploy Jellyfin - Radarr - Jackett - Transmission
services:
transmission:
image: lscr.io/linuxserver/transmission:latest
container_name: transmission
environment:
- PUID=1000
- PGID=1000
- TZ=Etc/UTC
- TRANSMISSION_WEB_HOME=
- USER=${TRANSMISSION_USER}
@Tato418
Tato418 / python_post_server.py
Created December 13, 2022 03:02
simple webserver to receive post request in pentest engagements
from flask import Flask, request
from werkzeug.utils import secure_filename
import os
app = Flask(__name__)
@app.route('/upload', methods=['POST'])
def upload_file():
if 'file' not in request.files:
return 'No se ha encontrado ningún archivo en la solicitud'
@Tato418
Tato418 / burp_with_python.py
Last active December 8, 2022 05:01
Sample script to test python script files with burp suite proxy
### example of using burp with python scripts for testing purposes
import os
import requests
# set enviroment variable pointing to a burp CA in PEM format
# run to convert burp CA certificate to PEM
# openssl x509 -inform der -in burp_CA.der -out burp_CA.pem
# ################################3
# ## burp proxy address
px = "127.0.0.1:8080"
@Tato418
Tato418 / move_mouse.py
Created December 5, 2022 19:52
short script to move the mouse randomly
from time import sleep as sp
from random import randint as ri
from pyautogui import moveTo as mv
while True:
sp(2)
mv(ri(0,150),ri(0,150),1)