Skip to content

Commit

Permalink
Merge pull request #1 from sroberts/sroberts-patch-1
Browse files Browse the repository at this point in the history
Create yara.coffee
  • Loading branch information
sroberts committed Sep 11, 2013
2 parents 4042ba9 + 45f07fe commit b3ff2ab
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions yara.coffee
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Description:
# Generate Yara Rule with strings
#
# Dependencies:
# None
#
# Configuration:
# None
#
# Commands:
# hubot yara - Generates default rule template
# hubot yara "string1" "string2" ... - Generates rule with given strings
#
# Author:
# Scott J Roberts - @sroberts

module.exports = (robot) ->
robot.respond /yara/i, (msg) ->
# If there's strings generate rule with strings

# If there aren't then just generate a template

0 comments on commit b3ff2ab

Please sign in to comment.