- #multirpg
BakaShiMoe
| def input_type(jenni, input): | |
| jenni.say(str(type(input))) | |
| input_type.commands = ['input_type'] |
Oklahoma
| #!/usr/bin/env zsh | |
| cd /home/yano/dev/adblockplus | |
| wget https://adversity.googlecode.com/hg/Antisocial.txt -O Antisocial.txt | |
| wget https://adversity.googlecode.com/hg/Adversity.txt -O Adversity.txt | |
| wget https://easylist-downloads.adblockplus.org/easylist.txt -O easylist.txt | |
| wget https://indonesianadblockrules.googlecode.com/hg/subscriptions/abpindo.txt -O abpindo.txt | |
| wget https://easylist-downloads.adblockplus.org/easyprivacy.txt -O easyprivacy.txt | |
| wget --no-check-certificate https://secure.fanboy.co.nz/fanboy-adblock.txt -O fanboy-adblock.txt |
git.io is an awesome URL shortener provided by Github. It works when shortening URLs from *.github.com/* to a small https://git.io/ link.
>>> import requests| MEETING NOTICE | |
| ============== | |
| Central Ohio Linux Users Group | |
| Date: Wednesday, May 15 2013 from 7 PM to 9 PM local | |
| Meeting Presentation | |
| ============== | |
| Red Hat's Arthur Enright will present Red Hat Cloud Forms. | |
| Arthur will discuss how Open Source has been the primary driver in |
| def java_exploit(jenni, input): | |
| '''.javaexploit -- Show how long it has been since the last Java exploit''' | |
| page = web.get('http://java-0day.com/') | |
| matches = re.search('new Date\("(.*?)"\)', page) | |
| t = matches.groups() | |
| page2 = web.get('http://istherejava0day.com/') | |
| matches2 = re.search('<a id="answer">\n(.*)', page2) | |
| u = matches2.groups() | |
| if t and u: |
I take no responsibility in the reliably nor the legitimacy of any of the following websites. I am just listing what is available on the websites listed as headers.
You can contribute to this gist by forking it and making modifications and then posting in the comment section about it and I can merge the changes into this gist while preserving the history. Details on how to do this, https://gist.github.com/myano/5315439
| #!/bin/bash | |
| IPTABLES_TARGET="DROP" | |
| IPTABLES_CHAINNAME="TOR" | |
| WORKING_DIR="/tmp/" | |
| # get IP address of eth0 network interface | |
| IP_ADDRESS=$(ifconfig eth0 | awk '/inet addr/ {split ($2,A,":"); print A[2]}') | |
| #!/usr/bin/env python | |
| f = open('test.py', 'w') | |
| f.write('Nothing to see here, move along now.') | |
| f.close() |