- Export your account from Authenticator app then use other phone to scan the QR code displayed
- Your text from QR code has form of:
otpauth-migration://offline?data=thisIsSomeDataInBase64AndUrlEncoded%2B%3D
- Convert the data (all after
otpauth-migration://offline?data=
) to base64 by F12 in Chrome/Edge, in Developer console enter the following:decodeURIComponent('thisIsSomeDataInBase64AndUrlEncoded%2B%3D')
- Copy the result string (without quotes) to https://protobuf-decoder.netlify.app/ you will get
- Notice content at Byte range 0-12 is your secret key, copy that string
23 f8 58 9a 0d a6 93 f1 22 ec
to https://cryptii.com/pipes/hex-to-base32 ![image](https://user-images.githubusercontent.com/2195141/24266984
Repo 1: started from 1/1/2016 to 1/1/2020.
Repo 2: copied from last commit of repo 1 and continues till now
###Concatenating repo 2 to tail of repo 1:
From repo 2, add remote to repo 1:
git remote add old file://to/repo1/
git fet old
This file contains 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
foreach ($ext in $args) { | |
if ($ext.startswith(".")) { | |
$path = "HKLM\SOFTWARE\Classes\" + $ext; | |
reg add $path /v PerceivedType /t REG_SZ /d text | |
} | |
} |
This file contains 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
# ---------------------------------------------------------------------------------------------- | |
# HULK - HTTP Unbearable Load King | |
# | |
# this tool is a dos tool that is meant to put heavy load on HTTP servers in order to bring them | |
# to their knees by exhausting the resource pool, its is meant for research purposes only | |
# and any malicious usage of this tool is prohibited. | |
# | |
# author : Barry Shteiman , version 1.0 | |
# ---------------------------------------------------------------------------------------------- | |
import urllib2 |