Skip to content

Latest commit

 

History

History
20 lines (12 loc) · 921 Bytes

README.md

File metadata and controls

20 lines (12 loc) · 921 Bytes

XWorm packet tool

You can use this tool to quickly craft XWorm packets.

generate.py builds packets from a description file.

File format

  • If a line begins with #, it is considered a comment.
  • @INCLUDE otherfile.pck includes otherfile.pck (as if the packets inside it were written into the current file).
  • @EVALL code evaluates Python code and expects the result to be a list. The packets in the list are added to the output.
  • @EVAL code evaluates Python code and expects the result to be one single packet which is added to the output.

Otherwise, a semicolon-separated packet is created. In the fields, gzipped files can be included like gz:somefile.txt.

See example.pck for an example.

See also

wizardy0ga/Wormicide is an automatized denial-of-service attack against XWorm servers based on this repository and additional research by wizardy0ga.