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 binascii | |
import getpass | |
import json | |
import os | |
import time | |
from urllib.request import urlopen | |
from OpenSSL import crypto | |
IP_INFO = json.load(urlopen('http://ipinfo.io/json')) or json.load(urlopen('http://ip.jsontest.com')) |
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
timezone_map = { | |
'GMT': 'Greenwich Mean Time', | |
'UTC': 'Universal Coordinated Time', | |
'ECT': 'European Central Time', | |
'EET': 'Eastern European Time', | |
'ART': '(Arabic) Egypt Standard Time', | |
'EAT': 'Eastern African Time', | |
'MET': 'Middle East Time', | |
'NET': 'Near East Time', | |
'PLT': 'Pakistan Lahore Time', |
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 base64 | |
import binascii | |
import string | |
UNICODE_PREFIX = base64.b64decode(b'XA==').decode(encoding="ascii") + \ | |
string.ascii_letters[20] + string.digits[:1] * 2 | |
input_text = 'hello world' | |
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
SS_HEADERS = { | |
"Content-Type": "text/plain" | |
} | |
def check(response): | |
req = response.prepare() | |
command = "curl -X {method} \\\n -H {headers} \\\n -d '{data}' \\\n '{uri}'" | |
method = req.method | |
uri = req.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
if [[ $1 == "" ]] | |
then | |
echo "Pass process name as argument" | |
exit | |
else | |
echo "Stopping PIDs for $1" | |
fi | |
for pid in $(ps -ef | grep $1 | awk '{print $2}'); do echo "Stopping pid $pid" && kill -9 $pid; done | |
# for pid in $(ps -ef | awk '/$1/ {print $2}'); do echo "Stopping pid $pid" && kill -9 $pid; done |
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 os | |
from collections.abc import Generator | |
from threading import Thread | |
from typing import List, Union, NoReturn, Dict | |
import pandas | |
import requests | |
import yaml | |
from jarvis.modules.exceptions import EgressErrors |
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 logging | |
import subprocess | |
from typing import Iterable, NoReturn | |
import requests | |
from bs4 import BeautifulSoup | |
class CustomFormatter(logging.Formatter): | |
"""Override logging.Formatter using custom colors.""" |
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
"""Check availability of an username and get details of the particular account. | |
Requirements: | |
python -m pip install python-dotenv requests | |
""" | |
import json | |
import os | |
import string | |
from typing import Union |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.