https://github.com/mrboombastic/osintcord
Get data of (nearly) all of Discord guild members and track messages
https://github.com/mrboombastic/osintcord
discord guild logger members messages osint selfbot
Last synced: 3 months ago
JSON representation
Get data of (nearly) all of Discord guild members and track messages
- Host: GitHub
- URL: https://github.com/mrboombastic/osintcord
- Owner: MrBoombastic
- License: wtfpl
- Created: 2023-02-15T15:12:50.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2025-02-13T18:53:06.000Z (8 months ago)
- Last Synced: 2025-02-13T19:38:48.046Z (8 months ago)
- Topics: discord, guild, logger, members, messages, osint, selfbot
- Language: JavaScript
- Homepage:
- Size: 271 KB
- Stars: 7
- Watchers: 3
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README

[](https://www.codefactor.io/repository/github/mrboombastic/osintcord)Just get data of (nearly) all of Discord guild members. Or track deleted and edited messages. Or why not both?
> [!WARNING]
> I don't take any responsibility for blocked Discord accounts that used this module.
> Using this on a user account is prohibited by the Discord TOS and can lead to the account block.> [!TIP]
> If you are upgrading from the previous version, please make sure you update the dictionary in the`.env` file.
> [Pomelo](https://discord.fandom.com/wiki/Pomelo) has changed the rules for usernames.## Usage:
- By using source code:
- Clone this repository.
- Make sure that you have Node.js v18 installed.
- Install dependencies by using `yarn`.
- Fill in the `.env` file and place it in `src` directory.
- Run `npm start`.All results will be stored in the `logs` and `media` directories.
There is no prepacked binary - `pkg`/`yao-pkg` and ESM support state is fucked up beyond all recognition.
## Options:
You can use some default options from the already provided [.env](.env.example) file.
- When you want to dump guild members, set `MODE` to `MEMBERS` and
- `GUILD_ID`: The guild ID you want to get data from.
- `SPACING`: Spacing between columns in an output file.
- `TOKEN`: Your Discord account token.
- `DELAY`: Delay between *some* requests.
- `DICTIONARY`: Characters used by the bruteforce method. Case-insensitive, duplicates are ignored, sorted
alphabetically.
- `DATE_FORMAT`: format of the parsed date (refer to
the [Day.js manual](https://day.js.org/docs/en/display/format)).
- `DATE_LOCALE`: locale used in the parsed
date ([list of supported locales](https://github.com/iamkun/dayjs/tree/dev/src/locale)).
- `PREFETCH`: fetch 10 000 members at once. Missing info about presences may occur.
- When you want to trace deleted and edited messages, set `MODE` to `WATCHDOG` and
- `GUILD_ID`: The guild ID you want to get data from. Set to `all`, if you want to receive data from all available
guilds.
- `TOKEN`: Your Discord account token.## FAQ:
- Q: I'm getting `GUILD_MEMBERS_TIMEOUT` errors. Help!
A: Increase `delay` time in config.## Worth reading:
- https://github.com/Merubokkusu/Discord-S.C.U.M/blob/master/docs/using/fetchingGuildMembers.md