Louis Granboulan
Louis Granboulan
What do you mean? What do you want to train these models on?
OK. I understand your proposal of using pretrained models. Please implement it and make some tests. From my experience, the result is slower, because reading the corpus from disk and...
Thanks. I have updated my patch to use this option of `Container.from_stream`.
The use of pickle as proposed by trou is now included in the tool.
Now I know... I used serpilliere/miasm which generates 448 tests. When I use cea-sec/miasm instead, this version of elfesteem passes all 453 tests.
This binary is very small, and contains almost no instructions (the .text section is 32 bytes long), that's why cpu_rec does not detect the type of cpu. Do you have...
This patch indeed fixes the non-regression that I have reported, but does not fix everything that has been broken by _raw_packet_cache_field_value Based on the comment in test/fields.uts, it seems that...
Here is another regression. ``` from scapy.packet import Packet, bind_layers from scapy.fields import PacketField, StrField class PayloadPacket(Packet): fields_desc = [ StrField("b", ""), ] class SubPacket(Packet): fields_desc = [ ] bind_layers(SubPacket,...
Indeed, I should not have had this behaviour. Please excuse me. I was upset by the comment "this is also a terrible idea" but I should not have asked the...
I will try to be more constructive. It seems that all of this started with commit 1e1388d5540affe862421fc807022e12294c1d26 where a non-robust caching mechanism was introduced to improve the efficiency of `do_build_payload`....