Skip to content
Snippets Groups Projects
  1. Feb 24, 2016
  2. Feb 10, 2016
  3. Feb 09, 2016
  4. Feb 06, 2016
  5. Jan 30, 2016
  6. Jan 23, 2016
  7. Jan 17, 2016
  8. Jan 15, 2016
  9. Nov 30, 2015
  10. Nov 29, 2015
  11. Oct 06, 2015
  12. Mar 20, 2015
  13. Jan 08, 2015
  14. Jan 06, 2015
  15. Dec 22, 2014
  16. Nov 29, 2014
  17. Jun 17, 2014
  18. Mar 28, 2014
    • Robin Jarry's avatar
      layers: full implementation of ipsec (esp & ah) · f94c6745
      Robin Jarry authored
      
      This patch adds a full implementation of the IPSec layer in
      scapy/layers/ipsec.py. See the module's doc string for instructions.
      In order to support encryption/decryption and authentication, the
      pycrypto library is required. If not found, only the NULL/NULL
      algorithms will be available.
      
      (almost) complete test suite can be found in test/ipsec.uts and can
      be launched with:
      
        ./bin/UTscapy -m scapy/layers/ipsec.py -t test/ipsec.uts -f text -F
      
      Signed-off-by: default avatarRobin Jarry <robin.jarry@6wind.com>
      
      --HG--
      branch : ipsec
      f94c6745
  19. Feb 24, 2014
  20. Sep 10, 2013
  21. Aug 01, 2013
  22. Dec 30, 2012
  23. Dec 15, 2010
  24. Dec 14, 2010
  25. Apr 21, 2010
    • Phil's avatar
      Simplified the build mecanism · 1e59ef63
      Phil authored
      Packet.build() is called only on the first layer. It will call
      Packet.do_build() which will recurse through all layers. For each layer,
      it will call Packet.self_build() which will do the job for each layer.
      Packet.do_build() will call Packet.post_build() and transform on them,
      and concatenate them. Then Packet.build() will call Packet.build_padding()
      and Packet.build_done().
      
      Note that this undetermined case will have a different behavior:
      Raw("ABC")/Padding("abc")/Raw("DEF")/Padding("def")
      
      It was "ABCabcDEFdef"
      Now it is "ABCDEFabcdef"
      1e59ef63
  26. Nov 05, 2009
  27. Jul 20, 2009
  28. May 04, 2009
  29. Apr 30, 2009
  30. Mar 09, 2009
Loading