Teamspeak published a challenge on Twitter here
and it included this
I hereby claim:
- I am chemputer on github.
- I am chemputer (https://keybase.io/chemputer) on keybase.
- I have a public key ASCo0LlVt721z0067h9fuFK_u1wHVl5-qjpB8w8si1gPCQo
To claim this, I am signing this object:
This is a simple password checker based on zxcvbn. It's simple, short program that you can use to easily check your passwords on a local machine, rather than using a website that promises it's definitely not storing your passwords.
The only main prerequisite is zxcvbn, which can be installed by either:
python3 -m pip install zxcvbn
or pip3 install zxcvbn
Then you simply need to execute the program. The program will ask you for a password, which you type into the terminal. It will keep looping, over and over, until you enter exit, quit, or stop as the password.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
############################################################ | |
# Powershell script to remove shit features bundled in Windows 10 | |
# Removes junk bundled with Windows 10 | |
# App list: https://www.howtogeek.com/224798/how-to-uninstall-windows-10s-built-in-apps-and-how-to-reinstall-them/ | |
# King shit: https://care.king.com/en/candy-crush-soda-saga/how-to-remove-candy-crush-soda-saga-from-windows-10-with-a-powershell-command | |
# Author: Joshua Haupt [email protected] Date: 19.12.2017 | |
# Original gist: https://gist.github.com/HauptJ/e09a8b7e699115f8f35e699a09816da2 | |
# Author: Ben Turner [email protected] 10.22.2019 | |
# Added ability to remove Hidden City and Disable "Consumer Experience", removed the line that removed the "people" | |
# app, as it failed due to being a system app. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$error.clear() | |
try { | |
New-Item –Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\CloudContent" -Force | New-ItemProperty -Name "DisableWindowsConsumerFeatures" -Value "1" -PropertyType "DWORD" | |
} | |
catch { "Error occured" } | |
if ($error) { | |
Set-Itemproperty -path HKLM:\SOFTWARE\Policies\Microsoft\Windows\CloudContent -Name 'DisableWindowsConsumerFeatures' -value '1' | |
} | |
NewerOlder