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
| 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} |
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
| 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' |
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
| ### 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" |
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
| 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) |