I hereby claim:
- I am davidtavarez on github.
- I am dtavarez (https://keybase.io/dtavarez) on keybase.
- I have a public key ASD3W77OK4IUs7AP9_k0a9gNt6kUcUG_wMhNt_pLv2UGzQo
To claim this, I am signing this object:
#!/usr/bin/env python3 | |
import argparse | |
import hashlib | |
import os | |
import shutil | |
import signal | |
import subprocess | |
import sys | |
from pathlib import Path |
#!/usr/bin/env bash | |
curl -fsSL "https://zlib.net/zlib-1.2.11.tar.gz" | tar zxvf - | |
cd zlib-1.2.11 | |
./configure --prefix=$PWD/install | |
make -j$(nproc) | |
make install | |
cd .. | |
git clone https://github.com/GrinPlusPlus/GrinPlusPlus | |
cd GrinPlusPlus | |
git checkout android-arm64 | |
vcpkg install --overlay-triplets=vcpkg/custom_triplets --triplet arm64-android-static --debug mio && \ | |
vcpkg install --overlay-triplets=vcpkg/custom_triplets --triplet arm64-android-static --debug libuuid && \ | |
vcpkg install --overlay-triplets=vcpkg/custom_triplets --triplet arm64-android-static --debug fmt && \ | |
vcpkg install --overlay-triplets=vcpkg/custom_triplets --triplet arm64-android-static --debug asio && \ | |
vcpkg install --overlay-triplets=vcpkg/custom_triplets --triplet arm64-android-static --debug zlib && \ | |
vcpkg install --overlay-triplets=vcpkg/custom_triplets --overlay-ports=vcpkg/custom_ports --triplet arm64-android-static --debug minizip && \ |
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env python | |
"""Generate a dictionary for mobile WiFi router of Altice Dominicana | |
We're going to create a file with all possible outcomes based on the | |
suffix present in the SSID. | |
""" | |
import argparse | |
import itertools |
#!/usr/bin/python | |
# -*- coding: utf-8 -*- | |
import argparse | |
import os | |
import random | |
import struct | |
import threading | |
from Crypto.Cipher import AES |
#!/bin/bash | |
# curl -fsSL "https://zlib.net/zlib-1.2.11.tar.gz" | tar zxvf - | |
# curl -fsSL "https://github.com/libevent/libevent/releases/download/release-2.1.8-stable/libevent-2.1.8-stable.tar.gz" | tar zxvf - | |
# curl -fsSL "https://www.openssl.org/source/openssl-1.0.2m.tar.gz" | tar zxvf - | |
# curl -fsSL "https://www.torproject.org/dist/tor-0.3.1.8.tar.gz" | tar zxvf - | |
sudo apt-get update | |
sudo apt-get install -y build-essential curl | |
cd zlib |
#!/usr/bin/env python | |
# coding=utf-8 | |
import requests | |
def brute(api_url, users_file, passwords_file, validation_errors, use_tor): | |
proxy_address = '127.0.0.1' | |
proxy_port = 9050 |
using System; | |
using Xamarin.Forms; | |
using System.Collections.ObjectModel; | |
namespace NAMESPACE.Controls | |
{ | |
public class PicturesCarousel : ScrollView | |
{ | |
AbsoluteLayout _ElementsStack = new AbsoluteLayout (); |