I hereby claim:
- I am wilsonmar on github.
- I am wilsonmar (https://keybase.io/wilsonmar) on keybase.
- I have a public key ASDxj5xIICs5HUqp9uu3ehYrtA5Wk0tvtr_UrvBu_MuvUAo
To claim this, I am signing this object:
| var express = require('express'); | |
| var app = express(); | |
| app.get('/', function(res,req){ | |
| res.json({ | |
| message: 'hello world' | |
| }); | |
| }); | |
| app.listen(3000); // This establishes port 3000. You can use another port. |
| import java.io.IOException; | |
| import java.net.URLClassLoader; | |
| import java.nio.file.Files; | |
| import java.nio.file.Paths; | |
| import java.nio.file.Path; | |
| /** | |
| * Example demonstrating a ClassLoader leak. | |
| * | |
| * <p>To see it in action, copy this file to a temp directory somewhere, |
| #!/bin/bash | |
| # graph-dag.sh | |
| # Draw a graphviz diagram of the Git DAG | |
| # | |
| # Labels consist of the short SHA1 and any refs. | |
| # Unreachable commits (ignoring the reflog) will be marked with an asterisk and | |
| # drawn with dashed lines. | |
| # | |
| # Largely stolen from https://git.wiki.kernel.org/index.php/ExampleScripts | |
| # As seen on Seth House's videos at https://www.youtube.com/watch?v=AqDLz4yq_CI&index=1&list=PLA4B47B9B5F3691E3 |
| freeStyleJob("Hello3") { | |
| logRotator(2, 30) | |
| scm { | |
| git('https://github.com/larrycai/docker-images.git') | |
| } | |
| triggers { | |
| scm('H/15 * * * *') | |
| } | |
| wrappers { | |
| preBuildCleanup() |
| // hello.groovy in https://github.com/wilsonmar/groovy-samples | |
| class Example { | |
| static void main(String[] args) { | |
| /* This program is the first program | |
| This program shows how to display hello world */ | |
| println('Hello World'); | |
| } | |
| } |
I hereby claim:
To claim this, I am signing this object:
| # pentest.tf | |
| # This establishes permissions to S3 buckets for | |
| variable "bucket_root_name" { | |
| type = string | |
| } | |
| # Parameter in GoCD Pipeline: | |
| variable "synack_pentest_bool" { | |
| type = bool |