Skip to content

Instantly share code, notes, and snippets.

@salloc
salloc / Awesome-Pentest.md
Created March 31, 2025 14:18 — forked from lakmalrupasinghe/Awesome-Pentest.md
Awesome-Pentesting

Awesome Penetration Testing Awesome

A collection of awesome penetration testing resources.

Penetration testing is the practice of launching authorized, simulated attacks against computer systems and their physical infrastructure to expose potential security weaknesses and vulnerabilities.

Your contributions and suggestions are heartily♥ welcome. (✿◕‿◕). Please check the Contributing Guidelines for more details. This work is licensed under a Creative Commons Attribution 4.0 International License.

This project is supported by Netsparker Web Application Security Scanner

@salloc
salloc / gist:9cfe0352239112d52e731d4be8f7eda0
Created March 2, 2025 12:26 — forked from MaTriXy/gist:c528a9a5abbbf907935a
Download zips from github for all branches you track
git branch -a | grep -v HEAD | perl -ne 'chomp($_); s|^\*?\s*||; if (m|(.+)/(.+)| && not $d{$2}) {print qq(curl -L -o $2.zip https://github.com/user/git-repo/archive/$2.zip \n)} else {}'| sh
@salloc
salloc / X-deno.md
Created February 28, 2025 01:55 — forked from ruvnet/X-deno.md
This implementation follows the official MCP specification, including proper message framing, transport layer implementation, and complete protocol lifecycle management. It provides a foundation for building federated MCP systems that can scale across multiple servers while maintaining security and standardization requirements.

Deno Nodejs version

complete implementation using both Deno and Node.js. Let's start with the project structure:

federated-mcp/
├── packages/
│   ├── core/               # Shared core functionality
│   ├── server/            # MCP Server implementation
│   ├── client/            # MCP Client implementation
│   └── proxy/             # Federation proxy
@salloc
salloc / Dockerfile
Created February 28, 2025 01:54 — forked from rizbud/Dockerfile
Dockerfile for creating a new laravel project
FROM php:8.4
# Install Composer
COPY --from=composer:latest /usr/bin/composer /usr/bin/composer
# Install Git
RUN apt-get update && apt-get install -y git unzip && apt-get clean
# Update PATH
ENV PATH="${PATH}:/root/.composer/vendor/bin"
@salloc
salloc / llamastack-build.yaml
Created February 28, 2025 01:53 — forked from jameswnl/llamastack-build.yaml
As of llama-stack 0.1.2. Using template ollama
version: '2'
distribution_spec:
description: Use (an external) Ollama server for running LLM inference
container_image: null
providers:
inference:
- remote::ollama
vector_io:
- inline::faiss
- remote::chromadb