Skip to content

Instantly share code, notes, and snippets.

View picatz's full-sized avatar
Graph Theory

Kent Gruber picatz

Graph Theory
View GitHub Profile
@picatz
picatz / packet_summary.rb
Created November 5, 2016 20:57
A sample of how to use packetfu to capture traffic and parse packets to get a basic, readable summary in the terminal.
require 'packetfu'
# iface becomes the default routeable interface
iface = PacketFu::Utils.default_int
# cap starts capturing packets on iface
cap = PacketFu::Capture.new(:iface => iface, :start => true)
# will parse packets providing summary data of packet contents
cap.stream.each do | packet |
@picatz
picatz / iface_summary.rb
Created November 5, 2016 21:09
Example use case to use packetfu to get basic iface information.
require 'packetfu'
# iface becomes the default routeable interface
iface = PacketFu::Utils.default_int
# config will determine the ifconfig data for iface
config = PacketFu::Utils.ifconfig(iface)
# print out some of the relevant information
puts " iface: " + config[:iface]
require 'packetfu'
iface = PacketFu::Utils.default_int
cap = PacketFu::Capture.new(:iface => iface, :start => true)
# create an empty hash that starts for our base stats
stats = Hash.new(0)
# a hash inside of stats for types, which also starts at 0
stats[:types] = Hash.new(0)
@picatz
picatz / ssh_connection_statistics.rb
Last active November 6, 2016 00:24
A very simple sample of using PacketFu to be able to keep statistics of your machines ssh connections using ipv4 on port 22.
require 'packetfu'
class SshStatistics
attr_accessor :stats
# initialize() is the method that is called
# when we create a new SshStatistics object.
#
# == Example
#
@picatz
picatz / simple_ids.rb
Last active November 6, 2016 00:40
Example modified/extracted from PacketFu's example code
require 'packetfu'
iface = PacketFu::Utils.default_int
cap = PacketFu::Capture.new(:iface => iface, :start => true, :filter => "ip")
attack_patterns = ["^gotcha", "owned!*$", "^\x04[^\x00]{50}"]
loop do
cap.stream.each do |pkt|
@picatz
picatz / packetfu_and_pry.rb
Last active November 6, 2016 00:49
An example of using packetfu and pry
require 'packetfu'
require 'pry'
iface = PacketFu::Utils.default_int
cap = PacketFu::Capture.new(:iface => iface, :start => true)
cap.stream.each do | packet |
# will dump you into a pry repl
binding.pry
end
@picatz
picatz / web_server_api_example.rb
Last active November 6, 2016 05:12
An simple sinatra application to act as a demo for my lsof and fosl examples.
require 'sinatra'
require 'json'
set :port, 80
get '/time' do
content_type :json
{ :time => Time.now }.to_json
# => {"time":"2016-11-06 01:11:42 -0400"}
end
@picatz
picatz / fosl_pid_example.rb
Created November 6, 2016 06:21
Using fosl to examine an pid
require 'fosl/parser'
pid = "27869"
parser = FOSL::Parser.new
data = parser.lsof("-p #{pid}")
# => example output ...
# data => {27869=>
# #<FOSL::Process:0x00000001c64480
# @command="ruby",
@picatz
picatz / fosl_statistics_example.rb
Created November 6, 2016 07:06
Simple fosl statistics
require 'fosl/parser'
# -P : Do not resolve port names
# -n : Do not resolve hostnames
parser = FOSL::Parser.new
all_data = parser.lsof("-Pn")
# store statistics
stats = Hash.new(0)
stats[:users] = []
@picatz
picatz / fake_lsof_parser.rb
Created November 6, 2016 07:35
pseudo code of an lsof parser I'd like to have
# pseudo code of an lsof parser I'd like to have
require 'lsof_parser'
# -P : Do not resolve port names
# -n : Do not resolve hostnames
data = Lsof::Parser.new( :arguments => "-Pn" )
data.each do |data|
data.pid
# => #<Lsof::Pid:23466:0x0000000126910>