#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
| function write_ws_xml_datavalidation(validations) { | |
| var o = '<dataValidations>'; | |
| for(var i=0; i < validations.length; i++) { | |
| var validation = validations[i]; | |
| o += '<dataValidation type="list" allowBlank="1" sqref="' + validation.sqref + '">'; | |
| o += '<formula1>"' + validation.values + '"</formula1>'; | |
| o += '</dataValidation>'; | |
| } | |
| o += '</dataValidations>'; | |
| return o; |
| """ | |
| A simple execution time logger implemented as a python decorator. | |
| Available under the terms of the MIT license. | |
| """ | |
| import logging | |
| import time | |
| from functools import wraps |
| from __future__ import print_function # Python 2/3 compatibility | |
| import json | |
| import boto3 | |
| # AWS_ACCESS = "" | |
| # AWS_SECRET = "" | |
| AWS_REGION = "eu-west-3" | |
| TABLE_NAME = "users" | |
| client = boto3.client( |
#Wireless Penetration Testing Cheat Sheet
##WIRELESS ANTENNA
root@uceka:~# ifconfig wlan0mon down
root@uceka:~# iwconfig wlan0mon mode monitor
root@uceka:~# ifconfig wlan0mon up
2019-06-03
Note that Office2019 DO NOT support activate via simple copy/paste plist license file which is the simplest way to activate Office 2016. Fortunately, you can also use the VL Serializer tool, just install Office 2019 and Serializer, then run Serializer to activate.
| // ==UserScript== | |
| // @name 百度网盘aria2导出工具 | |
| // @author acgotaku311 | |
| // @description 一个方便吧百度网盘的Aria2rpc导出的脚本。 | |
| // @encoding utf-8 | |
| // @include http://*n.baidu.com/s/* | |
| // @include http://*n.baidu.com/disk/home* | |
| // @include http://*n.baidu.com/share/link* | |
| // @include https://*n.baidu.com/s/* | |
| // @include https://*n.baidu.com/disk/home* |
| #!/bin/bash | |
| echo "Patching Microsoft Office Outlook..." | |
| sudo perl -i.bak -pe 's|\x00\x0F\xA3\xCA\x72\x02\x31\xC0|\x00\x0F\xA3\xCA\x72\x02\x90\x90|' /Applications/Microsoft\ Outlook.app/Contents/Frameworks/MicrosoftSetupUI.framework/Versions/Current/MicrosoftSetupUI | |
| sudo codesign -f -s - /Applications/Microsoft\ Outlook.app/Contents/Frameworks/MicrosoftSetupUI.framework | |
| echo "Patching Microsoft Office Word..." | |
| sudo perl -i.bak -pe 's|\x00\x0F\xA3\xCA\x72\x02\x31\xC0|\x00\x0F\xA3\xCA\x72\x02\x90\x90|' /Applications/Microsoft\ Word.app/Contents/Frameworks/MicrosoftSetupUI.framework/Versions/Current/MicrosoftSetupUI | |
| sudo codesign -f -s - /Applications/Microsoft\ Word.app/Contents/Frameworks/MicrosoftSetupUI.framework |