A steganography tool for text - This is a mirror
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 28 lines 448 B view raw
1require "baked_file_system" 2require "colorize" 3require "commander" 4require "random/secure" 5require "yaml" 6require "./fincher/*" 7 8module Fincher 9 @@debug = false 10 11 def self.debug=(value) 12 @@debug = value 13 end 14 15 def self.debug(msg) 16 if debug = @@debug 17 STDERR.puts "[+] #{msg}".colorize(:light_gray) 18 end 19 end 20 21 def self.info(msg) 22 STDERR.puts msg 23 end 24 25 def self.error(msg) 26 STDERR.puts "#{msg}".colorize(:red) 27 end 28end