I hereby claim:
- I am thesp0nge on github.
- I am thesp0nge (https://keybase.io/thesp0nge) on keybase.
- I have a public key whose fingerprint is 4F09 1703 F509 4A4E FAD5 8E62 5B49 6AC6 6ECE B8BB
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/ruby | |
| require 'snmp' | |
| require 'ipaddress' | |
| include SNMP | |
| # ARGV[0] is an IP address or a network in CIDR notation | |
| raise "Missing IP address or network" if ARGV[0].nil? | |
| @list = IPAddress.parse(ARGV[0]) |
| require 'net/http' | |
| require 'net/https' | |
| require 'json' | |
| ENDPOINT = "https://beta.secure-pass.net/api/v1/ping" | |
| APP_ID = "your_id" | |
| APP_SECRET = "your_secret" | |
| uri = URI.parse(ENDPOINT) | |
| https = Net::HTTP.new(uri.host,uri.port) |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| void do_something_with_it(char *c) { | |
| strncpy(c, "antani", 4095); | |
| return; | |
| } | |
| int main(int argc, char **argv) { |
| *.db | |
| *.swp |
| ruby -e "100.times do print 'A' end; puts 'RGH'" > /dev/null |
| require 'openssl' | |
| require 'socket' | |
| KEY = OpenSSL::PKey::RSA.new <<-_end_of_pem_ | |
| -----BEGIN RSA PRIVATE KEY----- | |
| MIICXgIBAAKBgQDLwsSw1ECnPtT+PkOgHhcGA71nwC2/nL85VBGnRqDxOqjVh7Cx | |
| aKPERYHsk4BPCkE3brtThPWc9kjHEQQ7uf9Y1rbCz0layNqHyywQEVLFmp1cpIt/ | |
| Q3geLv8ZD9pihowKJDyMDiN6ArYUmZczvW4976MU3+l54E6lF/JfFEU5hwIDAQAB | |
| AoGBAKSl/MQarye1yOysqX6P8fDFQt68VvtXkNmlSiKOGuzyho0M+UVSFcs6k1L0 | |
| maDE25AMZUiGzuWHyaU55d7RXDgeskDMakD1v6ZejYtxJkSXbETOTLDwUWTn618T |
| var github = (function(){ | |
| function render(target, repos){ | |
| var i = 0, fragment = '', t = $(target)[0]; | |
| for(i = 0; i < repos.length; i++) { | |
| fragment += '<li><a href="'+repos[i].html_url+'">'+repos[i].name+'</a><p>'+repos[i].description+'</p></li>'; | |
| t.innerHTML = fragment; | |
| } | |
| } | |
| return { |
| *.swp |
| # Public: the base palco skelethon builder. | |
| # | |
| # Ideally it will never called directly but it will be subclassed by | |
| # Palco::Extension and Palco::Application | |
| # | |
| # Examples: | |
| # | |
| # base = Palco::Base.new('a_test', [{:name=>'README', :file=>true}, {:name=>'lib', :file=>false}]) | |
| # base.generate |