We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5839908 commit 25e4549Copy full SHA for 25e4549
idaplugin/rematch/autoupload.py
@@ -0,0 +1,37 @@
1
+import idc
2
+import idaapi
3
+
4
+from . import network
5
+from . import actions
6
7
8
+class AddFileSilentUI:
9
+ pass
10
11
12
+class MatchSilentUI:
13
14
15
16
+def main():
17
+ # add file
18
+ actions.project.AddFileAction(AddFileSilentUI)
19
+ description = "Automatically collected / uploaded by autoupload.py"
20
+ ##############
21
22
+ # upload data
23
+ actions.match.MatchAction(MatchSilentUI)
24
25
26
+if __name__ == "__main__":
27
+ # action = str(idc.ARGV[1])
28
+ # task_id = int(idc.ARGV[2])
29
+ # owner_id = int(idc.ARGV[3])
30
31
+ # wait until autoanalysis is done, if needed
32
+ idaapi.autoWait()
33
34
+ main()
35
36
+ # and exit the IDA instance
37
+ idaapi.qexit(0)
0 commit comments