Skip to content

Instantly share code, notes, and snippets.

View akhil-reni's full-sized avatar
👋
sup?

Akhil Reni akhil-reni

👋
sup?
View GitHub Profile
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

Chat with Strobes AI

Exported on Feb 10, 2026, 4:20 PM


YouFeb 10, 2026, 3:47 PM

const express = require('express'); const app = express();

app.set('query parser', 'extended');

"""
Claude Haiku 4.5: Complete AWS Bedrock Implementation
- Interleaved Thinking (with anthropic_beta header)
- Prompt Caching (with cache points for system prompt)
- 200K Context Window
- LangGraph Agent with caching support
Based on:
- https://docs.langchain.com/oss/python/integrations/chat/bedrock#extended-thinking
- https://docs.langchain.com/oss/python/integrations/chat/bedrock#prompt-caching
Multi-Agent Pentesting Log - Started at 2025-07-29T20:07:19.760265
================================================================================
[20:07:19]
📝 Logging to: pentest_log_pentest-20250729-200719.txt
[20:07:19]
📁 Loaded task from: task.txt
version: "3.7"
services:
redis:
image: redis:latest
container_name: superset_cache
restart: unless-stopped
volumes:
- redis:/data
db:
@akhil-reni
akhil-reni / office_enum.py
Created September 14, 2022 06:10
User enumeration for O365 users
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
import logging
from ipaddress import IPv4Address
from random import getrandbits
import requests
logger = logging.getLogger()
from strobes_intel_client.main import client
response = client("CVE-2019-11477")
print(response.zeroday)
pip install strobes-intel-client
@akhil-reni
akhil-reni / parse_mvn_log4j.py
Last active December 12, 2021 11:19
Parse MVN dependency for Log4j2
from xml.etree import ElementTree
import re
from packaging import version
pattern = "\{(.*?)\}"
def stripNs(el):
if el.tag.startswith("{"):
el.tag = el.tag.split('}', 1)[1] # strip namespace
@akhil-reni
akhil-reni / enumerate.py
Created November 11, 2021 05:58
Domain enumeration for Azure
from urllib.request import urlopen, Request
import xml.etree.ElementTree as ET
domain = input("Enter your target: \n")
body = """<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:exm="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:ext="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:a="http://www.w3.org/2005/08/addressing" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Header>
<a:Action soap:mustUnderstand="1">http://schemas.microsoft.com/exchange/2010/Autodiscover/Autodiscover/GetFederationInformation</a:Action>
<a:To soap:mustUnderstand="1">https://autodiscover-s.outlook.com/autodiscover/autodiscover.svc</a:To>