TheTechromancer

Results 275 comments of TheTechromancer

@AnshSinghal thanks for the report. We haven't run into this issue before. Can you post your steps to reproduce?

Ah I see. It seems like the main issue is that Quart's processes are daemonized. Normally, BBOT's main process isn't a daemon so this isn't an issue. But of course...

The simplest solution would be to call BBOT's CLI (e.g. with `--json`) which would offload the scan into its own process, instead of running inside the Quart process. EDIT: I...

There shouldn't be anything special required to run BBOT inside flask. That's definitely a strange error so if you can post the steps to reproduce, I'll take a look. On...

Some progress has been made on this, by creating a [lightweight, intermediate EventSeed class](https://github.com/blacklanternsecurity/bbot/pull/2396). But most of the performance hit is coming from calls to misc helpers like `smart_encode_punycode()` and...

For funzies, made a benchmark to compare IDNA / punycode encoding in rust vs pyo3 vs python. ## Benchmark Results #### Encode - **Raw Rust:** 0.000004 s (4 microseconds) -...

This looks great, nice work! Legba has been a much requested module. The trick will be writing tests for the different protocols, and also getting Legba to compile properly on...

> `deps_ansible` run before `deps_common` I think `deps_common` should run first. I'll see about fixing. EDIT: - https://github.com/blacklanternsecurity/bbot/pull/2549

@christianfl that fix has been merged; you may need to rebase from dev.

Fantastic work on this module. A couple small changes and then it should be good to merge: 1. Let's use the scan's temp directory instead of `/tmp` 2. We don't...