Skip to content

Instantly share code, notes, and snippets.

View twstagg's full-sized avatar

Tristin Stagg twstagg

  • Vanguard Appraisals
  • Cedar Rapids, IA
  • 11:27 (UTC -06:00)
View GitHub Profile
package com.deviant.security.shield;
public final class BuildConfig {
public static final String BUILD_TYPE = "debug";
public static final boolean DEBUG;
public static final String FLAVOR = "";
public static final String PACKAGE_NAME = "com.deviant.security.shield";
public static final int VERSION_CODE = 4;
public static final String VERSION_NAME = "2.2";
@twstagg
twstagg / ping_range.py
Last active November 2, 2019 17:08
A simple python3 script to iterate through a list of hostnames or IP addresses, ping them, and filter offline devices
#!/usr/bin/env python3
import sys
import platform
import subprocess
import argparse
import magic
def pingAllTargets(path, plat):