This is default featured slide 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 2 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 3 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 4 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 5 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

terça-feira, 8 de setembro de 2015

Cisco WLC SNMP Historical User Statistics Monitoring (w/ Syslog or Splunk)

Purpose:
This document aims to outline a way to extract client association data from a Cisco WLC so that it can be referenced later.  My organization has a business requirement to track all wireless users.  We use the techniques outlined in this document to take a "snap-shot" of our wireless clients associated with a Cisco WLC every 5 minutes and import that data into Splunk, where we can index and search through it any time we want.
This document will cover some basics needed to successfully extract connected client data from a Cisco WLC via SNMP.  Although this feat has probably been done before, I was able to find little documentation on how to extract this specific data and use it for historical purposes.  This document will provide MIB information to key OIDs of value, a bash scripting example, and lessons learned.

segunda-feira, 7 de setembro de 2015

Cavalo de Tróia bancário ataca 100 mil brasileiros no Brasil e EUA


A Unit 42, unidade de pesquisas da Palo Alto Networks, lança alerta sobre o Escelar, malware direcionado contra clientes de sete bancos brasileiros



quarta-feira, 2 de setembro de 2015

Mikrotik - User Manager API - create new user

solved with this code..
require('C:\Program Files\EasyPHP-12.1\www\my portable files/class routeros_api.php');
// new object api
$API = new routeros_api();
$API->debug = true;
if ($API->connect('192.168.3.1', 'userapi', '1234') ) {

$ARR=$API->comm("/tool/user-manager/user/add",Array( 
"customer" => "admin",
"name" => "11",
"password" => "11",
"shared-users" => "1",
"copy-from" => "1D",
));


$API -> disconnect();

}

?>

thanks...