create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "your_email@youremail.com"
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "your_email@youremail.com"
| var links = []; | |
| var quotes = []; | |
| var tempUrl = []; | |
| var infos = []; | |
| var maxLinks = 10; | |
| var firstUrl = 'http://www.imdb.com/search/title?at=0&num_votes=5000,&sort=user_rating,desc&start=1&title_type=tv_infoss'; | |
| var newUrl; | |
| var x = require('casper').selectXPath; |
| alias server='open http://localhost:8000 && python -m SimpleHTTPServer' |
First off: this is the first time I "seriously" reversed a kernel-mode NT driver, so keep that in mind when you read this..
The Komodia rootkit config is located in a certain registry entry that's hardcoded in the driver. For Qustodio, it's HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\qwd\Data.
The config structure is simple enough. An array of the following structure:
DWORD type;
BYTE unknown[32]; // I don't see anywhere that the driver actually *reads* any of this part,
// at least, not after writing to it first.
| dnscrypt-proxy --local-address=127.0.0.1:53 --resolver-address=23.226.227.93:443 --provider-name=2.dnscrypt-cert.okturtles.com --provider-key=1D85:3953:E34F:AFD0:05F9:4C6F:D1CC:E635:D411:9904:0D48:D19A:5D35:0B6A:7C81:73CB |
| #!/usr/bin/env python | |
| # https://gist.github.com/joech4n/1b3d394ceb8b776f06d7 | |
| import os | |
| import sys | |
| import subprocess | |
| import argparse | |
| import ConfigParser | |
| import shlex |
| var objectA = { a: '1a', b: '1b', c: '1c' }; | |
| var objectB = { a: '2a', b: '2b', d: '2d' }; | |
| function objectDifference(minuend, subtrahend) { | |
| var firstIntersection = _.omit(minuend, _.keys(subtrahend)), | |
| secondIntersection = _.omit(subtrahend, _.keys(minuend)); | |
| return _.extend(firstIntersection, secondIntersection); | |
| } |