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
# | |
# Sniffing to check auth, deauth and association requests on supplied interface | |
# ----VAD3R----- | |
# | |
from scapy.all import * | |
import sys | |
intf = sys.argv[1] | |
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
#!/bin/bash | |
# Everyday bash script to automate the boring stuff :-) | |
# | |
# ---++++++-------VAD3R--------++++ | |
date; # displays date | |
echo "uptime:" | |
uptime # total up time for client | |
echo "Currently Connected to:" | |
w # info about current connection for user |
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
import gmpy2 | |
import binascii | |
e = 3 | |
c1 = gmpy2.mpz("") | |
n1 = gmpy2.mpz("") | |
c2 = gmpy2.mpz("") | |
n2 = gmpy2.mpz("") | |
c3 = gmpy2.mpz("") | |
n3 = gmpy2.mpz("") | |
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
from bs4 import BeautifulSoup as Bs | |
import requests as req | |
import calendar | |
import base64 as bs64 | |
# if 1000 news for a topic and each page contains 15 then approx around 65/66 pages :) | |
def date_convert(date_str): | |
#Thursday April 30, 2020 to YYYY-MM-DD | |
dow, moy, date, year = date_str.split() |
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
import requests as req | |
import pandas as pd | |
from bs4 import BeautifulSoup | |
import time | |
import re | |
df_players = pd.DataFrame() | |
for yr in range(1998, 2022): | |
year = str(yr) |