#Wireless Penetration Testing Cheat Sheet
##WIRELESS ANTENNA
- Open the Monitor Mode
root@uceka:~# ifconfig wlan0mon down
root@uceka:~# iwconfig wlan0mon mode monitor
root@uceka:~# ifconfig wlan0mon up
#Wireless Penetration Testing Cheat Sheet
##WIRELESS ANTENNA
root@uceka:~# ifconfig wlan0mon down
root@uceka:~# iwconfig wlan0mon mode monitor
root@uceka:~# ifconfig wlan0mon up
| { | |
| "84kr3q1592995213323": { | |
| "type": 1, | |
| "color": "#cc883a", | |
| "title": "Burp", | |
| "active": true, | |
| "address": "127.0.0.1", | |
| "port": 8080, | |
| "proxyDNS": false, | |
| "username": "", |
I start with a list and plan to create a comparison table.
http://www.w3.org/TR/WebCryptoAPI/
This specification describes a JavaScript API for performing basic cryptographic operations in web applications, such as hashing, signature generation and verification, and encryption and decryption. Additionally, it describes an API for applications to generate and/or manage the keying material necessary to perform these operations. Uses for this API range from user or service authentication, document or code signing, and the confidentiality and integrity of communications.
| using System.Net.Http; | |
| using System.Net.Http.Headers; | |
| using System.Text; | |
| using Newtonsoft.Json; | |
| using Newtonsoft.Json.Linq; | |
| // URL of the powerqueryformatter.com API | |
| string powerqueryformatterAPI = "https://m-formatter.azurewebsites.net/api/v2"; | |
| // HttpClient method to initiate the API call POST method for the URL |
| // Count calculation groups & calculation items | |
| int _calcgroups = 0; | |
| int _calcitems = 0; | |
| foreach ( var _calcgroup in Model.CalculationGroups ) | |
| { | |
| _calcgroups = _calcgroups + 1; | |
| foreach ( var _item in _calcgroup.CalculationItems ) | |
| { | |
| _calcitems = _calcitems + 1; | |
| } |
| string dependancies = "flowchart LR\n%% Measure dependancy mermaid flowchart"; | |
| foreach(var _measures in Model.AllMeasures ) | |
| { | |
| var _upstream = _measures.DependsOn; | |
| var _upstream_measures = _upstream.Measures.OfType<Measure>().Select(c => c).Distinct(); | |
| dependancies += string.Format("\r\n\n%% [{1}] Dependancies:\n\t{0}[\"{1}\"]", |
| ######################################################################################### | |
| # Authentication - Replace string variables with your relevant values | |
| ######################################################################################### | |
| import json, requests, pandas as pd | |
| try: | |
| from azure.identity import ClientSecretCredential | |
| except Exception: | |
| !pip install azure.identity | |
| from azure.identity import ClientSecretCredential |
| // This code is still WIP, it doesn't entirely filter the lineage. Feel free to make adjustments. | |
| string dependancies = "flowchart LR\n%% Measure dependancy mermaid flowchart"; | |
| //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// | |
| foreach(var _measures in Model.AllMeasures ) | |
| { | |
| // Deep lineage for upstream measures |
| // This code is still WIP, it doesn't entirely filter the lineage. Feel free to make adjustments. | |
| string dependancies = "::: mermaid\ngraph LR;\n%% Measure dependancy mermaid flowchart"; | |
| //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// | |
| foreach(var _measures in Model.AllMeasures ) | |
| { | |
| // Deep lineage for upstream measures |
| <Query Kind="Statements"> | |
| <Namespace>System.Collections.Concurrent</Namespace> | |
| <Namespace>System.Threading.Tasks</Namespace> | |
| <Namespace>System.Threading.Tasks.Dataflow</Namespace> | |
| </Query> | |
| var produceSpeed = TimeSpan.FromSeconds(0.5); | |
| var produceCount = 20; | |
| var consumeSpeed = TimeSpan.FromSeconds(2); | |
| var maxParallelConsume = 4; |