This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| iptables -I INPUT -p tcp --dport 22 -i eth0 -m state --state NEW -m recent --set | |
| iptables -I INPUT -p tcp --dport 22 -i eth0 -m state --state NEW -m recent --update --seconds 60 --hitcount 4 -j LOG --log-prefix "SSH_brute_force " | |
| iptables -I INPUT -p tcp --dport 22 -i eth0 -m state --state NEW -m recent --update --seconds 60 --hitcount 4 -j DROP |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| define bpl | |
| info breakpoints | |
| end | |
| document bpl | |
| List breakpoints | |
| end | |
| define bp | |
| set $SHOW_CONTEXT = 1 | |
| break * $arg0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import pycurl | |
| def body(buf): | |
| print len(buff) | |
| your_url = "http://pygotham.org/talkvote/full_schedule" | |
| pycurl_connect = pycurl.Curl() | |
| pycurl_connect.setopt(pycurl.URL, your_url) | |
| pycurl_connect.setopt(pycurl.WRITEFUNCTION, body) | |
| pycurl_connect.setopt(pycurl.HTTPHEADER, ['Content-Type:application/json', 'Accept:application/json']) | |
| pycurl_connect.perform() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| elpowerd_status="`initctl status powerd`" | |
| if [ ! "$powerd_status" = "powerd stop/waiting" ] | |
| then | |
| echo "Stopping powerd to keep display from timing out..." | |
| initctl stop powerd | |
| fi | |
| # Do partitioning (if we haven't already) | |
| ckern_size="`cgpt show -i 6 -n -s -q /dev/sda`" | |
| croot_size="`cgpt show -i 7 -n -s -q /dev/sda`" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from selenium import selenium | |
| import unittest, time, re | |
| class Untitled(unittest.TestCase): | |
| def setUp(self): | |
| self.verificationErrors = [] | |
| self.selenium = selenium("localhost", 4444, "*chrome", "http://blip.tv/") | |
| self.selenium.start() | |
| def test_untitled(self): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Delete file | |
| * | |
| * @param id[required] $id | |
| * @param reason[required] $reason | |
| * @return Response stdClass if succes, or FALSE if there error. | |
| */ | |
| public function delete($id=null, $reason="") { | |
| if(($id==null) or (empty($id))) | |
| throw new Exception("MISSING_PARAMETER: No id given."); |
NewerOlder