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
12:38:00 PM frmpg/s bufpg/s campg/s | |
12:41:16 PM -5423.00 0.00 -754.00 | |
12:41:17 PM -1784.00 1.00 1504.00 | |
12:41:18 PM -1868.00 1.00 337.00 | |
12:41:19 PM -1110.00 2.00 416.00 | |
12:41:20 PM 16308.00 -27.00 -10383.00 | |
12:41:21 PM 77274.00 -56.00 -71772.00 | |
12:41:22 PM 154106.00 -147.00 -121659.00 | |
12:41:23 PM 121624.00 -253.00 -93271.00 | |
12:41:24 PM 109223.00 -238.00 -84747.00 |
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
12:41:21.913124 read(932, "\25\3\3\0\32", 5) = 5 | |
12:41:21.913140 read(932, "\0\0\0\0\0\0\0\1\244=\241\234Jw\316\370\330\246\276\220N\225\315\2333w", 26) = 26 | |
12:41:21.913171 sendto(55, "<a href=\"/general.sv.html?label=gen173nr-1FCAEoggJCAlhYSDNiBW5vcmVmaAKIAQGYAS64 | |
12:41:21.913199 sendto(55, "; form.append( input ).append( check ); } }); } </script> \n<script src=\"https://r-e | |
12:41:22.413476 recvfrom(1143, "T[16], r.MB, r.MN, null), T[17], r.ME(T[18], r.MB, r.MN, null), T[12], r.ME(T[19 | |
12:41:22.413512 sendto(55, "T[16], r.MB, r.MN, null), T[17], r.ME(T[18], r.MB, r.MN, null), T[12], r.ME(T[19], r | |
12:41:22.413539 connect(2665, {sa_family=AF_INET, sin_port=htons(80), sin_addr=inet_addr("10.198.156.38")}, 16) |
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
12:38:00 PM active/s passive/s iseg/s oseg/s | |
12:41:18 PM 4403.00 836.00 48416.00 66313.00 | |
12:41:19 PM 4115.00 819.00 48401.00 67910.00 | |
12:41:20 PM 1417.00 786.00 43005.00 57608.00 | |
12:41:21 PM 4225.00 824.00 35247.00 49883.00 | |
12:41:22 PM 1198.00 814.00 21580.00 25604.00 | |
12:41:23 PM 3446.00 768.00 24229.00 33893.00 | |
12:41:24 PM 4269.00 773.00 30462.00 46604.00 | |
12:41:25 PM 2259.00 821.00 24347.00 33772.00 | |
12:41:26 PM 994.06 880.20 13207.92 15813.86 |
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
#! /bin/bash | |
# | |
# hapee_tracing.sh | |
KILL_FILE="/tmp/kill_hapee_tracing" | |
BASE_DIR="/var/log/pidstats/" | |
SOCKET_DIR="/run/lb_engine/" | |
PROCESS_NUMBER="$1" | |
PIDS=( $(cat /run/hapee-lb.pid) ) | |
PID_INDEX=$(($PROCESS_NUMBER-1)) | |
PID=${PIDS[${PID_INDEX}]} |
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
08:35:42.981081+01:00 lb-101 bird: **BGP1: Received: Other configuration change** | |
08:35:42.981362+01:00 lb-101 bird: BGP1: BGP session closed | |
08:35:42.981474+01:00 lb-101 bird: BGP1: State changed to stop | |
08:35:42.991510+01:00 lb-101 bird: BGP1: Down | |
08:35:42.991775+01:00 lb-101 bird: bfd1: Session to 10.248.16.254 removed | |
08:35:42.991883+01:00 lb-101 bird: BGP1: State changed to down | |
08:35:42.991985+01:00 lb-101 bird: BGP1: Starting | |
08:35:42.992090+01:00 lb-101 bird: BGP1: State changed to start | |
08:35:42.992191+01:00 lb-101 bird: bfd1: Session to 10.248.16.254 added | |
08:35:42.992299+01:00 lb-101 bird: BGP1: Started |
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
<script type="text/javascript"> | |
(function () { | |
"use strict"; | |
// once cached, the css file is stored on the client forever unless | |
// the URL below is changed. Any change will invalidate the cache | |
var css_href = './index_files/web-fonts.css'; | |
// a simple event handler wrapper | |
function on(el, ev, callback) { | |
if (el.addEventListener) { | |
el.addEventListener(ev, callback, false); |
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
function scorePassword($password){ | |
$score=0; | |
if(!$password) | |
return 0; | |
// award every unique letter until 5 repetitions | |
$letters=str_split($password); | |
$scores=array(); | |
foreach($letters as $letter){ | |
$scores[$letter]=(isset($scores[$letter]))?$scores[$letter]+1:1; |
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
function scorePassword(pass) { | |
var score = 0; | |
if (!pass) | |
return score; | |
// award every unique letter until 5 repetitions | |
var letters = new Object(); | |
for (var i=0; i<pass.length; i++) { | |
letters[pass[i]] = (letters[pass[i]] || 0) + 1; | |
score += 5.0 / letters[pass[i]]; |
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
<?php | |
function get_br_whois( $url, $array_fields ) | |
{ | |
$options = array( | |
CURLOPT_RETURNTRANSFER => true, // return web page | |
CURLOPT_HEADER => false, // don't return headers | |
CURLOPT_FOLLOWLOCATION => true, // follow redirects | |
CURLOPT_ENCODING => "", // handle all encodings | |
CURLOPT_USERAGENT => "PHP Whois/Curl script", // who am i | |
CURLOPT_AUTOREFERER => true, // set referer on redirect |