This file contains 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 python | |
# -*- coding: UTF-8 -*- | |
import sys | |
import threading | |
import time | |
from itertools import cycle |
This file contains 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 python | |
import sys | |
import time | |
from itertools import cycle | |
MESSAGE = ' [*] Starting Metasploit Framework Console...' | |
CYCLES = ['-', '\\', '|', '/'] | |
for index in cycle(range(len(MESSAGE))): |
This file contains 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 | |
''' | |
Este é um web-crawler simples escrito em Python 3 que serve para pesquisar endereços e CEP correspondentes | |
através da linha de comando. | |
Ele não utiliza nenhuma API específica, apenas acessa a página dos Correios e pesquisa o endereço. | |
Modo de uso: | |
$ ./buscacep.py "Endereço ou CEP a ser pesquisado" | |
Utilize um endereço por vez. Exemplos: |
This file contains 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 | |
''' | |
Este script utiliza a API do MercadoLivre Brasil para realizar buscas através da linha de comando. | |
Escrito em Python 3. | |
Uso: ./buscamercadolivre.py "PRODUTO" | |
Busque um produto por vez. | |
''' |
This file contains 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 | |
import ctypes | |
import os | |
import sys | |
import tempfile | |
from ctypes.util import find_library | |
from time import sleep |
This file contains 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 | |
import re | |
import urllib.request | |
import urllib.parse | |
import http.cookiejar | |
from lxml.html import fragment_fromstring | |
from collections import OrderedDict |
This file contains 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 | |
import re | |
import urllib.request | |
import urllib.parse | |
import http.cookiejar | |
import os | |
from lxml.html import fragment_fromstring | |
from collections import OrderedDict |
This file contains 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 python | |
import subprocess | |
from flask import Flask, render_template | |
from flask_socketio import SocketIO, send, emit | |
HTML = ''' | |
<html> | |
<head> | |
<title>WEBSHELL</title> |
This file contains 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
#ifndef SORTED_VECTOR_HPP | |
#define SORTED_VECTOR_HPP | |
#include <functional> | |
#include <memory> | |
#include <initializer_list> | |
#include <algorithm> | |
#include <iostream> | |
namespace homebrew { |
This file contains 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 <iostream> | |
#include <iterator> | |
#include <random> | |
#include <set> | |
#include <sys/time.h> | |
#include <vector> | |
using namespace std; | |
static inline uint64_t startRDTSC (void) { |
OlderNewer