This file contains 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
import random | |
import math | |
value = random.randrange(0, 2) | |
vals = [] | |
rounds = 1000 | |
for i in range(0,rounds): | |
vals.append(random.randrange(0,2)) |
This file contains 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
# General configuration for the init.d scripts, | |
# not necessarily for JBoss AS itself. | |
# default location: /etc/default/keycloak | |
## Location of JDK | |
# JAVA_HOME="/usr/lib/jvm/default-java" | |
## Location of WildFly | |
# JBOSS_HOME="/opt/keycloak" |
This file contains 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
import svgwrite | |
import volatility.conf as conf | |
import volatility.registry as registry | |
import volatility.plugins.volshell as shell | |
registry.PluginImporter() | |
config = conf.ConfObject() | |
import volatility.commands as commands | |
import volatility.addrspace as addrspace | |
import volatility.utils as utils | |
registry.register_global_options(config, commands.Command) |