#!/usr/bin/env python3 from src.Osintgram import Osintgram import argparse from src import printcolors as pc from src import artwork import sys import signal is_windows = False try: import gnureadline except: is_windows = True import pyreadline def printlogo(): pc.printout(artwork.ascii_art, pc.YELLOW) pc.printout("\nVersion 1.1 - Developed by Giuseppe Criscione\n\n", pc.YELLOW) pc.printout("Type 'list' to show all allowed commands\n") pc.printout("Type 'FILE=y' to save results to files like '<target username>_<command>.txt (default is disabled)'\n") pc.printout("Type 'FILE=n' to disable saving to files'\n") pc.printout("Type 'JSON=y' to export results to a JSON files like '<target username>_<command>.json (default is " "disabled)'\n") pc.printout("Type 'JSON=n' to disable exporting to files'\n") def cmdlist(): pc.printout("FILE=y/n\t") print("Enable/disable output in a '<target username>_<command>.txt' file'") pc.printout("JSON=y/n\t") print("Enable/disable export in a '<target username>_<command>.json' file'") pc.printout("addrs\t\t") print("Get all registered addressed by target photos") pc.printout("cache\t\t") print("Clear cache of the tool") pc.printout("captions\t") print("Get target's photos captions") pc.printout("commentdata\t") print("Get a list of all the comments on the target's posts") pc.printout("comments\t") print("Get total comments of target's posts") pc.printout("followers\t") print("Get target followers") pc.printout("followings\t") print("Get users followed by target") pc.printout("fwersemail\t") print("Get email of target followers") pc.printout("fwingsemail\t") print("Get email of users followed by target") pc.printout("fwersnumber\t") print("Get phone number of target followers") pc.printout("fwingsnumber\t") print("Get phone number of users followed by target") pc.printout("hashtags\t") print("Get hashtags used by target") pc.printout("info\t\t") print("Get target info") pc.printout("likes\t\t") print("Get total likes of target's posts") pc.printout("mediatype\t") print("Get target's posts type (photo or video)") pc.printout("photodes\t") print("Get description of target's photos") pc.printout("photos\t\t") print("Download target's photos in output folder") pc.printout("propic\t\t") print("Download target's profile picture") pc.printout("stories\t\t") print("Download target's stories") pc.printout("tagged\t\t") print("Get list of users tagged by target") pc.printout("target\t\t") print("Set new target") pc.printout("wcommented\t") print("Get a list of user who commented target's photos") pc.printout("wtagged\t\t") print("Get a list of user who tagged target") def signal_handler(sig, frame): pc.printout("\nGoodbye!\n", pc.RED) sys.exit(0) def completer(text, state): options = [i for i in commands if i.startswith(text)] if state < len(options): return options[state] else: return None def _quit(): pc.printout("Goodbye!\n", pc.RED) sys.exit(0) signal.signal(signal.SIGINT, signal_handler) if is_windows: pyreadline.Readline().parse_and_bind("tab: complete") pyreadline.Readline().set_completer(completer) else: gnureadline.parse_and_bind("tab: complete") gnureadline.set_completer(completer) parser = argparse.ArgumentParser(description='Osintgram is a OSINT tool on Instagram. It offers an interactive shell ' 'to perform analysis on Instagram account of any users by its nickname ') parser.add_argument('id', type=str, # var = id help='username') parser.add_argument('-C','--cookies', help='clear\'s previous cookies', action="store_true") parser.add_argument('-j', '--json', help='save commands output as JSON file', action='store_true') parser.add_argument('-f', '--file', help='save output in a file', action='store_true') parser.add_argument('-c', '--command', help='run in single command mode & execute provided command', action='store') parser.add_argument('-o', '--output', help='where to store photos', action='store') args = parser.parse_args() api = Osintgram(args.id, args.file, args.json, args.command, args.output, args.cookies) commands = { 'list': cmdlist, 'help': cmdlist, 'quit': _quit, 'exit': _quit, 'addrs': api.get_addrs, 'cache': api.clear_cache, 'captions': api.get_captions, "commentdata": api.get_comment_data, 'comments': api.get_total_comments, 'followers': api.get_followers, 'followings': api.get_followings, 'fwersemail': api.get_fwersemail, 'fwingsemail': api.get_fwingsemail, 'fwersnumber': api.get_fwersnumber, 'fwingsnumber': api.get_fwingsnumber, 'hashtags': api.get_hashtags, 'info': api.get_user_info, 'likes': api.get_total_likes, 'mediatype': api.get_media_type, 'photodes': api.get_photo_description, 'photos': api.get_user_photo, 'propic': api.get_user_propic, 'stories': api.get_user_stories, 'tagged': api.get_people_tagged_by_user, 'target': api.change_target, 'wcommented': api.get_people_who_commented, 'wtagged': api.get_people_who_tagged } signal.signal(signal.SIGINT, signal_handler) if is_windows: pyreadline.Readline().parse_and_bind("tab: complete") pyreadline.Readline().set_completer(completer) else: gnureadline.parse_and_bind("tab: complete") gnureadline.set_completer(completer) if not args.command: printlogo() while True: if args.command: cmd = args.command _cmd = commands.get(args.command) else: signal.signal(signal.SIGINT, signal_handler) if is_windows: pyreadline.Readline().parse_and_bind("tab: complete") pyreadline.Readline().set_completer(completer) else: gnureadline.parse_and_bind("tab: complete") gnureadline.set_completer(completer) pc.printout("Run a command: ", pc.YELLOW) cmd = input() _cmd = commands.get(cmd) if _cmd: _cmd() elif cmd == "FILE=y": api.set_write_file(True) elif cmd == "FILE=n": api.set_write_file(False) elif cmd == "JSON=y": api.set_json_dump(True) elif cmd == "JSON=n": api.set_json_dump(False) elif cmd == "": print("") else: pc.printout("Unknown command\n", pc.RED) if args.command: break
Write, Run & Share Python code online using OneCompiler's Python online compiler for free. It's one of the robust, feature-rich online compilers for python language, supporting both the versions which are Python 3 and Python 2.7. Getting started with the OneCompiler's Python editor is easy and fast. The editor shows sample boilerplate code when you choose language as Python or Python2 and start coding.
OneCompiler's python online editor supports stdin and users can give inputs to programs using the STDIN textbox under the I/O tab. Following is a sample python program which takes name as input and print your name with hello.
import sys
name = sys.stdin.readline()
print("Hello "+ name)
Python is a very popular general-purpose programming language which was created by Guido van Rossum, and released in 1991. It is very popular for web development and you can build almost anything like mobile apps, web apps, tools, data analytics, machine learning etc. It is designed to be simple and easy like english language. It's is highly productive and efficient making it a very popular language.
When ever you want to perform a set of operations based on a condition IF-ELSE is used.
if conditional-expression
#code
elif conditional-expression
#code
else:
#code
Indentation is very important in Python, make sure the indentation is followed correctly
For loop is used to iterate over arrays(list, tuple, set, dictionary) or strings.
mylist=("Iphone","Pixel","Samsung")
for i in mylist:
print(i)
While is also used to iterate a set of statements based on a condition. Usually while is preferred when number of iterations are not known in advance.
while condition
#code
There are four types of collections in Python.
List is a collection which is ordered and can be changed. Lists are specified in square brackets.
mylist=["iPhone","Pixel","Samsung"]
print(mylist)
Tuple is a collection which is ordered and can not be changed. Tuples are specified in round brackets.
myTuple=("iPhone","Pixel","Samsung")
print(myTuple)
Below throws an error if you assign another value to tuple again.
myTuple=("iPhone","Pixel","Samsung")
print(myTuple)
myTuple[1]="onePlus"
print(myTuple)
Set is a collection which is unordered and unindexed. Sets are specified in curly brackets.
myset = {"iPhone","Pixel","Samsung"}
print(myset)
Dictionary is a collection of key value pairs which is unordered, can be changed, and indexed. They are written in curly brackets with key - value pairs.
mydict = {
"brand" :"iPhone",
"model": "iPhone 11"
}
print(mydict)
Following are the libraries supported by OneCompiler's Python compiler
Name | Description |
---|---|
NumPy | NumPy python library helps users to work on arrays with ease |
SciPy | SciPy is a scientific computation library which depends on NumPy for convenient and fast N-dimensional array manipulation |
SKLearn/Scikit-learn | Scikit-learn or Scikit-learn is the most useful library for machine learning in Python |
Pandas | Pandas is the most efficient Python library for data manipulation and analysis |
DOcplex | DOcplex is IBM Decision Optimization CPLEX Modeling for Python, is a library composed of Mathematical Programming Modeling and Constraint Programming Modeling |