VeilCord // @imvast
Project description
VeilCord.
> Custom Discord Tools Going To Be Used For My Projects
And Available To Anyone Else Who Wants To Use <
Installation
pip install veilcord
Example Usages
from veilcord import VeilCord
veilcord = VeilCord(
session = ..., # for custom tls_client sessions
device_type = "browser", # types : browser, mobile, app (aka desktop)
user_agent = ... # for custom user agent
)
# GETTING X-Super-Properties
xsup = veilcord.generateXProp()
print(f"(+) Retrieved XSup: {xsup}")
# GETTING ALL THE COOKIES AND FINGERPRINT
fp, cookies = veilcord.getFingerprint(
xsup,
withCookies = True, # true or false -- will return cookies that are returned in the expirements req
cookieType = "json" # if withCookies is true this can be either "json" or "cookiejar" -- by default its cookiejar
)
print(f"(+) Retrieved Fingerprint: {fp}")
print(f"(+) Retrieved Cookies: {cookies}")
# returns a tuple. [0] - Fingerprint | [1] - COOKIESJAR or JSON
# GET THE NEW SESSION ID BS
_, sessionID = veilcord.getSession(
token = "",
)
if sessionID == "invalid token":
print("invalid token :(")
else:
print(f"(+) Got Session ID: {sessionID}")
## Getting Discord build number
buildNum = VeilCord.getBuildNum()
print(buildNum)
Custom Sessions
session = veilcord.openSession(
custom_rpc = {
"status": "online",
"since": 0,
"activities": [{
"name": "Custom Status",
"type": 4,
"state": "vast#1337",
"emoji": ""
}],
"afk": False
}
)
veilcord.getSession(
token = "", # obv the token
session = session, # the session returned from veilcord.openSession() (if u are using keepAlive)
keep_alive = True, # keep the session alive until closed with veilcord.closeSession()
show_hb = True # prints when it sends the heartbeat and when the next one is
)
# close the session, if keepAlive is enabled.
veilcord.closeSession(session)
> imvast@discord | imvast@github | vast.sh <
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
veilcord-0.0.7.0.tar.gz
(13.5 kB
view details)
Built Distribution
File details
Details for the file veilcord-0.0.7.0.tar.gz
.
File metadata
- Download URL: veilcord-0.0.7.0.tar.gz
- Upload date:
- Size: 13.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0d24f3ef953135a30efcb45a928a14faee016ce516e4032f567da3f097147d00 |
|
MD5 | 12844b1e4d80e476f73fe9617af5c024 |
|
BLAKE2b-256 | 0bb39dbe9136c4bf903045c9333ccd864ca68d89fdca9682086ad98dad7b3eb7 |
File details
Details for the file veilcord-0.0.7.0-py3-none-any.whl
.
File metadata
- Download URL: veilcord-0.0.7.0-py3-none-any.whl
- Upload date:
- Size: 13.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6d5829b3c3ec1c87eebf57ab75427e6da467d6fdd58a76701b3fa33157a4773f |
|
MD5 | e9e7aecb3ff7c132611c6f67e28932c0 |
|
BLAKE2b-256 | 43a29e36d0570410bfe4d4b18cc00c8619837186cc496f00de3975a2e8925003 |