With kerbrute.py:
python kerbrute.py -domain <domain_name> -users <users_file> -passwords <passwords_file> -outputfile <output_file>With Rubeus version with brute module:
| import board | |
| #from kmk.kmk_keyboard import KMKKeyboard | |
| #from kmk.matrix import DiodeOrientation | |
| #from kmk.keys import KC | |
| # Updated to be compatible with the latest KMK release (which requires CircuitPython >= 7.0) | |
| from kmk.kmk_keyboard import KMKKeyboard | |
| from kmk.keys import KC | |
| from kmk.scanners import DiodeOrientation |
| {"lastUpload":"2021-08-31T08:20:42.057Z","extensionVersion":"v3.4.3"} |
With kerbrute.py:
python kerbrute.py -domain <domain_name> -users <users_file> -passwords <passwords_file> -outputfile <output_file>With Rubeus version with brute module:
| # PowerView's last major overhaul is detailed here: http://www.harmj0y.net/blog/powershell/make-powerview-great-again/ | |
| # tricks for the 'old' PowerView are at https://gist.github.com/HarmJ0y/3328d954607d71362e3c | |
| # the most up-to-date version of PowerView will always be in the dev branch of PowerSploit: | |
| # https://github.com/PowerShellMafia/PowerSploit/blob/dev/Recon/PowerView.ps1 | |
| # New function naming schema: | |
| # Verbs: | |
| # Get : retrieve full raw data sets | |
| # Find : ‘find’ specific data entries in a data set |
| username user | |
| password butthole |
| #!/usr/bin/env bash | |
| # https://developers.supportbee.com/blog/setting-up-cucumber-to-run-with-Chrome-on-Linux/ | |
| # https://gist.github.com/curtismcmullan/7be1a8c1c841a9d8db2c | |
| # https://stackoverflow.com/questions/10792403/how-do-i-get-chrome-working-with-selenium-using-php-webdriver | |
| # https://stackoverflow.com/questions/26133486/how-to-specify-binary-path-for-remote-chromedriver-in-codeception | |
| # https://stackoverflow.com/questions/40262682/how-to-run-selenium-3-x-with-chrome-driver-through-terminal | |
| # https://askubuntu.com/questions/760085/how-do-you-install-google-chrome-on-ubuntu-16-04 | |
| # Versions | |
| CHROME_DRIVER_VERSION=`curl -sS https://chromedriver.storage.googleapis.com/LATEST_RELEASE` |
| import time | |
| import datetime | |
| import asyncio | |
| import aiohttp | |
| domain = 'http://integralist.co.uk' | |
| a = '{}/foo?run={}'.format(domain, time.time()) | |
| b = '{}/bar?run={}'.format(domain, time.time()) | |
| async def get(url): |
Accessibility checklist (All of the things in this checklist may not apply to every project)
Aria roles:
<header role="banner"> A region of the page that is site focused. Typically your global page header.<nav role="navigation"> Contains navigational links.<main role="main"> Focal content of document. Use only once.<article role="article"> Represents an independent item of content. Use only once on outermost element of this type.<aside role="complementary"> Supporting section related to the main content even when separated.For me the perfect developer (if there is such a person) has these qualities:
| # -*- coding: utf-8 -*- | |
| from bottle import route, run | |
| @route('/') | |
| def index(): | |
| return '<h1>Hello World/h1>' | |
| run(host='localhost', port=8000) |