This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from __future__ import division | |
| import re, string, os, math, time, sys, random | |
| from operator import itemgetter | |
| import tweetstream | |
| def strTimeProp(start, end, format, prop): | |
| """Get a time at a proportion of a range of two formatted times. | |
| start and end should be strings specifying times formated in the | |
| given format (strftime-style), giving an interval [start, end]. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- cuckoo/data/html/sections/entrophygraph.html --> | |
| <section id="entropygraph"> | |
| <div class="section-title"> | |
| <h3>Entropy Graph <small>of the binary.</small></h3> | |
| </div> | |
| {% if results.entropygraph %} | |
| <a href="data:image/png;base64,{{results.entropygraph.data}}"><img class="fade" src="data:image/png;base64,{{results.entropygraph.data}}"/></a> | |
| {% else %} | |
| No entropy graph available. | |
| {% endif %} |