This file contains 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
#!/usr/bin/env python | |
import requests | |
import pynfdump | |
from xml.dom import minidom | |
# The path to the directory where the nfcapd files are stored - this should be directory that contains | |
# 'live' | |
# | |
nfStore="/var/netflow" |
This file contains 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
<?php | |
require( 'sofasogood.class.php' ); | |
$cdbConn = new sofasogood(); | |
$cdbConn->cdbUser = 'user'; | |
$cdbConn->cdbPass = 'pass'; | |
$cdbConn->cdbHost = 'localhost'; // defaults to localhost | |
$cdbConn->cdbPort = '5984'; // defaults to 5984 |
This file contains 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
Supported escape sequences: | |
~. - terminate connection (and any multiplexed sessions) | |
~B - send a BREAK to the remote system | |
~C - open a command line | |
~R - Request rekey (SSH protocol 2 only) | |
~^Z - suspend ssh | |
~# - list forwarded connections | |
~& - background ssh (when waiting for connections to terminate) | |
~? - this message | |
~~ - send the escape character by typing it twice |