I hereby claim:
- I am limhoff-r7 on github.
- I am kronicdeth (https://keybase.io/kronicdeth) on keybase.
- I have a public key whose fingerprint is 9C10 5D2E 8AD8 8D65 6A39 E682 5B1F B01F B333 56F8
To claim this, I am signing this object:
defmodule Metasploit.Pro.Plugs.Authenticate do | |
import Ecto.Query, only: [from: 2] | |
import Plug.Conn | |
def init(configuration) do | |
configuration | |
|> Keyword.put_new(:single_access_token_parm, "single_access_token") | |
|> valid_configuration! | |
end |
# This file is responsible for configuring your application | |
# and its dependencies with the aid of the Mix.Config module. | |
# | |
# This configuration file is loaded before any dependency and | |
# is restricted to this project. | |
use Mix.Config | |
# Configures the namespace used by Phoenix generators | |
config :my_app, | |
app_namespace: MyApp |
I hereby claim:
To claim this, I am signing this object:
# 1. Run `msfconsole` | |
# 2. Select an module `use payload/windows/patchupdllinject/bind_tcp_rc4` | |
# 2. Enter `irb` mode | |
# active_module is the module selected with `use` | |
module_ancestors = active_module.class.ancestors.select { |ancestor| | |
ancestor.name.try(:start_with?, 'Msf::Modules::') | |
} | |
hex_unpacked_module_ancestor_full_names = module_ancestors.map(&:name).map { |name| | |
name.sub(/^Msf::Modules::Mod/, '') |
service_name: travis-ci |
# ... | |
require 'codeclimate-test-reporter' | |
if ENV['TRAVIS'] == 'true' | |
formatters = [] | |
# don't use `CodeClimate::TestReporter.start` as it will overwrite some .simplecov settings | |
if CodeClimate::TestReporter.run? | |
formatters << CodeClimate::TestReporter::Formatter |
# ... | |
require 'codeclimate-test-reporter' | |
require 'coveralls' | |
if ENV['TRAVIS'] == 'true' | |
formatters = [] | |
# don't use `CodeClimate::TestReporter.start` as it will overwrite some .simplecov settings | |
if CodeClimate::TestReporter.run? |
env: | |
global: | |
secure: "G0LDGrupZ+RAFzoPwd6bjfrWfwoU/V9RTswQXIUNmi640rW/CP86a8F9hQcAXdUwy7Ag1cwmlEEv2JDDbLopQdNvkh8B7M3PSIpmJWlBsj+UPMMcCz04oYiQB3G6xgYb4xeuY6cNqxiY2rTJMHlfUfTlSJf1Z0dh6hAS3alHpGw=" |
env: | |
matrix: | |
- RAKE_TASK=spec | |
language: ruby | |
matrix: | |
# documentation coverage is not influenced by ruby implementation, so only run once | |
include: | |
- rvm: 2.1 | |
env: RAKE_TASK=yard | |
rvm: |
# RM_INFO is set when using Rubymine. In Rubymine, starting SimpleCov is | |
# controlled by running with coverage, so don't explicitly start coverage (and | |
# therefore generate a report) when in Rubymine. This _will_ generate a report | |
# whenever `rake spec` is run. | |
unless ENV['RM_INFO'] | |
SimpleCov.start | |
end | |
SimpleCov.configure do | |
# ignore this file |