-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcommands.json
More file actions
154 lines (154 loc) · 6.16 KB
/
Copy pathcommands.json
File metadata and controls
154 lines (154 loc) · 6.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
{
"version": 1,
"command_sets": [
{
"id": 1000,
"label": "OsintgramCXX core",
"description": "Command set for managing OsintgramCXX core functionalities",
"author": "BC100Dev",
"lib": {
"linux:x64": "libOsintgramCXX-core.so",
"linux:arm64": "libOsintgramCXX-core.so",
"android:x64": "libOsintgramCXX-core.so",
"android:arm64": "libOsintgramCXX-core.so",
"windows:x64": "OsintgramCXX-core.dll"
},
"handlers": {
"OnLoad": "plugin_handle_start",
"OnStop": "plugin_handle_stop"
},
"cmd_list": [
{
"cmd": "env",
"description": "Prints out the environment variables",
"exec_symbol": "cmd_handle"
},
{
"cmd": "cachectl",
"description": "Manages OsintgramCXX and Instagram Cache (involves Cookies & Auth)",
"exec_symbol": "cmd_handle"
},
{
"cmd": "userctl",
"description": "Manages logged in Instagram Accounts",
"exec_symbol": "cmd_handle"
},
{
"cmd": "sessionctl",
"description": "Manages Instagram Target Sessions",
"exec_symbol": "cmd_handle"
},
{
"cmd": "net",
"description": "Manage network configurations",
"exec_symbol": "cmd_handle"
},
{
"cmd": "dsi",
"description": "Manages the Device Spoofing Information (DSI) for the effective Instagram APIs",
"exec_symbol": "cmd_handle"
},
{
"cmd": "set",
"description": "Manages the settings of OsintgramCXX",
"exec_symbol": "cmd_handle"
}
]
},
{
"id": 1001,
"label": "OsintgramCXX Instagram Interactives",
"description": "Command Set for Instagram Interaction",
"author": "BC100Dev",
"lib": {
"linux:x64": "libOsintgramCXX-interactive.so",
"linux:arm64": "libOsintgramCXX-interactive.so",
"android:x64": "libOsintgramCXX-interactive.so",
"android:arm64": "libOsintgramCXX-interactive.so",
"windows:x64": "OsintgramCXX-interactive.dll"
},
"cmd_list": [
{
"cmd": "addrs",
"description": "Get all registered addresses by target photos",
"exec_symbol": "cmd_handle"
},
{
"cmd": "captions",
"description": "Get captions from the photos",
"exec_symbol": "cmd_handle"
},
{
"cmd": "comments",
"description": "Returns the total number of comments on the posts",
"exec_symbol": "cmd_handle"
},
{
"cmd": "followers",
"description": "Get a list of the target followers",
"exec_symbol": "cmd_handle"
},
{
"cmd": "followings",
"description": "Get a list of the target followings",
"exec_symbol": "cmd_handle"
},
{
"cmd": "hashtags",
"description": "Return a list of all hashtags that the target used within their posts",
"exec_symbol": "cmd_handle"
},
{
"cmd": "info",
"description": "Show all information about the targets account",
"exec_symbol": "cmd_handle"
},
{
"cmd": "likes",
"description": "Returns a total number of likes in the targets posts",
"exec_symbol": "cmd_handle"
},
{
"cmd": "mediatype",
"description": "Shows the count of photos and videos shared by the target themselves",
"exec_symbol": "cmd_handle"
},
{
"cmd": "photodesc",
"description": "Fetches a list with the description of the content from targets posts",
"exec_symbol": "cmd_handle"
},
{
"cmd": "photos",
"description": "Download a number of specific count of targets photos to the specific output directory",
"exec_symbol": "cmd_handle"
},
{
"cmd": "pfp",
"description": "Download the profile picture (attempts to download the HD version, if available)",
"exec_symbol": "cmd_handle"
},
{
"cmd": "stories",
"description": "Download the currently seen stories that the target has shown online",
"exec_symbol": "cmd_handle"
},
{
"cmd": "tagged",
"description": "Returns a list of users tagged by the user ID, name and display name",
"exec_symbol": "cmd_handle"
},
{
"cmd": "u.comments",
"description": "Returns a list of users that commented on targets posts",
"exec_symbol": "cmd_handle"
},
{
"cmd": "u.tagged",
"description": "Returns a list of users that tagged the target in their posts",
"exec_symbol": "cmd_handle"
}
]
}
]
}