Skip to content
View theastrowolfe's full-sized avatar
🐺
πŸ–±οΈ : ⌨️ :: πŸ–ŒοΈ : 🎨
🐺
πŸ–±οΈ : ⌨️ :: πŸ–ŒοΈ : 🎨

Organizations

@EpicGames @opensensorhub @HuntsvilleSwiftUsers
Block or Report

Block or report theastrowolfe

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
theastrowolfe/README.md

Hi there πŸ‘‹

theastrowolfe

Pinned Loading

  1. crypt.py - Library to naively encryp... crypt.py - Library to naively encrypt and decrypt ASCII data
    1
    #!/usr/bin/env python3
    2
    
    
    3
    import argparse
    4
    import os
    5
    import random
  2. shred.py - Library to naively shred ... shred.py - Library to naively shred a file
    1
    #!/usr/bin/env python3
    2
    
    
    3
    import argparse
    4
    import os
    5
    import random
  3. grab.py - Library to naively banner ... grab.py - Library to naively banner grab services running on all or specific ports of a host
    1
    #!/usr/bin/env python3
    2
    
    
    3
    import argparse
    4
    import socket
    5
    
    
  4. time.js - Simple time util time.js - Simple time util
    1
    const time = Object.freeze({
    2
        get day()    { return 24 * 60 * 60 * 1000 },
    3
        get hour()   { return this.day / 24 },
    4
        get minute() { return this.hour / 60 },
    5
        get second() { return this.minute / 60 },
  5. monitor.js - Visual page monitoring ... monitor.js - Visual page monitoring through a popup
    1
    let popup = (url = window.location.href) => window.open(url,"","height=200,width=200");
    2
    let refresh = (browserWindow = window) => browserWindow.location.reload(1);
    3
    let monitor = (browserWindow, intervalInSeconds = 10) => setInterval(() => refresh(browserWindow), intervalInSeconds * 1000);
    4
    
    
    5
    let monitorId;
  6. robot.py - Simple mouse script to ke... robot.py - Simple mouse script to keep (Windows) computer awake
    1
    #!/usr/bin/env python3
    2
    
    
    3
    from ctypes import windll, Structure, c_long, byref
    4
    import time
    5
    import threading