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
#!/usr/bin/python | |
import myglobals | |
import urllib2 | |
def run(): | |
print("Executing " + myglobals.sAppName) | |
print("Grabbing URL:" + myglobals.sURL) | |
response = urllib2.urlopen(myglobals.sURL) | |
sData = response.read() |
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
# Hakology - AUTO YOUTUBE VIDEO DOWNLOADER SCRIPT | |
# Big shouts out to advancednewbie for sending in this idea. | |
# After submitting his initial code advancednewbie and i | |
# have worked for a few nights on this getting it sweet for you guys. | |
# Have fun hacking and enjoy the code. | |
#!/usr/bin/python | |
# YOU WILL NEED TO INSTALL | |
# youtube-dl curl python | |
# Notes : | |
# ensure your selected download directory exists |
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
# fire all the lasers | |
# bash apache counter recon tool | |
echo 'Gathering logfile data \n' | |
cat /var/log/apache2/*.log | grep nmap | awk '{ print $2 }' > nmappers.txt | |
cat nmappers.txt | |
echo 'Filtering unique ips' | |
sort nmappers.txt | uniq > ips.txt |
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
# more at youtube.com/hakology or hakology.wordpress.com | |
import pygame | |
from pygame.locals import * | |
wWIDTH = 640 # game window width | |
wHEIGHT = 480 # game window height | |
loc = [0, 0] # location data | |
def main(): |
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
# more at youtube.com/hakology or hakology.wordpress.com | |
import pygame | |
from pygame.locals import * | |
wWIDTH = 640 | |
wHEIGHT = 480 | |
def main(): | |
r = 1 | |
while(1): # do for a while (game loop) |
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
#!/bin/bash | |
dbooted=$(date +%Y%m%d-%H%M%S) | |
for (( ; ; )) | |
do | |
clear | |
#set sfilename = sysdate | |
sfilename='TLVC'$(date +%Y%m%d-%H%M%S)'.jpg' | |
#count images captured | |
iimages=$(ls *.jpg | wc -l) | |
surl='http://217.24.53.18/record/current.jpg' |