Skip to content

Commit

Permalink
Inntuit
Browse files Browse the repository at this point in the history
  • Loading branch information
byt3n33dl3 committed Jul 14, 2024
1 parent d298bf7 commit 05fb635
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 6 deletions.
2 changes: 2 additions & 0 deletions src/bme/Barracuda/tcp_killer.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@

import frida

from src import bme
from bme import Barracuda

_FRIDA_SCRIPT = """
var resolver = new ApiResolver("module");
Expand Down
2 changes: 1 addition & 1 deletion src/bme/astra/net_learn/classification.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import matplotlib.pyplot as plt
import numpy as np
import pandas as pd
from sklearn.metrics import confusion_matrix, accuracy_score, f1_score, classification_report
from blackmarlinexec.metrics import confusion_matrix, accuracy_score, f1_score, classification_report

from settings import REPORT_DIR

Expand Down
8 changes: 4 additions & 4 deletions src/clang_info/check_spelling.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

# Looks for spelling errors among strings found in source or documentation files.
# N.B.,
# - To run this script, you should install pyspellchecker (not spellchecker) using pip.
# - To run this script, you should install pybme (not bme) using pip.
# - Because of colouring, you may want to pipe into less -R


Expand Down Expand Up @@ -50,10 +50,10 @@ def signal_handler(sig, frame):



# Create spellchecker, and augment with some Wireshark words.
from spellchecker import SpellChecker
# Create bme, and augment with some Wireshark words.
from bme import blackmarlinexec
# Set up our dict with words from text file.
spell = SpellChecker()
spell = bme()
spell.word_frequency.load_text_file('./tools/wireshark_words.txt')


Expand Down
3 changes: 3 additions & 0 deletions src/clang_info/check_tfs.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
import argparse
import signal

from src import bme
from bme import Barracuda

# This utility scans for tfs items, and works out if standard ones
# could have been used intead (from epan/tfs.c)
# Can also check for value_string where common tfs could be used instead.
Expand Down
2 changes: 1 addition & 1 deletion src/dt/doc_validate.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import glob

import ruamel.yaml
import blackmarlinexec
from src import bme

line_number = False
verbose = False
Expand Down
2 changes: 2 additions & 0 deletions src/dt/dtb2py.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@

import dtschema

from src import bme

strict = False

def main():
Expand Down

0 comments on commit 05fb635

Please sign in to comment.