Initial PoC of spoofing Android OAuth

This commit is contained in:
Matthew Esposito 2023-06-05 20:31:25 -04:00
parent ba89b76332
commit 383d2789ce
No known key found for this signature in database
5 changed files with 94 additions and 5 deletions

22
Cargo.lock generated
View file

@ -482,6 +482,17 @@ dependencies = [
"version_check",
]
[[package]]
name = "getrandom"
version = "0.2.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c85e1d9ab2eadba7e5040d4e09cbd6d072b76a557ad64e797c2cb9d4da21d7e4"
dependencies = [
"cfg-if",
"libc",
"wasi",
]
[[package]]
name = "globset"
version = "0.4.10"
@ -712,6 +723,7 @@ name = "libreddit"
version = "0.30.1"
dependencies = [
"askama",
"base64",
"brotli",
"build_html",
"cached",
@ -735,6 +747,7 @@ dependencies = [
"tokio",
"toml",
"url",
"uuid",
]
[[package]]
@ -1590,6 +1603,15 @@ dependencies = [
"percent-encoding",
]
[[package]]
name = "uuid"
version = "1.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "345444e32442451b267fc254ae85a209c64be56d2890e601a0c37ff0c3c5ecd2"
dependencies = [
"getrandom",
]
[[package]]
name = "version_check"
version = "0.9.4"