Terry Chia
Terry Chia
Currently there are the `count`, `bytes_read`, `bits_read` and `until` attributes you can apply to a `Vec` to tell deku how much to read. A `read_all` (name undecided) attribute that tells...
What is the syntax to query for the provenance of a relation between two records? I tried something like the following which did not seem to work: ``` explain reachable([["A"],...
I see that you can either use (using the Frida bindings as an example) `QBDI.prototype.run(start, stop)` or `QBDI.prototype.call(address[, args])` to start executing through QBDI. Is there an easy cross-platform way...
It might be a good idea to define an ABC that all the classes in the `nacl.encoding` module implement. It will then be possible to do a `isinstance` check on...
This PR changes DefectDojo to use the `psycopg2` package instead of `psycopg2-binary`. This fixes a [problem](https://github.com/psycopg/psycopg2/issues/1360) with running DefectDojo on `aarch64` machines, with the main motivation here being able to...
DefectDojo currently has two parsers for "Trufflehog": * [`dojo/tools/trufflehog`](https://github.com/DefectDojo/django-DefectDojo/tree/master/dojo/tools/trufflehog) * [`dojo/tools/trufflehog3`](https://github.com/DefectDojo/django-DefectDojo/tree/master/dojo/tools/trufflehog3) The first parser works for the **old** JSON format for [Trufflehog](https://github.com/trufflesecurity/trufflehog). This output format can be generated by the...
Hi Brandon, Amazing tool! Is there plans to make mesos spit out a file format recognized by https://github.com/gaasedelen/lighthouse? Lighthouse has support for IDA Pro + Binary Ninja plus some pretty...
### Motivation JavaScript APIs often set objects to `this` as a way to pass around information, especially in callbacks. When writing a Rust Closure that is used as a JavaScript...
## 💡 Feature description `wasm-pack` currently generates code similar to the following in `--target nodejs` where the `.wasm` file is read from the disk. ```js const path = require('path').join(__dirname, 'foo.wasm');...
I get the following from `get_attributes` of the root element of an `AndroidManifest.xml` parsed with this library: ``` {platformBuildVersionCode: @flags:28, android:versionCode: 10042, android:versionName: 9.17.3.1, android:compileSdkVersion: 28, platformBuildVersionName: @flags:9, android:compileSdkVersionCodename: 9,...