Saturday, April 27, 2019

snowden hipotesis my folder

if wireless clients and wireless distribution systems cache PMKs between clients and APs, the PMKID can be used when a client roams "back" to an AP that it had been authenticated to previously. This would speed up roaming "back" to an old AP, since the full EAP authentication would not need to take place; the PMK already exists. Just the 4-way handshake would be necessary to generate the PTK
http://giantsnerdwifi.blogspot.com/2016/

robbering folder...hacking

Get-WinEvent with non-administrative user

This gives our support people instant access to the latest history without any elevated privileges....

$event = Get-WinEvent -FilterHashtable @{LogName='Security';Id=4740} -MaxEvents 1



...you could see. the hashpi file offline..between a period of time...
Get-WinEvent -path "C:\temp\*Security*.evtx" -max 10 -FilterHashtable @{Providername="Microsoft-Windows-Security-Auditing"; id=4740; StartTime=1/7/2013; EndTime=1/8/2013}
But powershell return error:
Get-WinEvent : Parameter set cannot be resolved using the specified named parameters.
answer was :" put quotes around them or explicitly define them as DateTime."

robbering folder...ARP attack inside the network

talking about DMZ...and back to Snowden...
To display the contents of the ARP cache, enter the following command ----------at any-------- CLI level.
explanation for previouse understanding where do I want to go:
If Computer A wants to contact Computer B (((( INSIDE THE SAME NETWORK))))within the same network, it must first determine the appropriate MAC address for its IP address. This uses the Address Resolution Protocol (ARP), a network protocol that operates according to the request response scheme.
After searching for the appropriate MAC address, Computer A sends a broadcast request (or ARP request) to all devices on the network. This request contains the following information:
A computer with the MAC address xx-xx-xx-xx-xx-xx and the IP address yyy.yyy.yyy.yyy would like to get in contact with a computer with the IP address zzz.zzz.zzz.zzz and requires the appropriate MAC address.
The ARP request is received by all computers in the LAN. In order to prevent an ARP request from being submitted prior to the sending of each data packet, every computer in the network performs a local table, called the ARP cache. In these tables, all known MAC addresses are temporarily stored along with their matching IP addresses.
DOCS.RUCKUSWIRELESS.COM
JavaScript must be enabled in order to use this site.Please enable JavaScript in your browser and refresh the page. Displaying ARP entries You can display the ARP cache and the static ARP table. The ARP cache contains entries for devices attached to the Layer 3 switch. The static ARP table contains....

(robbering folder)

ASKUBUNTU.COM
As far as I know the following command is supposed to make me root: su -i Nevertheless, when I type it in Ubuntu 17.04 Zesty Zapus, I get…