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 glob | |
import json | |
import os | |
path = 'N:\\VICS data\\*.json' | |
files=glob.glob(path) | |
for file in files: | |
file_count = 0 | |
line_count = 0 |
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 socket | |
import random | |
#Creates a socket | |
sock=socket.socket(socket.AF_INET,socket.SOCK_DGRAM) | |
#Creates packet | |
bytes=random._urandom(1024) | |
#Target IP |
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 requests | |
import re | |
import urllib2 | |
with open('combinations.txt') as f: # AAAACA,AAAACB,AAAACC,etc - generated via http://textmechanic.com/Combination-Generator.html | |
content = f.read().splitlines() | |
for line in content: | |
urls = "http://s3-eu-west-1.amazonaws.com/puzzleinabucket/%s.html" % line | |
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
require 'open-uri' | |
require 'nokogiri' | |
require 'pp' | |
require 'colored' | |
require 'win32console' | |
puts "" | |
puts"|''||''| '|| '||' '|' '||' ..|'''.| .|'''.| '||' '|'" | |
puts" || '|. '|. .' || .|' ' ||.. ' || | " | |
puts" || || || | || || ''|||. ||" |
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/ruby | |
require 'tweetstream' | |
require 'time' | |
print "Enter Keyword: " | |
$kw = STDIN.gets.chomp | |
puts "Scanning In Progress..." |
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/ruby | |
require 'rubygems' | |
require 'json' | |
require 'net/http' | |
require 'uri' | |
require 'oauth' | |
puts" TWITTER PROFILE EXTRACTION TOOL" | |
puts " " |
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/ruby | |
require 'bencode' | |
File.open 'torrent metainfo.log', 'a' do |f| | |
#Open file and decode | |
File.open(ARGV[0], "rb") do |torrent| | |
metainfo = BEncode.load(torrent) |
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/ruby | |
require 'rubygems' | |
require 'json' | |
require 'net/http' | |
require 'uri' | |
require 'win32console' | |
puts "Extraction In Progress..." | |
class TwitterBackup |