Skip to content
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

Initial PoC of spoofing Android OAuth #819

Draft
wants to merge 12 commits into
base: master
Choose a base branch
from
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/target

.env
# Idea Files
.idea/
.idea/
143 changes: 108 additions & 35 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,12 @@ toml = "0.7.4"
once_cell = "1.17.0"
serde_yaml = "0.9.16"
build_html = "2.2.0"
uuid = { version = "1.3.3", features = ["v4"] }
base64 = "0.21.2"
fastrand = "1.9.0"
log = "0.4.18"
pretty_env_logger = "0.5.0"
dotenvy = "0.15.7"
Comment on lines +33 to +38
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

uuid: Used for spoofing the device clients
base64: Used for generating the HTTP Basic Auth header
fastrand: Used to generate random devices to spoof
log, pretty_env_logger, dotenvy: Used to improve logging


[dev-dependencies]
lipsum = "0.9.0"
Expand Down