Skip to content

Instantly share code, notes, and snippets.

View mihailj's full-sized avatar

Mihail Juganaru mihailj

View GitHub Profile
@fetep
fetep / genhttplogs.rb
Created March 14, 2012 15:32
apache log generator
#!/usr/bin/ruby
class IPGenerator
public
def initialize(session_count, session_length)
@session_count = session_count
@session_length = session_length
@sessions = {}
end