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
id: skype-blind-ssrf | |
info: | |
name: Skype for Business 2019 (SfB) - Blind Server-side Request Forgery | |
author: hateshape | |
severity: high | |
description: Skype Pre-Auth Server-side Request Forgery (SSRF) vulnerability | |
reference: | |
- https://frycos.github.io/vulns4free/2022/09/26/skype-audit-part2.html | |
metadata: |
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
#!/bin/bash | |
################################## INFOS ################################## | |
# Depends on exported otpauth-migration://offline from Google authenticator | |
# dependencies: expect oathtool otp_export python3-protobuf python3-urllib3 xclip zbarimg | |
# shellcheck disable=SC1087 disable=SC2128 | |
########################################################################### | |
addkeys() { | |
if [[ -s "$OTPEXPORTTMP" && -n "$OTPEXPORTTMP" ]]; then | |
OTPEXPORT=$(zbarimg -q "$OTPEXPORTTMP" | sed 's#QR-Code:##g') | |
elif [[ ! -s "$OTPEXPORTTMP" && -n "$OTPEXPORTTMP" ]]; then |
OlderNewer