enumdrives.cna 522 B

12345678910111213141516171819202122232425
  1. # author REDMED-X
  2. beacon_command_register(
  3. "enumdrives", "Enumerate drive letters and its type.",
  4. "INFO:\nEnumerate drive letters and its type.\n\n" .
  5. "USAGE:\nenumdrives\n\n");
  6. alias enumdrives {
  7. $bid = $1;
  8. # Read in the right BOF file
  9. $handle = openf(script_resource("enumdrives.o"));
  10. $data = readb($handle, -1);
  11. closef($handle);
  12. $arg_data = bof_pack($bid);
  13. blog($bid, "Tasked to enumerate drive letters and its type..");
  14. beacon_inline_execute($bid, $data, "go", $arg_data);
  15. }