Samuel Hopstock

Results 26 issues of Samuel Hopstock

Provide the ability to assemble and emulate user-defined assembly chunks when the program is currently paused at a breakpoint

Enables use cases like delegating the unpacking process to a more powerful cloud server

Enhance decorator system to provide transparent support for wide-string API call variants: E.g. use a shared implementation for LoadLibrary's A and W versions and provide string parameter extraction through the...

I'm unfamiliar with the correct terminology here, but as can be seen here, a function can return an error: https://github.com/Fraunhofer-AISEC/cpg/blob/0c160342b0f88416fad6a66d9dbe96b192dc6c32/cpg-library/src/test/resources/golang/function.go#L9 This `err` variable is converted into a `VariableDeclaration` that unfortunately...

bug
go

Currently, the `@PopulatedByPass` annotation is only assigned to the fields `constructor` and `instantiates` in `ConstructExpression`. Is there still / was there ever any use for this annotation? Depending on that,...

code-quality
discussion

While trying to make the dummy creation behavior more consistent, I stumbled over the following situation: ```c void target(int param) {} void (*getTarget(int))(int) { return ⌖ } void main() {...

bug
cxx

Consider the following situation: ```java A a = new B(); // B extends A ``` Here, we currently get `type = A` and `possibleSubTypes = {A, B}`, when actually, we...

help wanted
discussion