I hereby claim:
- I am kurtpayne on github.
- I am kpayne (https://keybase.io/kpayne) on keybase.
- I have a public key ASBQryJbLLHpQoZX3m-GUoMVhZBbYd4YGatkPFU9KyfzmAo
To claim this, I am signing this object:
| name: Release Docker | |
| on: | |
| push: | |
| tags: | |
| - "v*" | |
| permissions: | |
| contents: read |
| name: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| test: |
| name: Release Docker | |
| on: | |
| push: | |
| tags: | |
| - "v*" | |
| permissions: | |
| contents: read |
| name: SkillScan Security Scan (Reusable) | |
| # Reusable workflow — call from your own repo: | |
| # | |
| # jobs: | |
| # security: | |
| # uses: kurtpayne/skillscan-security/.github/workflows/skillscan-reusable.yml@main | |
| # with: | |
| # fail-on: warn | |
| # paths: "skills/" | |
| # extra-args: "--ml-detect" |
| SkillScan Security | |
| SkillScan Security is an offline-first security scanner for AI skills and tool bundles. It analyzes code and instruction content and returns deterministic verdicts (allow, warn, block) using configurable policy profiles (strict, balanced, permissive). | |
| What it detects | |
| - Malware-like and suspicious command patterns | |
| - Prompt-injection and instruction abuse risks | |
| - Secret access and exfiltration chains | |
| - Risky dependency posture and supply-chain issues | |
| - Dangerous action chaining across scripts and tooling |
| #!/bin/sh | |
| # Install pre-reqs | |
| yum -y update | |
| yum -y install epel-release | |
| curl -sL https://dl.yarnpkg.com/rpm/yarn.repo | sudo tee /etc/yum.repos.d/yarn.repo | |
| yum -y install abuild ack autoconf automake binutils build-base bzip2 bzip2-devel curl docker docker-compose gcc gcc-c++ java-1.8.0-openjdk java-1.8.0-openjdk-devel libjpeg-turbo libjpeg-turbo-devel libpng libpng-devel libpng12 libpng12-devel libstdc++ libtool make nasm nodejs npm python strace tar unzip wget yarn yum-utils | |
| # Install gradle | |
| mkdir -p /opt/gradle |
I hereby claim:
To claim this, I am signing this object:
| $ php behat.phar features/theme.feature | |
| Feature: Manage WordPress themes | |
| Scenario: Installing and deleting theme # features/theme.feature:3 | |
| Given a WP install # features/steps/given.php:40 | |
| When I run `wp theme install p2` # features/steps/when.php:17 | |
| $ wp theme install p2 | |
| Installing P2 (1.5.3) | |
| Downloading install package from https://wordpress.org/themes/download/p2.1.5.3.zip... | |
| Unpacking the package... |
| varnish> panic.show | |
| 200 | |
| Last panic at: Thu, 24 Apr 2014 17:27:48 GMT | |
| Assert error in vmod_ch_sighandler(), vmod_crashhandler.c line 13: | |
| Condition(You asked for it) not true. | |
| errno = 104 (Connection reset by peer) | |
| thread = (cache-worker) | |
| ident = Linux,2.6.32-358.18.1.el6.nfsfixes.x86_64,x86_64,-sfile,-smalloc,-hcritbit,epoll | |
| Backtrace: | |
| 0x42f758: /usr/sbin/varnishd() [0x42f758] |
| <?php | |
| /** | |
| * A very simple php code profiler. No extensions required. | |
| * | |
| * Example usage: | |
| * <code> | |
| * declare(ticks=1); | |
| * require_once('./SimpleProfiler.class.php'); | |
| * SimpleProfiler::start_profile(); |