-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #407 from opencybersecurityalliance/develop
v1.7.6
- Loading branch information
Showing
19 changed files
with
364 additions
and
63 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
#!/usr/bin/env python3 | ||
|
||
# Executing a hunt in an interactive CLI | ||
# Usage: `ikestrel [-v] [--debug]` | ||
|
||
import argparse | ||
import cmd | ||
import logging | ||
|
||
from tabulate import tabulate | ||
|
||
from kestrel.session import Session | ||
from kestrel.codegen.display import DisplayBlockSummary, DisplayDataframe | ||
from kestrel.exceptions import KestrelException | ||
from kestrel.utils import add_logging_handler, clear_logging_handlers | ||
|
||
|
||
CMDS = [ # command_no_result from kestrel.lark | ||
"APPLY", | ||
"DISP", | ||
"INFO", | ||
"SAVE", | ||
] | ||
|
||
|
||
def display_outputs(outputs): | ||
for i in outputs: | ||
if isinstance(i, DisplayBlockSummary): | ||
print(i.to_string()) | ||
elif isinstance(i, DisplayDataframe): | ||
data = i.to_dict()["data"] | ||
print(tabulate(data, headers="keys")) | ||
else: | ||
print(i.to_string()) | ||
|
||
|
||
class Cli(cmd.Cmd): | ||
prompt = "> " | ||
|
||
def __init__(self, session: Session): | ||
self.session = session | ||
self.buf = "" | ||
super().__init__() | ||
|
||
def default(self, line: str): | ||
try: | ||
outputs = self.session.execute(line) | ||
display_outputs(outputs) | ||
except KestrelException as e: | ||
print(e) | ||
|
||
def completenames(self, text, *ignored): | ||
code, _start, _end = ignored | ||
if code.isupper(): | ||
# Probably a command? | ||
results = [i for i in CMDS if i.startswith(code)] | ||
else: | ||
# Try all commands and vars | ||
results = [i for i in CMDS if i.lower().startswith(code)] | ||
results += [ | ||
i for i in self.session.get_variable_names() if i.startswith(code) | ||
] | ||
return results | ||
|
||
def completedefault(self, *ignored): | ||
_, code, start, end = ignored | ||
results = self.session.do_complete(code, end) | ||
stub = code[start:] | ||
return [stub + suffix for suffix in results] | ||
|
||
def do_EOF(self, _line: str): | ||
print() | ||
return True | ||
|
||
|
||
if __name__ == "__main__": | ||
parser = argparse.ArgumentParser(description="Kestrel Interpreter") | ||
parser.add_argument( | ||
"-v", "--verbose", help="print verbose log", action="store_true" | ||
) | ||
parser.add_argument( | ||
"--debug", help="debug level log (default is info level)", action="store_true" | ||
) | ||
args = parser.parse_args() | ||
|
||
clear_logging_handlers() | ||
if args.verbose: | ||
add_logging_handler(logging.StreamHandler(), args.debug) | ||
|
||
with Session(debug_mode=args.debug) as s: | ||
cli = Cli(s) | ||
cli.cmdloop() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
[build-system] | ||
requires = ["setuptools >= 56.0.0", "wheel"] | ||
requires = ["setuptools >= 68.2.2", "wheel"] | ||
build-backend = "setuptools.build_meta" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.