File size: 8,008 Bytes
5e0ca0f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
import json
import os
import platform
import subprocess
from typing import Any
from rich import print
from rich.console import Console
from rich.table import Table
from rich.panel import Panel
from rich.console import Group
from rich.align import Align
from rich import box
from rich.markdown import Markdown

console = Console()


class Assets():
    def clearscr() -> None:
        try:
            osp = platform.system()
            match osp:
                case 'Darwin':
                    os.system("clear")
                case 'Linux':
                    os.system("clear")
                case 'Windows':
                    os.system("cls")
        except Exception:
            pass

    def start_api_app():
        CREATE_NEW_CONSOLE = 0x00000010
        osp = platform.system()
        match osp:
            case 'Darwin':
                subprocess.Popen(["python3", "llama_api.py"], creationflags=CREATE_NEW_CONSOLE)
            case 'Linux':
                subprocess.Popen(["python3", "llama_api.py"])
            case 'Windows':
                subprocess.Popen(["python", "llama_api.py"], creationflags=CREATE_NEW_CONSOLE)

    def flatten_json(self, data: Any, separator: Any = '.') -> Any:
        flattened_data = {}
        for key, value in data.items():
            if isinstance(value, dict):
                nested_data = self.flatten_json(value, separator)
                for nested_key, nested_value in nested_data.items():
                    flattened_data[key + separator + nested_key] = nested_value
            else:
                flattened_data[key] = value
        return flattened_data

    def help_menu() -> None:
        table = Table(title="Help Menu for GVA")
        table.add_column("Options", style="cyan")
        table.add_column("Input Type", style="green")
        table.add_column("Argument Input", style="green")
        table.add_column("Discription", style="green")
        table.add_column("Other internal options", style="green")
        table.add_row("Attack", "--attack", "TXT/STRING",
                      "The Attack the user whats to run", "sub / dns / nmap / geo")
        table.add_row("Target", "--target", "IP/HOSTNAME",
                      "The target of the user", "None")
        table.add_row("Domain List", "--list", "Path to text file",
                      "subdomain dictionary list", "Path")
        table.add_row("Profile", "--profile", "INT (1-5)",
                      "The type of Nmap Scan the user intends", "None")
        table.add_row("AI", "--ai", "STRING",
                      "Choose your AI of choice", "bard / openai (default)")
        table.add_row("menu", "--menu", "BOOL",
                      "Interactive UI menu", "True / False (Default)")
        table.add_row("Rich Help", "--r", "STRING",
                      "Pritty Help menu", "help")
        console.print(table)

    def print_output(self, attack_type: str, jdata: str, ai: str) -> Any:
        match attack_type:
            case "Nmap":
                match ai:
                    case 'openai':
                        data = json.loads(jdata)
                        table = Table(title=f"GVA Report for {attack_type}", show_header=True, header_style="bold magenta")
                        table.add_column("Variables", style="cyan")
                        table.add_column("Results", style="green")

                        for key, value in data.items():
                            table.add_row(key, value)
                        print(table)
                    case 'bard':
                        data = json.loads(jdata)
                        table = Table(title=f"GVA Report for {attack_type}", show_header=True, header_style="bold magenta")
                        table.add_column("Variables", style="cyan")
                        table.add_column("Results", style="green")

                        for key, value in data.items():
                            table.add_row(key, value)
                        print(table)
                    case 'llama':
                        ai_out = Markdown(jdata)
                        message_panel = Panel(
                            Align.center(
                                Group("\n", Align.center(ai_out)),
                                vertical="middle",
                            ),
                            box=box.ROUNDED,
                            padding=(1, 2),
                            title="[b red]The GVA LLama2",
                            border_style="blue",
                        )
                        print(message_panel)
                    case 'llama-api':
                        ai_out = Markdown(jdata)
                        message_panel = Panel(
                            Align.center(
                                Group("\n", Align.center(ai_out)),
                                vertical="middle",
                            ),
                            box=box.ROUNDED,
                            padding=(1, 2),
                            title="[b red]The GVA LLama2",
                            border_style="blue",
                        )
                        print(message_panel)
            case "DNS":
                match ai:
                    case 'openai':
                        data = json.loads(jdata)
                        table = Table(title=f"GVA Report for {attack_type}", show_header=True, header_style="bold magenta")
                        table.add_column("Variables", style="cyan")
                        table.add_column("Results", style="green")

                        for key, value in data.items():
                            table.add_row(key, value)
                        print(table)
                    case 'bard':
                        data = json.loads(jdata)
                        table = Table(title=f"GVA Report for {attack_type}", show_header=True, header_style="bold magenta")
                        table.add_column("Variables", style="cyan")
                        table.add_column("Results", style="green")

                        for key, value in data.items():
                            table.add_row(key, value)
                        print(table)
                    case 'llama':
                        ai_out = Markdown(jdata)
                        message_panel = Panel(
                            Align.center(
                                Group("\n", Align.center(ai_out)),
                                vertical="middle",
                            ),
                            box=box.ROUNDED,
                            padding=(1, 2),
                            title="[b red]The GVA LLama2",
                            border_style="blue",
                        )
                        print(message_panel)
                    case 'llama-api':
                        ai_out = Markdown(jdata)
                        message_panel = Panel(
                            Align.center(
                                Group("\n", Align.center(ai_out)),
                                vertical="middle",
                            ),
                            box=box.ROUNDED,
                            padding=(1, 2),
                            title="[b red]The GVA LLama2",
                            border_style="blue",
                        )
                        print(message_panel)
            case "GeoIP":
                data = json.loads(jdata)
                table = Table(title="GVA Report for GeoIP", show_header=True, header_style="bold magenta")
                table.add_column("Identifiers", style="cyan")
                table.add_column("Data", style="green")

                flattened_data: dict = self.flatten_json(data, separator='.')

                for key, value in flattened_data.items():
                    value_str = str(value)
                    table.add_row(key, value_str)

                console = Console()
                console.print(table)