I hereby claim:
- I am oldkingcone on github.
- I am oldkingcone (https://keybase.io/oldkingcone) on keybase.
- I have a public key ASBKJWLO-VA0ghAj0AGPQIMPORufvf9cO8Q_WMiFdqnzsAo
To claim this, I am signing this object:
| import os | |
| import sys | |
| import grp | |
| import pwd | |
| from datetime import datetime as dt | |
| os.system('clear') | |
| os.chdir('/home') | |
| os.system('pwd') | |
| path2 = ['/', '/home/*', '/bin', '/usr', '/var', '/tmp', '/lib', '/lib64', '/etc', '/sys', '/dev', '/media', '/mnt', '/srv', '/sbin', '/etc'] |
| #! /usr/tmp/env perl | |
| use strict; | |
| use 5.010; | |
| my $user = $ENV{USER}; | |
| my $logname = $ENV{LOGNAME}; | |
| my $file_directory = "./ranby.txt"; | |
| # my $second_log = "./second.txt"; | |
| my $filename = "ranby.txt"; |
| import os | |
| import sys | |
| import grp | |
| import pwd | |
| ''' | |
| There are 2 functions calling and doing the same thing. The accurate scan seems to preform much better with large file systems. | |
| automation for ls /* in the event you want all output logged and already handled for you. | |
| ''' | |
| os.system('clear') |
| #! /usr/bin/env python3 | |
| # lab04_paraprinting.py | |
| # oldkingcone | |
| # Guns up, lets do this leeroy. | |
| # LeeroyJenkins, circa 2005 | |
| import datetime | |
| import os | |
| import webbrowser |
| #! /usr/bin/env python3 | |
| # Turtle gui with chinese paragraphs | |
| # oldkingcone_lab11 | |
| # oldkingcone | |
| # guns up lets do this. | |
| try: | |
| #from selenium import webdriver | |
| import sqlite3 | |
| from pathlib import Path |
I hereby claim:
To claim this, I am signing this object:
| #! /bin/bash | |
| # fun interactive bash script. | |
| # copy this text into a text file. | |
| # Two households, both alike in dignity, | |
| # In fair Verona, where we lay our scene, | |
| # From ancient grudge break to new mutiny, | |
| # Where civil blood makes civil hands unclean. | |
| # From forth the fatal loins of these two foes |
| import tweepy | |
| from time import sleep | |
| # creds.py is a custom file that holds all of your consumer keys and API keys. you will need to make it. | |
| from creds import * | |
| import os | |
| from datetime import datetime as dt | |
| import random | |
| auth = tweepy.OAuthHandler(consumer_key=consumer_key, consumer_secret=consumer_secret) | |
| auth.set_access_token(access_key, access_secret) |
| #!/usr/bin/env python3 | |
| # I saw this on a youtube video, and figured i would make some adjustments, and improve upon it. | |
| # This is designed to fill the douchebags database with junk data, making sure the phishing campaign is not successful. | |
| # Do have fun with this. | |
| import requests | |
| import os | |
| import random | |
| import string | |
| from faker import Faker |
| #!/bin/bash | |
| if test $# -lt 1;then | |
| echo "Missing params you dunce. If you have forgotten, use h to print the help menu." | |
| else | |
| case $1 in | |
| "h") | |
| echo $0 "[h/l/q] host or protocol" | |
| echo "If using q, you will need to specify the url encoded version. I am lazy and havent gotten around to adding in an array to test for this." | |
| echo "h displays this menu and exits." |