diff --git a/README.md b/README.md index 70087c1..ff8eade 100644 --- a/README.md +++ b/README.md @@ -22,54 +22,65 @@ All commands are alternatively available as slash commands that better indicate ## Commands +### Admin + +` >>admin announce ` +- Announces a message to all whitelisted users. + +` >>admin whitelist
` +- Adds a person to the authorized user list. + +` >>admin blacklist
` +- Removes a person from the authorized user list. + +` >>admin dm ` +- DMs a message to a specific user. + ### OSINT -#### Queries +#### Hashing -` >>osint query hash ` -- Queries for leaks based on a hash. +` >>osint hash dehash ` +- Dehashes a hash into pre-cracked passwords. -` >>osint query name ` -- Queries for leaks based on a name. +` >>osint hash rehash ` +- Rehashes a password into pre-hashed hashes. -` >>osint query email ` -- Queries for leaks based on an email. +#### Queries ` >>osint query username ` - Queries for leaks based on a username. -` >>osint query ip ` -- Queries for leaks based on a last IP. - ` >>osint query password ` - Queries for leaks based on a password. -#### Hashing +` >>osint query hash ` +- Queries for leaks based on a hash. -` >>osint hash dehash ` -- Dehashes a hash into pre-cracked passwords. +` >>osint query ip ` +- Queries for leaks based on a last IP. -` >>osint hash rehash ` -- Rehashes a password into pre-hashed hashes. +` >>osint query name ` +- Queries for leaks based on a name. + +` >>osint query email ` +- Queries for leaks based on an email. #### Other ` >>osint sherlock ` - Cross-references sites with a given username. -` >>osint geolocate ` -- Geolocates an IP. - ` >>osint phone ` - Perform a Caller ID lookup on a phone number. +` >>osint geolocate ` +- Geolocates an IP. + ### R6 #### OPSEC -` >>r6 opsec recon ` -- Analyzes a Ubisoft account for suspicious behaviour based on their username (PC only). - ` >>r6 opsec psn ` - Looks up a Ubisoft account based on their registered PSN username. @@ -79,14 +90,14 @@ All commands are alternatively available as slash commands that better indicate ` >>r6 opsec applications ` - Looks up a Ubisoft account based on their username (PC only). +` >>r6 opsec recon ` +- Analyzes a Ubisoft account for suspicious behaviour based on their username (PC only). + ` >>r6 opsec xbox ` - Looks up a Ubisoft account based on their registered Xbox username. #### Economy -` >>r6 econ graph ` -- Graphs the all-time history of an item. - ` >>r6 econ analyze ` - Creates a detailed data sheet on an item. @@ -101,19 +112,8 @@ All commands are alternatively available as slash commands that better indicate ` >>r6 econ transfer ` - Finds the items with the least sellers either globally or on the account with the provided login. -### Admin - -` >>admin blacklist
` -- Removes a person from the authorized user list. - -` >>admin dm ` -- DMs a message to a specific user. - -` >>admin announce ` -- Announces a message to all whitelisted users. - -` >>admin whitelist
` -- Adds a person to the authorized user list. +` >>r6 econ graph ` +- Graphs the all-time history of an item. ## Setup diff --git a/src/sections/osint.rs b/src/sections/osint.rs index ae47a61..4e4a513 100644 --- a/src/sections/osint.rs +++ b/src/sections/osint.rs @@ -245,7 +245,10 @@ pub async fn cnam_lookup( let response = backend_handles.bulkvs.lock() .await - .query_phone_number(&phone_number) + .query_phone_number(&phone_number + .replace("-", "") + .replace("(", "") + .replace(")", "")) .map_err(|e| format!("{e:#?}"))?; let mut message = String::new();