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
| #!/usr/bin/env python3 | |
| # fonte http://pythonclub.com.br/upload-de-arquivos-com-socket-e-struct.html | |
| import socket | |
| import struct | |
| host = "127.0.0.1" | |
| port = 8001 | |
| sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) |
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
| import time | |
| import subprocess as s | |
| import requests | |
| URL = 'https://www.ubuntu.com/download/desktop' | |
| def new_version(response): | |
| if '18.04' in response.text: | |
| msg = 'Novo Ubuntu LTS está disponível para download! :) ' + URL |
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
| import random | |
| import string | |
| import hashlib | |
| """ | |
| This is a simple script to generate passwords for Ecommerce OpenCart version 2+ | |
| tested up to version 3.0.2.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
| #!/bin/bash | |
| # | |
| # Aplica permissões de segurança para WordPress | |
| # | |
| # Autor: Isael Sousa <[email protected]> | |
| # Data: 06/10/2017 as 11:18 | |
| # V 1.0 | |
| # | |
| # |
NewerOlder