https://github.com/bc100dev/osintgramcxx
A reimplementation of Osintgram, but in C++
https://github.com/bc100dev/osintgramcxx
cli cli-app command-line command-line-interface command-line-tool cpp data-collection instagram linux-app linux-cli networking open-source osint osint-tool osintgram shell-prompt windows-app windows-cli
Last synced: about 1 month ago
JSON representation
A reimplementation of Osintgram, but in C++
- Host: GitHub
- URL: https://github.com/bc100dev/osintgramcxx
- Owner: BC100Dev
- License: gpl-3.0
- Created: 2024-09-04T14:23:57.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2024-12-10T16:21:06.000Z (10 months ago)
- Last Synced: 2024-12-25T19:55:32.657Z (9 months ago)
- Topics: cli, cli-app, command-line, command-line-interface, command-line-tool, cpp, data-collection, instagram, linux-app, linux-cli, networking, open-source, osint, osint-tool, osintgram, shell-prompt, windows-app, windows-cli
- Language: C++
- Homepage:
- Size: 235 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# OsintgramCXX
```text
*@@@%%%@@&, ,&@@%%%&@@@. | (@@&%%%@@@ @&. ,&@.
#@& ,@@( #@%. | .&@( \@\ .@@, *@@,
.&@. /@% .@@/ .*****, | ,@@ @@@@@@@@@@@% .%@@@@@@@@@@%.
#@& ,@@/ %@# @@| | &@/ /@/ .@@, *@@,
,@@@@&@@@&. *@@@@@@@@@@. | \#@@@@&@@@/ .@@, *@@,
```Ever since the development on [the original Project](https://github.com/Datalux/Osintgram)
has stopped and the Instagram API being changed constantly, I have decided to take care
of this project and rewrite most to all components by myself. Well... except for the
Networking part, me and Networking aren't the best friends... just yet. Wait, until I
finish one of the most insane projects known to man. A hint, it's on my GitHub profile.---
## Use cases
No use cases just yet. Matter of fact, this project is still in active development, and I
am not planning to abandon this project, just like [Datalux](https://github.com/Datalux)
did. However, I will be doing Announcements and Polls, in case I would be disclosing more
information.Alongside with that, since people were asking me about how to use this tool (you may see
an [example here](https://github.com/BC100Dev/osintgram4j/issues/16) from the previous
version). No offense to people waiting eagerly for the tool to come out, but since actual
development (without AI) does take some time, this won't be a "quick coding session". This
does take time, but I will be updating you guys on any updates.However, what I can describe on what features are implemented (or will be) in here are these:
- **Modding Support**: Add your own Hooks and Commands to OsintgramCXX itself (requires C/C++
coding skills)
- **DSI** (Device Spoofing Information): Spoofs a device for network calls to Instagram (what
is an OSINT tool for the community without spoofing some shit)
- **Manual Interaction**: Using this tool means that you have more control than having most
actions automated (e.g. automated login)
- **Proxies & Proxychains**: Allows you to connect to multiple Proxies at once, allowing a
connection through several servers
- **Multi-Session Interaction**: Target multiple profiles at once without having to automate
more thingsDoes the original version of this tool have most of those things prebuilt already? I don't
think so. Let me cook and you won't be disappointed.---
## Disclaimer & Privacy Policy
OsintgramCXX, along with any other software, is merely intended for ethical and legal use
only. By the definition of OSINT, the use of this tool is to collect publicly available
information. This means that commands from the original version (like fetching E-Mail
addresses and phone numbers) are not copied over for legal reasons. By default, Instagram
does NOT expose sensitive information to the public, unless the person associated with the
account shares information. That information may include a publicly-known business E-Mail
address, business phone number or possibly even the physical business address tied to the
person / business.Other developers, myself included, do not support unethical activities like black-hat
hacking (the unlawful version of hacking) and other malicious actions. Always follow
relevant laws and the Terms of Service of the perspective platform. Developers can still
be held accountable by designing such tools in the first place, so deploy this tool under
legal and good intentions. We do not want a lawsuit, neither any cease of desist letters.By using this tool, you acknowledge that:
- **Responsibility**: You are accountable for the actions you take
- **Ethical Use**: You do not misuse this tool to your advantage in harassing people
- **Actions getting logged**: Instagram will log each action you take using this tool
- **Liability**: we, the developers, are not liable for the consequences you take by
potentially misusing this tool.
- **Terms and Imprint**: using this tool, you also break the Instagram's [Terms of Service
/ Imprint](https://help.instagram.com/581066165581870/?locale=en_US)---
## Build Process
To build the tool, you will need to install a few tools. Those tools include:
- CMake
- C++ compilers
- VCPKG dependencies (tar, unzip, zip, curl)For this, using your package manager, install these following packages. This may vary on
your distribution. For Debian (Termux included), you will be using `apt`. Your full
command will be:```shell
$ sudo apt install build-essential cmake tar unzip zip curl libssl-dev libcurl4-openssl-dev
```For Arch Linux users:
```shell
$ pacman -S base-devel cmake tar unzip zip curl openssl zlib
```After installing these dependencies, run these two commands (simplified for VCPKG handling):
```shell
$ git clone https://github.com/BC100Dev/OsintgramCXX.git
$ cd OsintgramCXX
$ chmod +x prepare.sh
$ ./prepare.sh
```This will download the sources of OsintgramCXX, along with preparing the environment for
building. After the execution of `./prepare.sh`, do the final blow with this command:```shell
$ cmake --build Build
```---
### Building on non-Linux systems
Okay, but you might be running Windows or macOS, so how else can you build it? Different
methods include:- Virtual Machines
- Cloud Shell (via SSH)
- Containers (e.g. Docker)
- Dual-Booting (if you have a Windows PC)
- WSL (Windows only)
- Termux (Android only, still experimenting for a proper build)