Marcin Kozlowski

Results 127 comments of Marcin Kozlowski

@temp Added "confused" to be built from the source. So now it is in both (x86_64 and arm64) Latest images and Dockerfiles reflect it. Can you share your commands, make...

Hi @jaapmarcus! Thanks for your issue. Looked briefly into this. You can look here: https://github.com/marcinguy/scanmycode-ce/blob/0ad67062a87f14f8847e3380fe7abb0b31d8d4bc/quantifiedcode/plugins/git/backend/tasks/analyze.py#L51 Before this you can check if submodules are there: https://github.com/marcinguy/checkmate-ce/blob/fc33c7c27bc640ab4db5dbda274a0edd3b3db218/checkmate/contrib/plugins/git/lib/repository.py#L411 And if yes, make a...

@jaapmarcus You can use git log to get commits for each submodules like this: ``` def get_commits_sub(self,branch = None,offset = 0,limit = 0,shas = None,params = None, from_to = None,args...

I managed to get list like this, but maybe there is a better way to accomplish it. I run bandit on examples to get this. ``` { "B101": { "severity":...

@vanhauser-thc yes, libaflfuzzer.a I lean towards a) Weird is that paths don't increase also. Crashes, few, always happen at the beginning. Fuzzing with similar harness in aflpp and libfuzzer paths...

Maybe you know JS C world better. Compiled your libradamsa to JS using emscripten ``` em++ -O3 -Oz --llvm-lto 1 -s NO_EXIT_RUNTIME=1 -s EXPORTED_FUNCTIONS="['_radamsa']" libradamsa.bc -o radamsa.html ``` Do you...

Would save me hours of finding it out to see a sample. I saw how you use CModule (couldn't find any references about it while googling) So I can put...

Managed to add it. Did it like you described. Performance was affected. Radamsa is 10x slower than havoc and splice in my run. For Multimedia Format fuzzing i.e HEVC, would...

I got Priv and Pub key from JS. As I said they seem to be correct since the assert goes through: https://github.com/romanzaikin/BurpExtension-WhatsApp-Decryption-CheckPoint/blob/90247f2a84e49cc09c526b8d587fc5eb93be8752/helper/parser.py#L80 https://github.com/romanzaikin/BurpExtension-WhatsApp-Decryption-CheckPoint/blob/90247f2a84e49cc09c526b8d587fc5eb93be8752/helper/parser.py#L82 Hmac on secret string is also valid...

Found the problem: ``` opt: Unknown command line argument '-debug'. ``` After removing it from cmd line it works. Not sure about headers files and c2xml Running now Dr_Checker on...